:root {
    --navy: #003D66;
    --navy-dark: #002b49;
    --orange: #F28C28;
    --orange-glow: rgba(242, 140, 40, 0.3);
    --white: #ffffff;
    --light-bg: #f8fafc;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 3%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.nav-container {
    max-width: 100px; /* Adjust this number to make the menu wider or narrower */
    margin: 0 auto;    /* Centers the menu on the page */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    max-height: 100px;
}

.navbar img { height: 75px; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 20px; position: relative; }
.nav-links a { text-decoration: none; color: var(--primary-blue); font-weight: 600; }

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    top: 100%;
    list-style: none;
}

.dropdown:hover .dropdown-content { display: block; }
.dropdown-content li a {padding:10px 0px 0px 10px;   display: block; font-size: 15px; }
.dropdown-content li a:hover { background: var(--light-gray); }


.main-footer {
    background-color: #002b4d; /* Darker professional contrast to separate from testimonials */
    color: #ffffff;
    padding: 80px 0 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr 1fr; /* Adjusted for address and service list */
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Brand & Address Column --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 0px 5px;
}

.footer-logo img {
    height: 50px; /* Increased for visibility */
    width: auto;
}

.footer-logo h2 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.footer-brand p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.company-address {
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.company-address p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Social Icons (FontAwesome Styling) --- */
.social-icons {
    display: flex;
    gap: 12px;
    padding-left: 20px;
}

.social-icons a {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 1.9rem;
}

.social-icons a:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

/* --- Navigation Links Column --- */
.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
}

/* Underline decoration for headings */
.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Two-column layout for the 8 services */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    width: 100%;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
    padding-top: 30px;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.bottom-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.bottom-legal a:hover {
    color: white;
}

/* --- Responsive Layouts --- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1.5fr; /* Stacks into two columns */
    }
    .services-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 50px;
    }
    
    .footer-links h4 {
        margin-bottom: 20px;
    }

    .flex-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-legal a {
        margin: 0 10px;
    }
}

.whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            color: #fff;
        }

        /* The Pulse Animation */
        .whatsapp-float::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #25d366;
            opacity: 0.7;
            z-index: -1;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.9); opacity: 0.7; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        /* Responsive for mobile */
        @media screen and (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 30px;
            }
        }


        

        /* Magnetic Calendly Button Styling */
.cta-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #f58220, #ff9d4d, #f58220);
    background-size: 200% auto;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.3);
    animation: shimmer-bg 3s linear infinite;
}

/* Moving Background Gradient */
@keyframes shimmer-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* The "Glow" Pulse */
.cta-magnetic::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: all 0.3s;
}

.cta-magnetic:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 130, 32, 0.5);
    color: white;
}

.cta-magnetic:hover::after {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0);
    border: 2px solid #f58220;
}

.cta-magnetic i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.cta-magnetic:hover i {
    transform: translateX(5px);
}

/* Periodic Attention Grabber (Pulse) */
.pulse-trigger {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 130, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0); }
}




.faq-wrapper {
    max-width: 1000px;
    margin: 50px auto;
}

.faq-card {
    background: #ffffff;
    border: 2px solid #eef2f6;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden; /* Crucial for hiding content */
}

.faq-card:hover {
    border-color: #F28C28;
    box-shadow: 0 10px 30px rgba(0, 61, 102, 0.08);
}

.faq-trigger {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-trigger h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #003D66;
    font-weight: 700;
}

/* The Animated Plus Icon */
.plus-minus {
    width: 24px;
    height: 24px;
    position: relative;
}

.plus-minus::before, .plus-minus::after {
    content: '';
    position: absolute;
    background: #F28C28;
    transition: 0.3s transform ease;
}

/* Horizontal line */
.plus-minus::before {
    width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%);
}
/* Vertical line */
.plus-minus::after {
    width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%);
}

/* HIDDEN STATE FOR ANSWERS */
.faq-content {
    max-height: 0;
    opacity: 0;
    padding: 0 30px;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1); /* Smooth Slide Effect */
}

.faq-content p {
    padding-bottom: 30px;
    color: #445668;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* OPEN STATE (Applied via JavaScript) */
.faq-card.is-open .faq-content {
    max-height: 500px; /* Big enough to fit the text */
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-card.is-open .plus-minus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0; /* Vertical line disappears to show a minus '-' */
}

.faq-card.is-open {
    border-color: #F28C28;
}