:root {
    --green: #4CAF50;
    --blue: #007BFF;
    --red: #FF0000;
    --light-grey: #ffffff;
    --dark-grey: #666;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
    body {
        width: 100vw;
        position: relative;
    }
    
    .header {
        width: 100%;
        position: relative;
        z-index: 100;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1003 !important;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--green);
    color: var(--white);
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 0.8;
}

.agenda {
    white-space: nowrap;
    margin-left: 15px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    z-index: 100;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.logo span:nth-child(1) { color: #3b82f6; }
.logo span:nth-child(2) { color: #ef4444; }
.logo span:nth-child(3) { color: #f59e0b; }
.logo span:nth-child(4) { color: #10b981; }
.logo span:nth-child(5) { color: #6366f1; }
.logo span:nth-child(6) { color: #8b5cf6; }
.logo span:nth-child(7) { color: #ec4899; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--blue);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 400; /* Lighter font for submenu */
}

.dropdown-menu li a:hover {
    background-color: var(--light-grey);
}

/* Mega Menu Styles */
.dropdown-menu.mega-menu {
    min-width: 850px; /* A good width for 3 columns */
    padding: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.dropdown:hover .dropdown-menu.mega-menu {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.mega-menu-column {
    flex: 1;
    padding: 0 15px;
}

.mega-menu-column:not(:last-child) {
    border-right: 1px solid #eee;
}

.mega-menu-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
}

.mega-menu-column ul li {
    margin-bottom: 15px;
}

.mega-menu ul li a {
    padding: 0; /* Remove padding from normal dropdown links */
    font-weight: 400;
    font-size: 14px;
    color: #555;
    transition: color 0.3s, padding-left 0.3s;
}

.mega-menu ul li a:hover {
    background-color: transparent; /* Remove bg color on hover */
    color: var(--blue);
    padding-left: 8px; /* Indent on hover for visual feedback */
}

/* Standout item */
.mega-menu-heading.standout {
    color: var(--green);
    border-bottom-color: var(--green);
}

.mega-menu-heading .fa-star {
    font-size: 12px;
    margin-left: 5px;
    color: #f59e0b;
}

.nav-menu .dropdown > a .fa-chevron-down {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    color: #333;
}

/* Hide hamburger completely */
.hamburger {
    display: none !important;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.login-btn:hover {
    color: var(--blue);
}

.signup-btn {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #ddd; /* Fallback color */
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0) 70%);
    z-index: 5;
}

.slide-text-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    z-index: 10;
    max-width: 650px;
    padding: 0 20px;
}

.slide-text-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    /* Gradient Text Effect */
    background: linear-gradient(90deg, #ffffff, #b0f3f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0; /* Initial state for animation */
}

.slide-text-overlay p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    /* Subtle Gradient for paragraph */
    background: linear-gradient(90deg, #f0f0f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0; /* Initial state for animation */
}

/* Animation for slide text */
.slide.active .slide-text-overlay h1 {
    animation: slideUpFadeIn 0.8s ease-out 0.4s forwards;
}

.slide.active .slide-text-overlay p {
    animation: slideUpFadeIn 0.8s ease-out 0.7s forwards;
}

@keyframes slideUpFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* See More Button */
.see-more-btn {
    display: none; /* Hidden by default, shown on mobile */
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}
.see-more-btn:hover {
    background-color: #0056b3;
}

/* Info Boxes Section */
.info-boxes-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    gap: 25px;
}

.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.info-card .card-icon,
.info-card h3 {
    text-align: center;
}

.info-card p {
    text-align: left;
}

.info-card:hover {
    transform: translateY(-3px);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.card-icon.green {
    background-color: var(--green);
}

.card-icon.blue {
    background-color: var(--blue);
}

.card-icon.red {
    background-color: var(--red);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mobile Bottom Navigation - App Style */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 0.5px solid #e1e1e1;
    z-index: 99999 !important;
    height: 65px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    visibility: visible !important;
    opacity: 1 !important;
}

/* Global mobile navigation visibility - Works on ALL pages */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #ffffff !important;
        border-top: 0.5px solid #e1e1e1 !important;
        height: 65px !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08) !important;
    }
    
    /* Ensure body has bottom padding on all pages */
    body {
        padding-bottom: 65px !important;
    }
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8e8e93;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 8px;
    min-width: 50px;
    height: 50px;
}

.mobile-nav-item.active {
    color: var(--blue);
}

.mobile-nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
    transition: all 0.2s ease;
}

.mobile-nav-item.active i {
    color: var(--blue);
    transform: scale(1.1);
}

.mobile-nav-item span {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

.mobile-nav-item.active span {
    color: var(--blue);
    font-weight: 600;
}

/* Home Section Indicator Circle */
.home-indicator {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), #45a049);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: homeGlow 3s ease-in-out infinite;
}

.home-indicator::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--green);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.home-indicator i {
    color: white;
    font-size: 16px;
    z-index: 1;
}

@keyframes homeGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(76, 175, 80, 0.6); }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* About Section Highlight Effect */
.about-highlight {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue), #0056b3);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    animation: aboutPulse 2s ease-in-out infinite;
}

