/* Font Face Declaration */
@font-face {
    font-family: 'Bricle-Regular';
    src: url('./fonts/Bricle-Regular.woff2') format('woff2'),
         url('./fonts/Bricle-Regular.woff') format('woff'),
         url('./fonts/Bricle-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #0052cc;
    --primary-dark: #0747a6;
    --secondary: #00254d;
    --accent: #00b8d9;
    --text-light: #f8f9fa;
    --text-dark: #172b4d;
    --bg-dark: #091e42;
    --bg-light: #f4f5f7;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header & Navigation */
.header-transparent {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Add this after your existing navbar styles */
.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-scrolled .main-nav {
    height: 70px;
}

.header-scrolled .logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px; /* Reduced from 90px for better proportion */
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img {
    height: 60px; /* Reduced from 80px for better balance */
    width: auto;
    display: block;
    margin-right: 8px;
    transition: var(--transition);
}

.logo-text {
    color: var(--primary);
    font-family: 'Bricle-Regular', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.9rem; /* Adjust size as needed */
    font-weight: normal; /* Bricle might look better with normal weight */
}


.nav-links {
    display: flex;
    gap: 2rem; /* Reduced from 2.5rem for tighter spacing */
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0.8rem; /* Added horizontal padding */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

.nav-cta.pay-now {
    background: var(--accent);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-left: 1rem;
}

.nav-cta.pay-now:hover {
    background: #0095b0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-cta.pay-now {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(9, 30, 66, 0.65), rgba(0, 87, 158, 0.65)), url('../images/hero-bg.png');
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Add Parallax to Sections */
.services-section {
    padding: 8rem 5%;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    background-attachment: fixed;
}

.portfolio-section {
    padding: 8rem 5%;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    background-attachment: fixed;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Optional: Add parallax overlay effect */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.primary-btn {
    background: var(--primary);
    color: white;
}

.secondary-btn {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-btn:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.6s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section Styling */
/* Services Section */
.services-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-dark), var(--secondary));
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-card .learn-more:hover {
    color: white;
}

/* Modal Styles */
.service-details-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-details-modal.modal-active {
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-body {
    margin-top: 2rem;
}

.modal-body h3 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.brand-list, .services-list {
    list-style: none;
    padding: 0;
}

.brand-list li, .services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.brand-list li:last-child, .services-list li:last-child {
    border-bottom: none;
}

.brand-list li i, .services-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 25px;
    }
    
    .close-modal {
        right: 15px;
        top: 15px;
    }
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 30%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 37, 77, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    width: 90vw;
    max-width: 1200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 2rem;
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid rgba(0, 184, 217, 0.3);
    border-left: 1px solid rgba(0, 184, 217, 0.3);
    border-right: 1px solid rgba(0, 184, 217, 0.3);
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.dropdown-column {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid rgba(0, 184, 217, 0.15);
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column li {
    width: 100%;
    margin-bottom: 12px;
}

.dropdown-column a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.3;
    border-radius: 6px;
    background: rgba(0, 82, 204, 0.2);
    margin-bottom: 8px;
}

.dropdown-column a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent);
    font-size: 0.8rem;
}

.dropdown-column a:hover {
    background: rgba(0, 184, 217, 0.3);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 5px;
    color: var(--accent);
    transition: var(--transition);
}

.nav-links li:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Add responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px; /* Match the height of the scrolled header */
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999; /* Just below the header z-index */
        max-height: calc(100vh - 70px);
        overflow-y: auto; /* Allow scrolling if menu is too long */
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Fix text color for mobile navigation */
    .nav-links > li > a {
        color: var(--text-dark) !important; /* Use theme color variable */
    }
    
    /* Make dropdown menu text white */
    .dropdown-menu a, 
    .dropdown-column a {
        color: var(--text-light) !important; /* Use theme color variable */
    }
    
    .nav-links .nav-cta {
        color: white !important; /* Keep CTA buttons with white text */
    }
    
    /* Make dropdown arrows visible */
    .dropdown-toggle::after {
        color: var(--primary) !important; /* Make dropdown arrows more visible */
    }
    
    /* Improved dropdown menu styling for mobile */
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        padding: 1rem;
        border-top: none;
        background: rgba(0, 37, 77, 0.85);
        margin-top: 10px !important;
        margin-bottom: 10px;
        margin-left: 0 !important;
        left: 0 !important;
        border-radius: 4px !important;
        z-index: 1000 !important;
    }
    
    /* Make dropdown columns stack vertically */
    .dropdown-columns {
        flex-direction: column !important;
        gap: 1rem;
    }
    
    /* Adjust column styling */
    .dropdown-column {
        width: 100% !important;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 184, 217, 0.15);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .dropdown-column:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    /* Prevent hover behavior on mobile */
    .nav-links li:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
        display: none !important; /* Override the hover behavior on mobile */
    }
    
    /* Force display block when active class is present */
    .dropdown-menu.active {
        display: block !important; /* Force display when active class is added */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-toggle::after {
        margin-left: auto; /* Push the dropdown arrow to the right */
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        color: var(--text-light);
        width: 100%;
        display: block;
        padding: 10px 0;
    }
    
    /* Improve dropdown toggle appearance */
    .dropdown-toggle {
        position: relative;
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Add animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these styles after your existing CSS */

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 2rem;
}

.industry-tag {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.results {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.result-item {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* After the services section and before the portfolio section */

/* Enterprise Solutions Section */
/* Enterprise Solutions Section */
.enterprise-solutions {
    padding: 8rem 5%;
    background: var(--bg-dark);
    color: var(--text-light);
}

.enterprise-solutions .section-header h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.enterprise-solutions .section-header p {
    color: var(--text-light);
    opacity: 0.9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.solution-card ul li i {
    color: var(--accent);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.3rem;
    }
    
    .solution-card ul li {
        font-size: 1rem;
    }
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-business-hours {
    /* margin-top: 2rem; */
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}


/* Responsive Map Container */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* For footer map specifically */
.footer-map {
    width: 100%;
    margin-bottom: 1rem;
}

.footer-map h4 {
    color: var(--text-light);
    /* margin-bottom: 1rem;     */
}

.footer-map iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-map {
        width: 100%;
        margin-top: 2rem;
    }
    
    .footer-map iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .footer-map iframe {
        height: 150px;
    }
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Terms, Privacy, and Refund Pages Styles */
.terms-container {
    padding: 120px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Specific styles for privacy page footer */
body:has(.terms-section) .footer {
    display: block;
    margin-top: 3rem;
}

.back-button {
    position: fixed;
    top: 100px;
    left: 30px;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
}

.back-button:hover {
    transform: translateX(-5px);
    background: var(--primary-dark);
}

.back-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .back-button {
        top: 80px;
        left: 20px;
        width: 35px;
        height: 35px;
    }
    
    .back-button i {
        font-size: 1rem;
    }
}

.terms-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.terms-section h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.7;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-block {
    margin-bottom: 3rem;
}

.terms-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.terms-block h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.terms-block p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-block ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.terms-block ul li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design for Terms Pages */
@media (max-width: 768px) {
    .terms-container {
        padding: 100px 4% 60px;
    }

    .terms-section {
        padding: 30px 20px;
    }

    .terms-section h1 {
        font-size: 2rem;
    }

    .terms-block h2 {
        font-size: 1.5rem;
    }

    .terms-block h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 80px 3% 40px;
    }

    .terms-section {
        padding: 20px 15px;
    }

    .terms-section h1 {
        font-size: 1.8rem;
    }

    .terms-block h2 {
        font-size: 1.3rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none; /* Add this line to remove the underline */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--text-dark);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1002;
}

.mobile-nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-toggle i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-links a.nav-cta,
    .nav-links a.nav-cta.pay-now {
        margin: 0.5rem auto;
        text-align: center;
        width: 80%;
        max-width: 200px;
    }
    
    .main-nav {
        padding: 0.8rem 5%;
    }
    
    .logo img {
        height: 80px;
    }
}

/* Add this outside the media query to ensure desktop navigation works */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .top-contact {
        font-size: 0.7rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .mobile-nav-toggle {
        padding: 6px 10px;
    }
    
    .mobile-nav-toggle i {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* Products Section */
.products-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/pattern-bg.png');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

/* Make every even product card have the image on the right */
.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.1);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.product-card:hover::after {
    width: 100%;
}

.product-image {
    width: 35%;
    min-width: 250px;
    overflow: hidden;
    position: relative;
}

/* Adjust padding for even cards (image on right) */
.product-card:nth-child(even) .product-content {
    padding-left: 2.5rem;
    padding-right: 3rem;
}

/* Adjust padding for odd cards (image on left) */
.product-card:nth-child(odd) .product-content {
    padding-left: 3rem;
    padding-right: 2.5rem;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.2), rgba(0, 184, 217, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
    color: var(--primary);
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.product-card:hover .product-content h3::after {
    width: 80px;
}

.product-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.product-feature {
    background: rgba(0, 82, 204, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card:hover .product-feature {
    background: rgba(0, 82, 204, 0.15);
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: all 0.4s ease;
    z-index: -1;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

.product-btn:hover::before {
    left: 0;
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(5px);
}

/* Responsive design for products */
@media (max-width: 992px) {
    .product-image {
        width: 40%;
        min-width: 200px;
    }
    
    .product-content {
        padding: 2rem;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
    }
    
    .product-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-card,
    .product-card:nth-child(even) {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        height: 250px;
    }
    
    .product-card:nth-child(even) .product-content,
    .product-card:nth-child(odd) .product-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Add after the root variables and before the header styles */

.top-contact {
    background: var(--primary);
    color: var(--text-light);
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    box-sizing: border-box;
}

.top-contact a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.top-contact a:hover {
    opacity: 0.8;
}

/* Update header positioning */
.header-transparent {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    top: 36px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

/* Update hero section padding to account for fixed elements */
.hero-section {
    padding-top: calc(8rem + 36px);
}

/* Add responsive styles for top contact */
@media (max-width: 768px) {
    .top-contact {
        justify-content: center;
        padding: 5px 5%;
        font-size: 0.75rem;
        gap: 1rem;
    }
    
    .top-contact a {
        white-space: nowrap;
    }
    
    .top-contact a i {
        font-size: 0.9rem;
    }
    
    .header-transparent {
        top: 29px;
    }
    
    .hero-section {
        padding-top: calc(8rem + 29px);
    }
}

@media (max-width: 480px) {
    .top-contact {
        flex-direction: column;
        gap: 0.25rem;
        padding: 4px 5%;
        align-items: center;
    }
    
    .header-transparent {
        top: 52px;
    }
    
    .hero-section {
        padding-top: calc(8rem + 52px);
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-links a.nav-cta,
    .nav-links a.nav-cta.pay-now {
        width: 90%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* About Us Section */
.about-us {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 82, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 184, 217, 0.18) 0%, transparent 50%),
        repeating-linear-gradient(45deg, 
            rgba(0, 82, 204, 0.03) 0px,
            rgba(0, 82, 204, 0.03) 2px,
            transparent 2px,
            transparent 10px
        );
    z-index: 1;
}

.about-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(-135deg, rgba(0, 82, 204, 0.1) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-content {
    flex: 1;
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content .section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-content .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-content .section-header p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 1rem;
}

.about-content p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: rgba(0, 82, 204, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 82, 204, 0.08);
}

.highlight-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item h4 i {
    color: var(--accent);
}

.highlight-item p {
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    border: none;
}

.about-image {
    flex: 1;
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
    animation-play-state: running;
    animation-delay: 0.4s;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent);
    border-radius: 15px;
    z-index: 1;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 184, 217, 0.05) 0px,
        rgba(0, 184, 217, 0.05) 2px,
        transparent 2px,
        transparent 10px
    );
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translate(-5px, -5px);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        margin: 0 auto;
        max-width: 500px;
    }

    .about-content .section-header {
        text-align: center;
    }

    .about-content .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content p {
        text-align: left;
        padding-left: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 1.2rem;
    }
}

/* Brand Carousel Section */
.brand-carousel {
    padding: 4rem 5%;
    background: white;
    overflow: hidden;
}

.brand-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.brand-track {
    display: flex;
    gap: 3rem;
    animation: scrollBrands 20s linear infinite;
    padding: 2rem 0;
}

.brand-item {
    flex: 0 0 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Remove unused animation keyframes */
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5));
    }
}

/* Remove duplicate media query for brand carousel */
@media (max-width: 768px) {
    .brand-carousel {
        padding: 2rem 5%;
    }

    .brand-item {
        flex: 0 0 150px;
        height: 60px;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 5));
        }
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--bg-light);
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.contact-info {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.submit-btn {
    margin: 2rem auto 0;
    display: block;
    width: fit-content;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .form-group {
        width: 95%;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-details li {
        justify-content: center;
    }

    .contact-form {
        padding: 2rem;
    }
}

.map-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.map-link i {
    color: var(--accent);
    font-size: 1.2rem;
}