* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f9ff;
    color: #333;
    line-height: 1.6;
}

/* Top Info Bar */
.top-bar {
    background-color: #001f4d;
    color: white;
    padding: 6px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-left span {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .top-bar .container {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .info-left span {
        margin-left: 0;
        margin-right: 0; /* Remove right margin for stacking */
    }
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    height: 75px; /* Fixed header height */
    display: flex;
    align-items: center;
    background: #002d72;
    color: white;
    position: relative;
    z-index: 1000;
    padding: 0 20px; /* Add horizontal padding to header itself */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure container fills header width */
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* --- Mobile Specific Styles (Default for Mobile First) --- */

/* Hamburger Menu Toggle */
.menu-toggle {
    display: block; /* Show hamburger on mobile */
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    order: 2; /* Position after logo */
}

/* Main Navigation (Hidden by default on mobile) */
.main-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Below the header */
    left: 0;
    width: 100%;
    background: #002f9e; /* Solid background for mobile menu */
    flex-direction: column; /* Stack links vertically */
    padding: 15px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 999; /* Ensure it's below top-bar but above content */
}

.main-nav.active {
    display: flex; /* Show when active */
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column; /* Stack items vertically for mobile */
    align-items: center; /* Center align items */
    gap: 15px; /* Space between links */
    width: 100%; /* Ensure ul takes full width of nav */
}

.main-nav ul li {
    width: 100%; /* Make list items take full width */
    text-align: center; /* Center text within list items */
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 15px; /* Increase padding for better tap area */
    display: block; /* Make link fill padding area */
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #004080; /* Highlight on hover */
}

/* Dropdown Container for Mobile */
.main-nav .dropdown {
    position: relative;
    width: 100%; /* Ensure dropdown takes full width */
}

.main-nav .dropdown a {
    position: relative; /* For caret positioning */
}

.main-nav .dropdown a .fas.fa-caret-down {
    margin-left: 5px; /* Space for caret */
}

/* Dropdown Menu for Mobile */
.main-nav .dropdown-menu {
    display: none; /* Hidden by default */
    position: static; /* Stack naturally within the flow for mobile */
    background: #003a8d; /* Slightly different background for sub-menu */
    color: white; /* Text color for sub-menu */
    box-shadow: none; /* No shadow for mobile dropdown */
    min-width: unset; /* Remove min-width constraint */
    border-radius: 0; /* No border-radius */
    padding: 0; /* Remove padding */
    width: 100%; /* Take full width */
}

.main-nav .dropdown.active .dropdown-menu {
    display: block; /* Show when parent dropdown is active */
}

.main-nav .dropdown-menu li {
    padding: 0; /* Remove padding from li */
    width: 100%; /* Full width */
}

.main-nav .dropdown-menu li a {
    color: white; /* Ensure links are white */
    padding: 10px 20px; /* Adjust padding for sub-items */
    background-color: #003a8d; /* Same as dropdown menu background */
}

.main-nav .dropdown-menu li a:hover {
    background-color: #004d99; /* Hover effect for sub-items */
}

/* --- Desktop Styles (Media Query) --- */
@media (min-width: 768px) {
    /* Top Bar - Desktop */
    .top-bar {
        padding: 6px 0; /* Original padding */
        font-size: 14px; /* Original font size */
        text-align: right;
    }

    .top-bar .container {
        justify-content: flex-end;
        flex-direction: row;
    }

    .info-left span {
        margin-right: 20px;
    }

    /* Header - Desktop */
    .header {
        height: 75px;
        padding: 0; /* Remove padding as container handles it */
    }

    .header .container {
        justify-content: space-between;
        /* Revert to original justify */
        width: 90%; /* Restore original container width */
    }

    .logo img {
        height: 90px;
    }

    /* Hide hamburger menu on desktop */
    .menu-toggle {
        display: none;
    }

    /* Main Navigation - Desktop */
    .main-nav {
        display: block; /* Always visible on desktop */
        position: static; /* No absolute positioning */
        width: auto; /* Auto width */
        background: none; /* No background */
        box-shadow: none; /* No shadow */
        flex-direction: row; /* Horizontal links */
        padding: 0;
        z-index: auto;
    }

    .main-nav ul {
        flex-direction: row; /* Horizontal links */
        gap: 20px; /* Restore original gap */
        width: auto; /* Auto width for ul */
    }

    .main-nav ul li {
        width: auto; /* Auto width for list items */
        text-align: left; /* Revert text alignment */
    }

    .main-nav a {
        padding: 0; /* Remove extra padding from mobile */
        display: inline-block; /* Revert to inline-block for proper spacing */
        background-color: transparent; /* No background hover */
    }

    .main-nav a:hover {
        color: #00aaff;
        background-color: transparent; /* No background hover */
    }

    /* Dropdown Container for Desktop */
    .main-nav .dropdown {
        position: relative;
        width: auto; /* Auto width */
    }

    /* Dropdown Menu for Desktop */
    .main-nav .dropdown-menu {
        display: none; /* Hidden by default */
        position: absolute; /* Absolute positioning */
        top: 100%;
        left: 0;
        background: white; /* White background */
        color: black;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        min-width: 180px; /* Restore min-width */
        border-radius: 5px;
        padding: 0; /* Ensure no padding on the ul itself */
    }

    /* Show Dropdown on Hover (Desktop) */
    .main-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li {
        padding: 10px; /* Restore padding for desktop dropdown items */
    }

    .main-nav .dropdown-menu li a {
        color: #111827; /* Dark text for desktop dropdown items */
        padding: 0; /* Remove padding as li handles it */
        background-color: transparent; /* No background */
    }

    .main-nav .dropdown-menu li:hover {
        background-color: #004080;
        color: white;
    }

    .main-nav .dropdown-menu li:hover a {
        color: white;
    }
}

#whatsappicon {
    text-decoration: none;
    color: rgb(77, 232, 77);
}
#whatsapp {
    text-decoration: none;
    color: rgb(77, 232, 77);
}