.about-highlight::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    animation: aboutRipple 2.5s infinite;
}

.about-highlight i {
    color: white;
    font-size: 16px;
    z-index: 1;
}

@keyframes aboutPulse {
    0%, 100% { 
        transform: translateY(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }
    50% { 
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 25px rgba(0, 123, 255, 0.5);
    }
}

@keyframes aboutRipple {
    0% {
        transform: scale(0.7);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Header Icons */
.mobile-header-icons {
    display: none;
    align-items: center;
}

.mobile-header-icons .notification-icon {
    position: relative;
    color: #666;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.mobile-header-icons .notification-icon:hover {
    color: var(--blue);
    background: rgba(0, 123, 255, 0.1);
}

.mobile-header-icons .notification-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid white;
}

.mobile-chat-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-chat-btn:hover {
    background: #45a049;
    transform: scale(1.1);
}

.mobile-chat-btn i {
    font-size: 18px;
}

/* Mobile Logo */
.mobile-logo {
    display: none;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-logo span:nth-child(1) { color: #3b82f6; }
.mobile-logo span:nth-child(2) { color: #ef4444; }
.mobile-logo span:nth-child(3) { color: #f59e0b; }
.mobile-logo span:nth-child(4) { color: #10b981; }
.mobile-logo span:nth-child(5) { color: #6366f1; }
.mobile-logo span:nth-child(6) { color: #8b5cf6; }
.mobile-logo span:nth-child(7) { color: #ec4899; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: rgba(248, 249, 250, 0.95);
        backdrop-filter: blur(10px);
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hamburger {
        display: none;
        pointer-events: none;
        cursor: default;
    }
    
    .logo {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .mobile-header-icons {
        display: flex;
    }
    
    .mobile-chat-btn {
        display: flex;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
    
    .home-indicator {
        display: flex;
    }
    
    body {
        padding-top: 70px;
        padding-bottom: 65px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-text-overlay {
        left: 5%;
        max-width: 90%;
    }
    
    .slide-text-overlay h1 {
        font-size: 2.2rem;
    }
    
    .slide-text-overlay p {
        font-size: 0.95rem;
    }
    
    /* Hide desktop elements on mobile */
    .top-bar {
        display: none;
    }
}een {
    background-color: var(--green);
}

.card-icon.blue {
    background-color: var(--blue);
}

.card-icon.red {
    background-color: var(--red);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 8px 0;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
}

.mobile-nav-item.active {
    color: var(--blue);
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-item.active i {
    transform: scale(1.1);
}

.mobile-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* Section Indicators */
.section-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: none;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.indicator-dot.active {
    background: var(--blue);
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.indicator-dot.home-active {
    background: var(--green);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

/* Floating Action Button for Home */
.home-fab {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green), #45a049);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.home-fab i {
    color: white;
    font-size: 24px;
}

.home-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(76, 175, 80, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4); }
}

/* About Section Highlight */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.about-section.in-view::before {
    left: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: rgba(248, 249, 250, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: block;
    }
    
    .section-indicator {
        display: block;
    }
    
    .home-fab {
        display: flex;
    }
    
    body {
        padding-top: 80px;
        padding-bottom: 70px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-text-overlay {
        left: 5%;
        max-width: 90%;
    }
    
    .slide-text-overlay h1 {
        font-size: 2.5rem;
    }
    
    .slide-text-overlay p {
        font-size: 1rem;
    }
}een {
    background-color: #4CAF50;
}

.card-icon.orange {
    background-color: #FF9800;
}

.card-icon.blue {
    background-color: #2196F3;
}

.card-icon.red {
    background-color: #f44336;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.vision-mission-card {
    /* Longer card for better readability */
}

/* Our Service Section */
.our-service-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.our-service-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--dark-grey);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.service-list-container {
    width: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px; /* Adds space between columns */
}

.service-list li {
    border-bottom: 1px solid #ddd;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: calc(var(--stagger-index, 0) * 75ms); /* Staggered delay */
}

/* The vertical line rule has been removed as requested. */

.service-list li:nth-last-child(-n+2) {
    border-bottom: none;
}

.service-list li.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.service-list li a:hover {
    color: var(--blue);
}

.service-list li a i {
    transition: transform 0.3s;
}

.service-list li a:hover i {
    transform: translateX(5px);
}

/* Our Products Section */
.our-products-section {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

/* Product Carousel */
.product-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 120px;
    overflow: visible;
    position: relative;
    height: 350px;
}

/* Product Card */
.product-card {
    background: #1f1f1f;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 380px;
    min-height: 380px;
    max-height: 380px;
    opacity: 0.6;
    transform: scale(0.75);
    filter: grayscale(1) brightness(0.7);
    flex-shrink: 0;
}

/* Center card (active) */
.product-card.center {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
    filter: none;
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    width: 240px;
    min-width: 240px;
    max-width: 240px;
}

/* Side cards - Circular arc positioning */
.product-card.left-side {
    opacity: 0.7;
    transform: scale(0.8) translateY(30px) translateX(15px) rotateZ(-8deg);
    z-index: 8;
    filter: grayscale(0.8) brightness(0.8);
}

.product-card.right-side {
    opacity: 0.7;
    transform: scale(0.8) translateY(30px) translateX(-15px) rotateZ(8deg);
    z-index: 8;
    filter: grayscale(0.8) brightness(0.8);
}

/* Hidden cards - Further circular positioning */
.product-card.hidden {
    opacity: 0.5;
    transform: scale(0.65) translateY(50px) translateX(25px) rotateZ(-15deg);
    pointer-events: none;
    filter: grayscale(1) brightness(0.6);
    z-index: 6;
}

.product-card:hover:not(.hidden) {
    transform: scale(1.15) translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

/* Poster Section */
.product-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 380px;
    overflow: hidden;
}

.product-card.center .product-poster {
    width: 240px;
    height: 380px;
}

.product-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    loading: lazy;
    image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.product-card.center .product-poster img {
    transform: scale(1.05);
}

.product-card:hover .product-poster img {
    transform: scale(1.1);
}

.product-poster::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 1;
}

/* Rating Badge */
.product-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.product-rating::before {
    content: '★';
    margin-right: 2px;
}

/* Category Badge */
.product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Product Info */
.product-info {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 200px;
    padding: 15px 15px 10px;
    z-index: 2;
    text-align: left;
    box-sizing: border-box;
}

.product-card.center .product-info {
    width: 240px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.product-meta {
    font-size: 11px;
    color: #e0e0e0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-info p {
    font-size: 12px;
    color: #d0d0d0;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Action Buttons */
.product-actions {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: calc(200px - 30px);
    display: flex;
    gap: 10px;
    z-index: 2;
    box-sizing: border-box;
}

.product-card.center .product-actions {
    width: calc(240px - 30px);
}

.product-actions .action-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card.center .product-actions .action-btn,
.product-card:hover .product-actions .action-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for buttons on the center card */
.product-card.center .product-actions .action-btn:nth-child(1) {
    transition-delay: 0.15s;
}
.product-card.center .product-actions .action-btn:nth-child(2) {
    transition-delay: 0.25s;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--blue);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--blue);
    opacity: 0.7;
}

.action-btn {
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.action-btn.primary {
    background: white;
    color: #141414;
    flex: 1;
    border-radius: 4px;
    font-weight: 600;
    gap: 5px;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.action-btn.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn.primary:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.action-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Fold Animation Effect */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

/* General Page Section */
.page-section {
    padding: 80px 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h3, .contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info > p {
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--dark-grey);
    font-size: 1rem;
}

.contact-details i {
    color: var(--blue);
    font-size: 18px;
    width: 25px;
    text-align: center;
    margin-right: 15px;
}

.contact-experts {
    margin-top: 30px;
    padding: 25px;
    background-color: #e9f2ff;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
}

.contact-experts h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.expert-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.expert-btn:hover {
    background-color: #1EBE57;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: #0056b3;
}

/* Footer Note */
.footer-note {
    color: var(--dark-grey);
    font-size: 12px;
    z-index: 10;
    text-align: center;
    margin: 40px auto 20px;
    position: static;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 40px;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--blue);
    font-weight: 600;
}

/* Pricing Hero Section */
.pricing-hero {
    position: relative;
    color: white;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.pricing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/22.png') center/cover no-repeat;
    z-index: 1;
}

.pricing-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.9) 0%, rgba(0, 86, 179, 0.8) 70%, transparent 100%);
    z-index: 2;
}

.pricing-hero .container {
    position: relative;
    z-index: 3;
}

.pricing-hero-content {
    text-align: left;
    max-width: 600px;
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--blue);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.pricing-card:nth-child(1) .price .currency,
.pricing-card:nth-child(1) .price .amount {
    color: #e74c3c;
}

.pricing-card:nth-child(2) .price .currency,
.pricing-card:nth-child(2) .price .amount {
    color: #2ecc71;
}

.pricing-card:nth-child(3) .price .currency,
.pricing-card:nth-child(3) .price .amount {
    color: #f39c12;
}

.pricing-card:nth-child(4) .price .currency,
.pricing-card:nth-child(4) .price .amount {
    color: #9b59b6;
}

.pricing-card:nth-child(5) .price .currency,
.pricing-card:nth-child(5) .price .amount {
    color: #1abc9c;
}

.pricing-card:nth-child(6) .price .currency,
.pricing-card:nth-child(6) .price .amount {
    color: #34495e;
}

.price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
    width: 16px;
}

.pricing-features .fa-check {
    color: #28a745;
}

.pricing-features .fa-times {
    color: #dc3545;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-btn:hover {
    background: #0056b3;
}

/* Services Pricing Section */
.services-pricing-section {
    padding: 80px 20px;
    background: white;
}

.services-pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 50px;
    justify-content: space-between;
    overflow-x: auto;
    padding: 0 10px;
}

.service-price-card {
    flex: 0 0 auto;
    min-width: 200px;
    width: calc(16.66% - 16px);
}

.service-price-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.service-price-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-price-card:nth-child(1) .service-price { color: #e74c3c; }
.service-price-card:nth-child(2) .service-price { color: #3498db; }
.service-price-card:nth-child(3) .service-price { color: #2ecc71; }
.service-price-card:nth-child(4) .service-price { color: #f39c12; }
.service-price-card:nth-child(5) .service-price { color: #9b59b6; }
.service-price-card:nth-child(6) .service-price { color: #1abc9c; }

.service-price span {
    font-size: 0.9rem;
    color: #666;
}

.service-price-card p {
    color: #666;
    font-size: 14px;
}

/* Demo Section */
.demo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.demo-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.demo-features {
    margin-bottom: 30px;
}

.demo-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.demo-feature i {
    color: var(--blue);
    margin-right: 15px;
    font-size: 18px;
}

.demo-btn {
    background: var(--blue);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.demo-btn:hover {
    background: #0056b3;
}

.demo-image {
    text-align: center;
}

.demo-icon {
    font-size: 8rem;
    color: var(--blue);
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-question i {
    color: var(--blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .pricing-hero-content h1 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .demo-text h2 {
        font-size: 2rem;
    }
    
    .demo-icon {
        font-size: 5rem;
    }
    
    .services-pricing-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-price-card {
        min-width: 280px;
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .service-price-card {
        min-width: 100%;
        width: 100%;
    }
}

/* Logo Scroller Section */
.logo-scroller-section {
    padding: 0 0 40px;
    background-color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.logo-scroller {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.logo-scroller:last-child {
    margin-bottom: 0;
}

.logo-track {
    display: flex;
    animation: scroll-rtl 40s linear infinite;
}

.logo-scroller.reverse .logo-track {
    animation-name: scroll-ltr;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: var(--dark-grey);
    font-size: 20px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.logo-item:hover {
    opacity: 1;
}

@keyframes scroll-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-ltr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Hide all chat functionality */
.chat-widget,
.chat-toggle-btn,
.mobile-chat-btn,
.mobile-chat-fullscreen {
    display: none !important;
}

.chat-toggle-btn {
    background-color: #007BFF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: #007BFF;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.agent-selection {
    text-align: center;
}

.agent-selection p {
    margin-bottom: 15px;
    color: #666;
}

.agent-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.agent-btn:hover {
    background: #e9ecef;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
}

.message.user {
    background: #007BFF;
    color: white;
    margin-left: auto;
    text-align: right;
}

.message.agent {
    background: #f1f1f1;
    color: #333;
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    position: relative;
    z-index: 1003;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Removed overlay shadow as requested */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Footer Divider */
.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    margin: 0;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e75 0%, #1a252f 100%);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #3ddad7;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Logo */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span:nth-child(1) { color: #3b82f6; }
.footer-logo span:nth-child(2) { color: #ef4444; }
.footer-logo span:nth-child(3) { color: #f59e0b; }
.footer-logo span:nth-child(4) { color: #10b981; }
.footer-logo span:nth-child(5) { color: #6366f1; }
.footer-logo span:nth-child(6) { color: #8b5cf6; }
.footer-logo span:nth-child(7) { color: #ec4899; }

.footer-description {
    color: #d9d9d9;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Newsletter Signup */
.newsletter-signup h4 {
    color: #ff9f68;
    font-size: 1rem;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: background-color 0.3s;
}

.newsletter-form input::placeholder {
    color: #d9d9d9;
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    background-color: var(--green);
    color: #ffffff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background-color: #43a047;
    transform: scale(1.1);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d9d9d9;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #3ddad7;
    padding-left: 10px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s;
    color: #3ddad7;
    font-size: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d9d9d9;
}

.contact-item i {
    color: #ff9f68;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-size: 14px;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #d9d9d9;
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Force mobile layout */
@media screen and (max-width: 1024px), (pointer: coarse) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

/* Medium devices (tablets, less than 1024px) */
@media (max-width: 1024px) {
    body {
        font-size: 16px;
        overflow-x: hidden;
    }

    .top-bar {
        padding: 5px 10px;
        font-size: 12px;
    }
    /* Hide social icons and extra text in top bar */
    .top-bar .social-icons,
    .agenda {
        display: none;
    }

    .header-container {
        justify-content: space-between;
        width: 100%;
    }

    /* The .nav rule is removed to allow the child .nav-menu to be visible on mobile */
    .hamburger {
        display: flex !important;
        visibility: visible !important;
    }
    
    .nav {
        display: block !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        text-align: left;
        transition: transform 0.3s ease;
        padding: 70px 0 20px;
        gap: 0;
        z-index: 1002;
        overflow-y: auto;
        display: flex;
        border-right: 1px solid #ddd;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-menu > li {
        border-bottom: 1px solid #eee;
    }
    .nav-menu > li > a {
        padding: 15px 20px;
        display: block;
        font-weight: 500;
        color: #333;
        border: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on touch devices */
    }
    .dropdown.open .dropdown-menu {
        display: block; /* Show on .open class */
    }
    .dropdown.open > a .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        min-width: unset;
        padding: 0;
        opacity: 1;
        transform: none;
        transition: none;
        background-color: #f8f9fa;
        display: none;
        border-left: 3px solid var(--blue);
        margin-left: 20px;
    }
    .dropdown-menu li a {
        padding: 12px 25px;
        text-align: left;
        font-size: 14px;
        color: #666;
    }

    .dropdown-menu.mega-menu {
        padding: 10px 20px;
    }
    .mega-menu-content {
        flex-direction: column;
        gap: 10px;
    }
    .mega-menu-column {
        padding: 10px 0;
    }
    .mega-menu-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .hero-slider {
        height: 50vh; /* Adjust height for mobile */
        min-height: 300px;
    }
    .slide::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    }
    .slide-text-overlay {
        left: 5%;
        max-width: 90%;
        padding: 0 15px;
    }
    .slide-text-overlay h1 {
        font-size: 2rem;
    }
    .slide-text-overlay p {
        font-size: 1rem;
    }
    .slide img {
        /* Style is already global, no need to repeat */
    }

    .service-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    /* Show "See More" button and hide extra services */
    .see-more-btn {
        display: block;
    }
    .service-list li:nth-child(n+5) {
        display: none;
    }
    .service-list.expanded li {
        display: block;
    }
    /* Restore bottom borders on mobile */
    .service-list li:nth-last-child(-n+2) {
        border-bottom: 1px solid #ddd;
    }
    .service-list li:last-child {
        border-bottom: none;
    }

    .carousel-container {
        padding: 20px 0;
    }
    
    .product-carousel {
        gap: 15px;
        padding: 20px 60px;
    }
    
    .product-card.left-side {
        transform: scale(0.7) translateY(20px) translateX(10px) rotateZ(-5deg);
    }
    
    .product-card.right-side {
        transform: scale(0.7) translateY(20px) translateX(-10px) rotateZ(5deg);
    }
    
    .product-card.hidden {
        transform: scale(0.6) translateY(35px) translateX(15px) rotateZ(-10deg);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: -40px;
    }
    
    .next-btn {
        right: -40px;
    }
    
    .product-card {
        width: 200px;
        min-width: 200px;
    }
    
    .product-card.center {
        width: 240px;
        min-width: 240px;
    }
    
    .product-card.center .product-poster {
        height: 200px;
    }
    
    .product-poster {
        height: 160px;
    }

    .auth-buttons {
        display: none;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media screen and (max-width: 768px) {
    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    html, body {
        width: 100%;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    /* Ensure buttons are touch-friendly */
    button, .btn, a {
        min-height: 44px;
        min-width: 44px;
    }
    /* Adjust padding for touch targets */
    .social-icons a,
    .hamburger {
        padding: 0; /* Reset padding if fixed size is used */
    }

    .info-boxes-section {
        padding: 30px 20px;
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .info-card {
        padding: 20px 15px;
    }
    .card-icon {
        width: 45px;
        height: 45px;
    }
    .card-icon i {
        font-size: 1.3rem;
    }
    .info-card h3 {
        font-size: 1.1rem;
    }
    .info-card p {
        font-size: 13px;
    }

    .our-products-section {
        padding: 40px 0;
    }
    
    .product-carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        height: 520px; /* Set a height that can contain the card */
        position: relative;
        overflow: hidden;
    }
    
    /* Make carousel a single-card view on mobile */
    .product-card {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        width: 90vw;
        max-width: 340px;
        height: 480px;
        min-height: 0;
        max-height: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        filter: none;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .product-card.center {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        z-index: 10;
        pointer-events: auto;
    }
    
    /* Hide side cards completely */
    .product-card.left-side,
    .product-card.right-side,
    .product-card.hidden {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Override desktop hover effect to remove it on mobile */
    .product-card:hover,
    .product-card.center:hover {
        transform: translate(-50%, -50%) scale(1); /* Keep it static */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Keep original shadow */
    }
    
    /* Make card elements fit the new size */
    .product-poster,
    .product-card.center .product-poster {
        width: 100%;
        height: 100%; /* Make poster fill the card */
    }

    .product-info,
    .product-card.center .product-info {
        width: 100%; /* Make info fill the width */
    }

    .product-actions,
    .product-card.center .product-actions {
        width: calc(100% - 30px); /* Make actions fill the width with padding */
    }

    /* Ensure action buttons are always visible on mobile */
    .product-actions .action-btn {
        opacity: 1;
        transform: translateY(0);
    }
    
    .product-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .product-card.center {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .carousel-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
        background: rgba(0, 0, 0, 0.6) !important;
    }
    
    .prev-btn {
        left: 15px !important;
    }
    
    .next-btn {
        right: 15px !important;
    }

    .carousel-dots {
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-widget {
        right: 15px;
        bottom: 15px;
    }
    .whatsapp-toggle-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    .whatsapp-contacts {
        bottom: 75px;
    }

    /* Minimal Footer */
    .footer {
        padding: 30px 0 15px;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    /* Hide extra footer content */
    .footer-description,
    .newsletter-signup,
    .footer-column:nth-child(2), /* Quick Links */
    .footer-column:nth-child(3) { /* Contact Info */
        display: none;
    }
    .footer .social-icon.linkedin {
        display: none; /* Hide LinkedIn icon */
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .social-media {
        justify-content: center;
    }
    .contact-info {
        align-items: center;
    }
    .contact-item {
        justify-content: center;
    }
}

/* Extra small devices (portrait phones, less than 480px) */
@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-bar-content {
        font-size: 11px;
    }

    .logo {
        font-size: 20px;
    }
    
    .hamburger {
        font-size: 18px;
        width: 44px;
        height: 44px;
    }
    
    .nav-menu {
        width: 90%;
        padding: 60px 0 20px;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 280px;
    }

    .footer {
        padding: 40px 0 15px;
    }
    .footer-columns {
        gap: 25px;
    }
    .footer-logo {
        font-size: 20px;
    }
}