/* --- General Styling & Variables --- */

:root {
    --primary-color: #0a192f;
    --secondary-color: #112240;
    --accent-color: #64ffda;
    --text-color: #ccd6f6;
    --text-light: #8892b0;
    --shadow-color: rgba(2, 12, 27, 0.7);
    --font-sans: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    border-radius: 8px;
}

h1, h2, h3, h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { color: var(--text-light); }

.text-center { text-align: center; }
.section-title { margin-bottom: 1.5rem; }

/* --- Lighting Effect --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(000000000000000000000circle at 50% 0%, rgba(100, 255, 218, 0.05), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* --- Header & Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--secondary-color);
    box-shadow: 0 10px 30px -10px var(--shadow-color);
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
    border-radius: 2px;
}

body.noscroll {
    overflow: hidden;
}

/* --- Main Content Sections --- */
main {
    padding: 20px 0;
}

.hero-section {
    padding: 40px 0;
}

.hero-section h1 {
    font-size: 4rem;
    color: var(--accent-color);
}

.hero-section .subtitle {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.2rem;
}

.content-section {
    padding: 40px 0;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.two-column.reverse {
    flex-direction: row-reverse;
}

.column-left, .column-right {
    flex: 1;
}

.content-img {
    box-shadow: 0 10px 30px -15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.content-img:hover {
    transform: translateY(-5px);
}

.large-img {
    flex-basis: 55%;
}

/* --- Services Section --- */
.services-section { padding: 40px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -15px var(--shadow-color);
}
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card h3 { color: var(--accent-color); }

/* --- Reviews Section (About Page) --- */
.reviews-section {
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--primary-color) 20%, #112240 100%);
}

/* Adding a decorative background element */
.reviews-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.05), transparent 70%);
    z-index: 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(17, 34, 64, 0.75); /* secondary-color with transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 30px -15px var(--shadow-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px -15px var(--shadow-color);
    border-color: rgba(100, 255, 218, 0.3);
}

.review-card .stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px -5px rgba(100, 255, 218, 0.6);
    transition: box-shadow 0.3s ease;
}

.review-card:hover .profile-img {
    box-shadow: 0 0 30px 0px rgba(100, 255, 218, 0.8);
}

.review-card b {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* --- Assist Page --- */
.assist-section { padding: 40px 0; }
.assist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.assist-card {
    background-color: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}
.assist-card:hover {
    transform: translateY(-10px);
}
.assist-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* --- Assist Page (assist.html) --- */
.assist-hero-section {
    padding: 100px 2rem;
    background: linear-gradient(145deg, var(--primary-color) 10%, var(--secondary-color) 90%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.assist-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.08), transparent 60%);
    transform: translate(-50%, -50%);
    animation: pulse 5s infinite ease-in-out;
}

.assist-hero-content {
    position: relative;
    z-index: 1;
}

.assist-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    margin-bottom: 1rem;
}

.assist-hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: var(--text-light);
    line-height: 1.7;
}

.assist-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.assist-features-section {
    padding: 80px 2rem;
    background-color: var(--primary-color);
}

.assist-features-section .section-title {
    margin-bottom: 4rem;
}

.assist-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.assist-feature-card {
    background: rgba(17, 34, 64, 0.6); /* Glassmorphism effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.assist-feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px -15px var(--shadow-color);
    border-color: rgba(100, 255, 218, 0.4);
}

.assist-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    box-shadow: 0 0 0 4px var(--primary-color), 0 0 0 5px rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.assist-feature-card:hover .assist-feature-icon {
    color: white;
    background: var(--accent-color);
    box-shadow: 0 0 0 4px var(--primary-color), 0 0 25px 5px rgba(100, 255, 218, 0.5);
    transform: scale(1.1) rotate(10deg);
}

.assist-feature-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.assist-feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Feed Page --- */
.feed-section { padding: 40px 0; }
.blog-post {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}
.blog-meta {
    color: var(--text-light);
    margin-bottom: 2rem;
}
.consulting-call-section {
    margin-top: 3rem;
}

.call-info-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 1rem;
}
.call-info-visible {
    max-height: 200px; /* Adjust as needed */
}
.phone-number {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 0.5rem;
}