/* Banner */
/* Banner Section */

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #f0f9ff, #e6f2ff);
    gap: 40px;
}

.banner-content {
    max-width: 50%;
}

.banner-content h1 {
    font-size: 42px;
    color: #002d72;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.banner-content .btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.banner-content .btn-primary:hover {
    background-color: #005fc2;
}

/* Banner Image with Floating Animation */
.banner-image img {
    max-width: 500px;
    height: auto;
    animation: floatZoom 4s ease-in-out infinite;
}

@keyframes floatZoom {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-10px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .banner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .banner-content,
    .banner-image {
        max-width: 100%;
    }

    .banner-image img {
        max-width: 280px;
    }
}

/* button */
.banner-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
    background-color: #005fc2;
    transform: translateY(-2px);
}


/* Service Section */
/* .services-section {
    background: #f8fbff;
    padding: 60px 20px;
    text-align: center;
} */

/* .services-section h2 {
    color: #002d72;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
} */
/* 
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
} */
/* 
.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
} */

/* .service-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
} */

/* .service-card h3 {
    font-size: 22px;
    color: #002d72;
    margin-bottom: 15px;
} */

/* .service-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #005fc2;
} */

/* .service-card:hover h3,
.service-card:hover p {
    color: white;
} */
/* 
.services-section h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #00aaff;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
} */

/* ✨ Section Heading */
.section-title {
    text-align: center;
    color: #002d72;
    font-size: 36px;
    margin-bottom: 0px;
    position: relative;
    margin-top: 20px;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #3b82f6;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* 🟦 Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    padding: 50px 0;
}

/* 🎯 Individual Card */
.custom-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* 🔹 Card Image */
.custom-service-card .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.custom-service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 🔸 Card Content */
.custom-service-card .card-content {
    background: #fff;
    padding: 24px;
    border-radius: 0 0 16px 16px;
    flex: 1;
}

.custom-service-card .card-content h3 {
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 12px;
}

/* ✔️ Card List */
.custom-service-card .card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.custom-service-card .card-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #444;
    font-size: 15px;
}

.custom-service-card .card-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* 🔘 Button */
.custom-service-card .card-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-service-card .card-btn:hover {
    background: #3b82f6;
    color: white;
}



/* FAQ Section */
.faq {
    background-color: #002d72;
    padding: 60px 20px;
}

.faq .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #f4f9ff;
    margin-bottom: 40px;
    position: relative;
}

.faq h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #00aaff;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #002d72;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: #444;
    padding: 10px 0 20px;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

@media (max-width: 600px) {
    .faq h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* ====== Expertise Section Premium ====== */
.expertise-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f2ff 100%);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    max-width: 900px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.expertise-container h2::after {
    content: '';
    width: 75px;
    height: 4px;
    background-color: #00aaff;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

.expertise-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

/* Title */
.expertise-container h2 {
    color: #002d72;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtitle */
.expertise-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-inline: auto;
}

/* List */
.expertise-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 600px;
}

.expertise-content ul li {
    background: white;
    margin-bottom: 15px;
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    font-size: 17px;
    color: #333;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.expertise-content ul li:hover {
    background: #00aaff;
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.expertise-footer {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-container {
        padding: 35px 25px;
    }

    .expertise-container h2 {
        font-size: 28px;
    }

    .expertise-subtitle {
        font-size: 16px;
    }

    .expertise-content ul li {
        font-size: 15.5px;
    }

    .expertise-footer {
        font-size: 15px;
    }
}

/* Call to Action */
.cta {
    background-color: #f4f9ff;
    color: #002d72;
    text-align: center;
    padding: 50px 20px;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #00aaff;
    padding: 10px 25px;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #008ecc;
}

/* Footer Styles */
.site-footer {
    /* background-color: #1a203c; Dark blue from image */
      /* background-color: #0d0d57; */
      /* background-image: url(./bg_images/footer1.png); */
      background-repeat: no-repeat;
      background-size: cover;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    z-index: 5; /* Ensure footer is below the grow-business section */
    margin-top: 50px; /* Adjust this to pull the footer up behind the grow-business section */
    /*padding-top: 150px;  Add padding to the top of the footer to account for the overlapping section */
    height: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color:orange ;
}

.footer-column address,
.footer-column p {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    color: orange;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color:#fff;
    font-size: 0.9em;
}

footer {
  background: #1a237e;
    /* background-color: #0d0d57; */
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
