* {
    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);
}

/* 🔽 Responsive Fix */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-content h1 {
        white-space: normal;
    }
}

/* 🟦 Banner Section */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #007bff, #002d72);
    gap: 40px;
    flex-wrap: wrap;
    min-height: 400px;
    overflow: hidden;
}

.banner-content {
    max-width: 50%;
    display: block;
    position: relative;
    z-index: 1;
    color: white;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    white-space: normal;
    /* allow wrapping if needed */
}

.banner-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    background-color: #00aaff;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #008ecc;
}

/* Banner Image Animation */
.banner-image {
    flex: 1;
    text-align: center;
}

.banner-image img {
    max-width: 600px;
    width: 100%;
    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;
        padding: 40px 5%;
    }

    .banner-content,
    .banner-image {
        max-width: 100%;
    }

    .banner-image img {
        max-width: 400px;
        margin-bottom: 20px;
    }
}

/* Software Solutions Section */
.software-solutions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

.section-description.light {
    color: #bfdbfe;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30orangefr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.solution-card:hover::before {
    opacity: 0.1;
}

.solution-card:nth-child(1)::before {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.solution-card:nth-child(2)::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.solution-card:nth-child(3)::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.card-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #3b82f6;
}

.card-icon.purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #8b5cf6;
}

.card-icon.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #10b981;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.solution-card>p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.feature-list i {
    color: #10b981;
    flex-shrink: 0;
}

.card-btn {
    width: 100%;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    color: white;
    margin-top: auto;
    text-decoration: none;
}

.card-btn.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.card-btn.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-btn.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-btn:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(4px);
}

/* Tools Section */
.tools-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tools-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tools-header i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.tools-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tools-header p {
    color: #64748b;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tool-tag {
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #bfdbfe;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.tools-cta {
    text-align: center;
}


/* 💡 Benefits Section */
/* .benefits-section {
            padding: 60px 10%;
            background: #f0f6ff;
            text-align: center;
        }

        .benefits-section .section-title {
            font-size: 36px;
            color: #002d72;
            margin-bottom: 30px;
        } */

/* .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            max-width: 700px;
        /* } */

/* .benefits-list {
            list-style: none;
            padding: 0;
            margin: 30px auto;
            max-width: 700px;
            text-align: left;
        } */

/* .benefits-list li {
            font-size: 18px;
            color: #333;
            padding: 12px 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
            border-bottom: 1px solid #cce0ff;
            position: relative;
            text-align: left;
            padding-left: 80px;
        } */
/* .benefits-list li { */
/* opacity: 0;
            transform: translateX(-30px);
            padding: 12px 0 12px 30px;
            margin-bottom: 12px;
            font-size: 18px;
            color: #002d72;
            font-weight: 500;
            border-bottom: 1px solid #cce0ff;
            position: relative; */
/* opacity: 0;
            transform: translateX(-40px);
            padding: 12px 0 12px 30px;
            margin-bottom: 12px;
            font-size: 18px;
            color: #002d72;
            font-weight: 500;
            border-bottom: 1px solid #cce0ff;
            position: relative;
            margin-left: 80px;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }

        .benefits-list li.animate {
            animation: slideIn 0.5s ease forwards;
            animation-delay: calc(0.1s * var(--i));
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        } */

/* .benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
} */
/* .benefits-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        } */

/* .benefits-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    margin-bottom: 12px;
    font-size: 18px;
    color: #002d72;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
} */

/* .benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00aaff;
} */

/* .benefits-list li:nth-child(1) {
            animation-delay: 0.2s;
        }

        .benefits-list li:nth-child(2) {
            animation-delay: 0.4s;
        }

        .benefits-list li:nth-child(3) {
            animation-delay: 0.6s;
        }

        .benefits-list li:nth-child(4) {
            animation-delay: 0.8s;
        }

        .benefits-list li:nth-child(5) {
            animation-delay: 1s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        } */

/* .benefits-list li {
            animation: slideIn 0.5s ease forwards;
            animation-delay: calc(0.15s * var(--i));
            opacity: 0;
        } */

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #4338ca 100%);
    position: relative;
    overflow: hidden;
}

.benefit-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: blob 8s infinite;
}

.benefit-blob-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: #3b82f6;
}

.benefit-blob-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: #8b5cf6;
    animation-delay: 2s;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.benefit-card:hover {
    transform: scale(1.05) rotateY(5deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-card:hover::before {
    opacity: 0.2;
}

.benefit-card[data-benefit="1"]::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.benefit-card[data-benefit="2"]::before {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-card[data-benefit="3"]::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-card[data-benefit="4"]::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-card[data-benefit="5"]::before {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.benefit-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.benefit-icon.yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-line {
    width: 3rem;
    height: 4px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 9999px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-line {
    opacity: 1;
}

.floating-dot {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 50%;
    opacity: 0;
    animation: float 2s ease-in-out infinite;
}

.benefit-card:hover .floating-dot {
    opacity: 1;
}

.benefits-cta {
    text-align: center;
}

.btn-primary {
    border: none;
    padding: 13px;
    font-size: 13px 15px 15px;
}

/* ✅ Overflow Fix */
html,
body {
    overflow-x: hidden;
}

/* ✅ Fix the software-section background overflow */
.software-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* fixed from -100px */
    width: 100%;
    /* fixed from 200% */
    height: 100%;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
    z-index: -1;
}

/* 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;
}