/* --- Contact Page --- */
.contact-info-section { padding: 40px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 1px solid rgba(100, 255, 218, 0.05);
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px var(--shadow-color);
    border-color: rgba(100, 255, 218, 0.2);
}
.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: rgba(100, 255, 218, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.contact-card h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: normal;
}
.contact-card .btn-fancy {
    margin-top: auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    padding: 0.8rem 2rem;
    width: 100%;
    max-width: 200px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.contact-card .btn-fancy:hover {
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.5);
    transform: translateY(-2px);
}
.contact-form-section { padding-bottom: 4rem; }
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

/* --- Pricing Section (Contact Page) --- */
.pricing-section {
    padding: 60px 0 80px 0;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--secondary-color), #020c1b);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px -15px var(--shadow-color);
    border: 1px solid rgba(100, 255, 218, 0.15);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
    min-width: 500px; /* Ensures table doesn't get too cramped before scrolling */
}

.pricing-table th,
.pricing-table td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.pricing-table thead th {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom-width: 2px;
    border-bottom-color: rgba(100, 255, 218, 0.2);
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-color);
}

.pricing-table tbody tr:hover {
    background-color: rgba(100, 255, 218, 0.05);
}

.pricing-table .popular-row {
    background-color: rgba(100, 255, 218, 0.05); /* Highlight color */
}

.popular-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.75rem;
    vertical-align: middle;
    text-transform: uppercase;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}
.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}
.form-group label {
    margin-left: 0.5rem;
}


/* --- why Taxmagics --- */
h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--text-color);
}

.why-taxmagics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 10px 0;
}
.box {
    width: 320px;
    background: rgb(129, 158, 157);
    padding: 22px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(248, 3, 3, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px #64ffda;
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #082550;
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #15171a;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.btn-fancy {
    background: linear-gradient(45deg, var(--accent-color), #47c6ac);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-fancy span {
    position: relative;
    z-index: 2;
}
.btn-fancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    transition: left 0.4s ease;
    z-index: 1;
}
.btn-fancy:hover::before {
    left: 0;
}

.btn i, .btn-fancy span i {
    margin-right: 0.5rem;
}

/* --- Booking Form & Modal (Assist Page) --- */
.booking-form-section {
    padding: 80px 2rem;
    background-color: var(--primary-color);
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    border: 1px solid #233554;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: var(--text-light);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
}

.consultation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.consultation-form .btn-fancy {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* --- Confirmation Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(5px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-icon {
    font-size: 4rem;
    color: #28a745; /* A nice green */
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.75rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.modal-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.modal-content .btn {
    min-width: 120px;
}

/* --- Footer --- */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--secondary-color);
}
.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--accent-color);
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.gst-section {
    padding: 10px 40px;
    background: #0a192f;
}


.title-box h2 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}
.underline {
    width: 910px;
    height: 4px;
    background: #8892b0;
    margin: 10px auto 0 auto;
    border-radius: 10px;
}

.content-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.left-image img {
    width: 300px;
    max-width: 100%;
}

.right-list ul {
    list-style: disc;
    font-size: 18px;
    line-height: 1.7;
}

.right-list ul li {
    margin-bottom: 8px;
}
<!-- ------->

.gst-section01 {
    padding: 10px 40px;
    background: #0a192f;
}


.title-box01 h2  {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}
.underline01 {
    width: 620px;
    height: 4px;
    background: #8892b0;
    margin: 10px auto 0 auto;
    border-radius: 10px;
}

.content-area01 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.left-image01 img {
    width: 300px;
    max-width: 100%;
}

.right-list01 ul {
    list-style: disc;
    font-size: 18px;
    line-height: 1.7;
}

.right-list01 ul li  {
    margin-bottom: 8px;
}

.underline02 {
    width: 720px;
    height: 4px;
    background: #8892b0;
    margin: 10px auto 0 auto;
    border-radius: 10px;
}

