/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #002d72;
    --secondary-color: #00aaff;
    --accent-color: #0891b2;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f4f9ff;
    --bg-dark: #001f4d;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #002d72 0%, #00aaff 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
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 span {
   padding-left: 10px;
   position: relative;
   right: 50px;
}


.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 */
    }
    .top-bar span {
   padding: 10px;
   position: relative;
   left: 30px;

  
}
}

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);
}
/* html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Loading Screen */
/* #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    text-align: center;
    color: white;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    animation: loading-bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loading-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
} */

/* ==== Top Bar ==== */
/* .top-bar {
    background-color: var(--bg-dark);
    color: white;
    padding: 6px 0;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar .marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.top-bar .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: leftRightBounce 20s ease-in-out infinite;
}

.top-bar .marquee-content:hover {
    animation-play-state: paused;
}

@keyframes leftRightBounce {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(calc(100vw - 100%));
    }
    100% {
        transform: translateX(0);
    }
}

#whatsappicon,
#whatsapp {
    color: rgb(77, 232, 77);
    transition: color 0.3s ease;
}

#whatsapp:hover {
    color: rgb(100, 255, 100);
} */

/* ==== Header ==== */
.header {
    background: var(--primary-color);
    padding: 10px 0;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.header.scrolled {
    background: rgba(0, 45, 114, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==== Logo Section - UPDATED ==== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 50px;
    width: 180px;
    border-radius: 8px;
    /* transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    margin-top: -10px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ==== Nav ==== */
.main-nav {
    display: flex;
}

.main-nav ul {
    display: flex;
    /* gap: 20px; */
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: white;
    /* padding: 8px 10px; */
    display: block;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--secondary-color);
    background: rgba(0, 170, 255, 0.1);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* ==== Dropdown - FIXED HOVER FUNCTIONALITY ==== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color:#001f4d;
    color: black;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
    
    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    
    /* Prevent dropdown from showing by default */
    display: flex;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
    display: block;
    font-weight: 500;
}

.dropdown-menu li a::after {
    display: none; /* Remove the underline effect in dropdown */
}

.dropdown-menu li:hover {
    background-color: var(--primary-color);
}

.dropdown-menu li:hover a {
    color: white;
    background: transparent;
}

/* Desktop hover functionality - FIXED */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Ensure dropdown stays open when hovering over the dropdown itself */
    .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile click functionality */
@media (max-width: 768px) {
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        position: static;
        box-shadow: none;
        background-color: rgba(0, 170, 255, 0.1);
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .dropdown-menu li a {
        color: white;
        padding: 10px 15px;
    }
    
    .dropdown-menu li:hover {
        background-color: rgba(0, 170, 255, 0.2);
    }
    
    .dropdown-menu li:hover a {
        color: white;
    }
}

/* ==== Hamburger ==== */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 16px;
    opacity: 0.9;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.8;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.hero-stats {
    display: flex;
    gap: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.4s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.6s;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(50px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    font-size: 2rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    background: white;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    font-size: 2rem;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Requirements Section */
.requirements {
    padding: 120px 0;
    background: white;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.requirements-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.requirements-image img {
    width: 100%;
    height: auto;
    display: block;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.requirement-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.requirement-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Animation on Scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ==== Responsive ==== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .requirements-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 75%;
        background-color: var(--primary-color);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-top: 60px;
    }

    .menu-toggle {
        display: block;
    }
    
    /* Logo responsive adjustments */
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact p {
        font-size: 1.1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .services,
    .benefits,
    .requirements,
    .contact {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .service-card,
    .benefit-card {
        padding: 32px 24px;
    }
    
    .services-grid,
    .benefits-grid {
        gap: 20px;
    }
    
    /* Logo mobile adjustments */
    .logo {
        gap: 6px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

          /* 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;
}