.hero-center {
    width: 310%;
    padding: 40px 20px;
}
.hero-center h1 {
    font-size: 48px;
    margin: 0;
    font-weight: bold;
}
.hero-center p {
    font-size: 20px;
    margin-top: 20px;
    line-height: 28px;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: #0e284b;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

h1 em {
    font-style: italic;
    color: #e8a71a;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    background: #bec6d3;
    padding: 15px;
    border-radius: 10px;

}

.step .icon {
    font-size: 30px;
    margin-right: 20px;
}

.step .text h3 {
    margin: 0;
    color: #05244d;
}

.character {
    position: absolute;
    top: 130px;
    right: -60px;
}

.character img {
    width: 400px;
}
/*form-container */

.form-container {
    gap: 60px;
   
    width: 500px;
    background: #02224e;
    padding: 10px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.35);
    
}


.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 7px 0 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.phone-box {
    display: flex;
    gap: 10px;
}

.phone-box select {
    width: 80px;
}

button {
    width: 100%;
    padding: 12px;
    background: #172283;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5px;
}

button:hover {
    background: #2d2f30;
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }
    .hero-left, 
    .form-box {
        width: 100%;
    }
}
/*Services Page*/
/* ===== DROPDOWN MEGA MENU ===== */

.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 60px;
    left: -780px;
    width: 1200px;
    background: #1e1e1e;
    padding: 30px;
    display: flex;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

/* Show on Hover */
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Columns */
.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-column h4 {
    color: #64ffda;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 2px;
}

.mega-column a {
    color: #ccc;
    text-decoration: none;
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* Hover effect */
.mega-column a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Yellow Active Highlight */
.active-link {
    background: #64ffda;
    color: #000 !important;
    padding: 10px 30px;
    border-radius: 2px;   /* slight smooth corners */
    font-weight: 500;
    margin-bottom: 8px;
    
}

/* --- Back to Top Button --- */
#back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(100, 255, 218, 0.4);
}

/* --- Responsive Design --- */
@media (max-width: 960px) {
    .hamburger {
        display: block;
        z-index: 1002; /* Above navbar and menu */
    }

    .hamburger.active {
        /* Position it relative to the viewport when menu is open */
        position: fixed;
        right: 2rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 75%;
        max-width: 320px;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease;
        padding-top: 5rem;
        box-shadow: 0 10px 30px -10px var(--shadow-color);
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
        width: 100%;
    }

    .nav-link::after {
        /* Disable underline animation on mobile nav */
        display: none;
    }

    /* Mega Menu on Mobile */
    .dropdown:hover .mega-menu {
        /* Disable hover effect on mobile */
        opacity: 1;
        visibility: visible;
    }

    .mega-menu {
        position: static;
        display: block;
        width: 100%;
        background: var(--primary-color);
        padding: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow-y: hidden;
        transition: max-height 0.4s ease-in-out;
        border-radius: 0;
        box-shadow: none;
        left: 0;
        flex-direction: column; /* In case display:flex is still there */
        gap: 0;
    }

    .mega-column {
        padding: 0.5rem 1.5rem;
        text-align: left;
    }

    .mega-column h4 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .mega-column a {
        padding: 0.5rem 0;
    }

    .active-link {
        padding: 8px 15px;
    }

    /* Adjust other sections for smaller screens */
    .two-column, .two-column.reverse {
        flex-direction: column;
    }
    .content, .content-area, .content-area01 {
        flex-direction: column;
        gap: 2rem;
    }
    .left-text, .right-image {
        width: 100%;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-right {
        order: -1; /* Move image to top on mobile */
        margin-bottom: 3rem;
    }

    .right-image img {
        width: 100%;
        max-width: 350px;
        display: block;
        margin: 0 auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Modern WhatsApp Popup --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 95px; /* Positioned above the 'Back to Top' button */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-btn.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
}

.whatsapp-window-modern {
    position: fixed;
    bottom: 165px; /* Positioned above the WhatsApp float button */
    right: 30px;
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(10, 202, 77, 0.9), rgba(8, 80, 71, 0.9));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px;
    font-family: var(--font-sans);
}

.whatsapp-window-modern.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#close-wa-chat {
    position: absolute;
    top: -10px;
    right: -155px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 5; /* Ensure it's above other content */
    z-index: 5; /* Ensure it's above other content */
}

#close-wa-chat:hover {
    color: white;
}

.wa-content-header {
    text-align: center;
    margin-bottom: 20px;
}

.wa-content-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.wa-content-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.wa-content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
}

.wa-input-group {
    margin-bottom: 15px;
}

.wa-input-group input,
.wa-input-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #333;
}

.wa-input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.wa-input-group input::placeholder,
.wa-input-group textarea::placeholder {
    color: #999;
}

.wa-send-btn-modern {
    width: 100%;
    background-color: #023113;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wa-send-btn-modern:hover {
    background-color: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Thank You Message inside WhatsApp Popup */
.wa-thank-you {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease-in-out;
}

.wa-thank-you .fas {
    font-size: 48px;
    color: #25d366;
    margin-bottom: 15px;
}

.wa-thank-you h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wa-thank-you p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.wa-new-chat-btn {
    width: 100%;
    background-color: #f0f0f0;
    color: #555;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wa-new-chat-btn:hover {
    background-color: #e9e9e9;
}

/* Decorative Elements */
.wa-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: floatBubble 15s infinite ease-in-out;
}

.wa-bubble-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -40px;
    animation-delay: 0s;
}

.wa-bubble-2 {
    width: 150px;
    height: 150px;
    bottom: -60px;
    right: -50px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.wa-phone-mockup {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    z-index: 1;
}

/* --- Services Page (services.html) --- */
.services-page-section {
    padding: 60px 0;
}

.services-page-section .section-title {
    margin-bottom: 3rem;
}

.all-services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.service-category {
    width: 100%;
    max-width: 800px;
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px var(--shadow-color);
}

.service-category h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.service-category-list {
    list-style: none;
    padding: 0;
}

.service-category-list li a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-category-list li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(100, 255, 218, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    }
}

@keyframes slide-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Disclaimer Section --- */
.disclaimer-section {
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    max-width: 800px;
    background-color: rgba(255, 193, 7, 0.05); /* Subtle yellow tint */
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
}

.disclaimer-section h4 {
    color: #ffc107; /* Warning yellow color */
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* --- Services Page List Layout --- */
.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-list-card {
    display: flex;
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
    transition: transform 0.3s ease;
    align-items: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.service-list-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-list-img {
    flex: 0 0 300px;
    height: 220px;
}

.service-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.service-list-content {
    padding: 2rem;
    flex: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-read-more:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-list-card {
        flex-direction: column;
    }
    .service-list-img {
        flex: auto;
        width: 100%;
        height: 200px;
    }
}

/* --- Service Detail Page Template --- */
.service-detail-hero {
    padding: 60px 2rem;
    background: linear-gradient(145deg, var(--primary-color) 10%, var(--secondary-color) 90%);
    text-align: left;
}

.service-detail-hero .breadcrumb {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-detail-hero h1 {
    font-size: 3rem;
    color: var(--text-color);
}

.service-detail-content {
    padding: 80px 2rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-left h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.service-points-list {
    list-style: none;
    padding: 0;
}

.service-points-list li {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-points-list li i {
    color: var(--accent-color);
    margin-top: 5px;
}


/* --- Simple Service Page Layout --- */
.simple-service-hero {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
    text-align: center;
}

.simple-service-hero h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    min-height: 56px; /* Placeholder height for empty heading */
}

.simple-service-content {
    padding: 4rem 2rem;
    text-align: center;
}

.simple-service-content .container {
    max-width: 900px; /* Wider container for table content */
}

.simple-service-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    min-height: 40px; /* Placeholder height for empty subheading */
}

.service-points-wrapper {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    text-align: left;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.service-points-list-simple {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.service-points-list-simple li {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    min-height: 24px; /* Placeholder height for empty list items */
}

.service-points-list-simple li::before {
    content: '\f058'; /* Font Awesome check-circle solid icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* --- Professional Table Layout --- */
.table-responsive-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.professional-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.professional-table th,
.professional-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--primary-color);
    min-height: 24px; /* Placeholder height */
}

.professional-table thead th {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.professional-table tbody tr {
    transition: background-color 0.3s ease;
}

.professional-table tbody tr:nth-of-type(even) {
    background-color: rgba(10, 25, 47, 0.5);
}

.professional-table tbody tr:hover {
    background-color: rgba(100, 255, 218, 0.07);
}
