        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Updated color scheme to match logo colors */
            --primary: #1A4D5C;
            --primary-light: #2B8A99;
            --primary-dark: #0F3540;
            --accent: #5FD4B8;
            --accent-warm: #4AC4A8;
            --text-dark: #1A1A2E;
            --text-light: #6B7280;
            --bg-light: #F5F5F0;
            --bg-white: #FFFFFF;
            --border: #E5E7EB;
            --success: #5FD4B8;
            --gradient-1: linear-gradient(135deg, #1A4D5C 0%, #2B8A99 100%);
            --gradient-2: linear-gradient(135deg, #2B8A99 0%, #5FD4B8 100%);
            --shadow-sm: 0 2px 8px rgba(26, 77, 92, 0.08);
            --shadow-md: 0 4px 16px rgba(26, 77, 92, 0.12);
            --shadow-lg: 0 8px 32px rgba(26, 77, 92, 0.16);
            /* New variables for neutral colors */
            --neutral-light: #F5F5FA;
            --neutral-white: #FFFFFF;
            --primary-teal: #5FD4B8;

            /* Updated colors from updates */
            --primary: #1B9AAA;
            --secondary: #5DD9C1;
            --accent: #0D5C63;
            --text: #2C3E50;
            --light-bg: #F8F9FA;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Header & Navigation */
        header {
            background-color: var(--neutral-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--primary-dark);
        }

        .logo-icon img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-teal);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            /* Updated background gradient to match logo colors */
            background: linear-gradient(135deg, #F5F5F0 0%, #E8F8F5 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            /* Updated gradient to use accent color */
            background: radial-gradient(circle, rgba(95, 212, 184, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(-50px, -50px) scale(1.1);
            }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            /* Updated badge colors to match logo */
            background: linear-gradient(135deg, rgba(26, 77, 92, 0.1) 0%, rgba(95, 212, 184, 0.1) 100%);
            color: var(--primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(26, 77, 92, 0.2);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero h1 .highlight {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-height: 48px;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* CHANGE: Added carousel styles for fade transitions */
        .hero-carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-carousel img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-carousel img.active {
            opacity: 1;
            position: relative;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

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

        .carousel-indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* </CHANGE> */

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.5s both;
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }


        /* Stats Section */
        .stats {
            background: var(--gradient-1);
            padding: 3rem 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            color: white;
            padding: 1.5rem 1rem;
            /* slightly smaller padding */
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            /* smaller, medium responsive text */
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }


        /* Added WhatsApp bot button styles */
        .whatsapp-bot-btn {
            position: fixed;
            /* Updated bottom position to align properly above scroll button (2rem + 55px height + 15px gap) */
            bottom: 102px;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            border: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-bot-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-bot-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
        }

        /* Added chat popup styles */
        .chat-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            animation: fadeIn 0.3s ease;
        }

        .chat-popup-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .chat-popup {
            background: white;
            border-radius: 20px;
            padding: 0;
            max-width: 380px;
            width: 100%;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
            z-index: 9999;
            overflow: hidden;
        }

        .chat-popup-header {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            padding: 1.5rem;
            color: white;
            position: relative;
        }

        .chat-popup-header h3 {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
            color: white;
        }

        .chat-popup-header p {
            font-size: 0.875rem;
            opacity: 0.9;
            margin: 0;
        }

        .chat-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .chat-popup-body {
            padding: 2rem;
        }

        .chat-message {
            background: var(--bg-light);
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .chat-whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .chat-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .chat-whatsapp-btn svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Responsive styles for chat popup */
        @media (max-width: 480px) {
            .whatsapp-bot-btn {
                /* Updated mobile bottom position to align above scroll button (1rem + 45px height + 10px gap) */
                bottom: 71px;
                right: 1rem;
                width: 55px;
                height: 55px;
            }

            .whatsapp-bot-btn svg {
                width: 28px;
                height: 28px;
            }

            .chat-popup {
                max-width: 100%;
                margin: 1rem;
            }

            .chat-popup-header {
                padding: 1.25rem;
            }

            .chat-popup-body {
                padding: 1.5rem;
            }
        }

        /* Solutions Section */
        .solutions {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: var(--bg-white);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-block;
            /* Updated badge background to match logo colors */
            background: rgba(26, 77, 92, 0.1);
            color: var(--primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: var(--text-light);
            line-height: 1.8;
        }

        .solutions-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            gap: 2rem;
        }

        .solution-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .solution-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .solution-card:hover .solution-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .solution-card h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .solution-card .target {
            display: inline-block;
            /* Updated target badge to use accent color */
            background: rgba(95, 212, 184, 0.15);
            color: var(--primary);
            padding: 0.375rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .solution-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .solution-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .solution-link:hover {
            gap: 1rem;
        }

        /* Services Section */
        .services {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: var(--bg-light);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
            gap: 4rem;
            align-items: center;
        }

        .services-image {
            position: relative;
            order: 2;
        }

        .services-image img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .services-content {
            order: 1;
        }

        .services-content h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .service-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .service-item {
            display: flex;
            gap: 1.25rem;
            padding: 1.5rem;
            background: white;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateX(8px);
        }

        .service-item-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .service-item:hover .service-item-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-item-content h4 {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .service-item-content p {
            color: var(--text-light);
            font-size: clamp(0.875rem, 2vw, 0.95rem);
            line-height: 1.6;
        }

        /* Consultations Section */
        .consultations {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: white;
        }

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

        .consultation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .consultation-item {
            background: var(--bg-light);
            padding: 1.75rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .consultation-item:hover {
            background: white;
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .consultation-item::before {
            content: '✓';
            display: block;
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            color: white;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .consultation-item p {
            color: var(--text-dark);
            font-weight: 500;
            font-size: clamp(0.875rem, 2vw, 0.95rem);
        }

        /* Updated Photo Album Section Styles to match reference design */
        .photo-album {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: #fafafa;
        }

        .album-header {
            max-width: 1400px;
            margin: 0 auto 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .album-header h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: #000;
            font-weight: 700;
            margin: 0;
        }

        .view-all-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #000;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.75rem 1.5rem;
            background: #f0f0f0;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .view-all-link:hover {
            background: #e0e0e0;
            gap: 0.75rem;
        }

        .album-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
            gap: 2.5rem;
        }

        .album-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .album-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        .album-image {
            width: 100%;
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        .album-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .album-info {
            padding: 1.5rem;
        }

        .album-date {
            color: #666;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
            display: block;
            font-weight: 500;
        }

        .album-info h3 {
            font-size: 1.25rem;
            color: #000;
            margin-bottom: 1.25rem;
            line-height: 1.5;
            font-weight: 600;
        }

        .view-album-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #000;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 1.25rem;
            background: #f5f5f5;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .view-album-btn:hover {
            background: #e8e8e8;
            gap: 0.75rem;
        }

        /* Updated News Album (Videos) Section Styles to match reference design */
        .news-album {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: white;
        }

        .video-container {
            width: 100%;
            height: 320px;
            position: relative;
            background: #000;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        /* Specialists Section */
        .specialists {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: var(--bg-light);
        }

        .specialists-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
            gap: 2rem;
        }

        .specialist-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .specialist-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .specialist-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .specialist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .specialist-card:hover .specialist-image img {
            transform: scale(1.1);
        }

        .specialist-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gradient-1);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .specialist-info {
            padding: 2rem;
        }

        .specialist-info h3 {
            font-size: clamp(1.125rem, 3vw, 1.375rem);
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .specialist-info .role {
            color: var(--primary);
            font-weight: 600;
            font-size: clamp(0.875rem, 2vw, 0.95rem);
            margin-bottom: 0.75rem;
        }

        .specialist-info .position {
            color: var(--text-light);
            font-size: clamp(0.8rem, 2vw, 0.875rem);
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: clamp(3rem, 8vw, 6rem) 2rem;
            background: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: var(--text-light);
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--bg-light);
            border-radius: 12px;
            transition: all 0.3s ease;
            /* Removed anchor-specific styles, keeping original design */
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        /* CHANGE: Added base styles for contact-detail-icon to enable hover effect */
        .contact-detail-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }


        .contact-detail:hover {
            background: var(--primary);
            color: white;
            transform: translateX(8px);
        }

        .contact-detail:hover .contact-detail-icon {
            background: white;
            color: var(--primary);
        }

        .contact-detail-content h4 {
            font-size: clamp(0.95rem, 2vw, 1rem);
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .contact-detail-content p {
            font-size: clamp(0.875rem, 2vw, 0.95rem);
            margin: 0;
        }

        .contact-form {
            background: var(--bg-light);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 24px;
            box-shadow: var(--shadow-md);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: clamp(0.875rem, 2vw, 0.95rem);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
            background: white;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            /* Updated focus shadow to match logo colors */
            box-shadow: 0 0 0 4px rgba(26, 77, 92, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            width: 100%;
            padding: 1.125rem;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: clamp(0.95rem, 2vw, 1rem);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            min-height: 48px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: clamp(2rem, 6vw, 4rem) 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            /* Updated hover color to match logo */
            background: var(--primary-light);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-size: clamp(1rem, 2vw, 1.125rem);
            margin-bottom: 1.25rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: clamp(0.875rem, 2vw, 1rem);
        }

        .footer-links ul li a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-bottom {

            color: #f1f1f1;
            /* light text for contrast */
            text-align: center;
            padding: 1.5rem 1rem;
            font-size: clamp(0.875rem, 1.2vw, 1rem);
            /* responsive small text */
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            /* spacing between lines */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            /* subtle separator */
        }

        .footer-bottom a {
            color: #f9a825;
            /* accent color for link */
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #ffd740;
            /* lighter hover accent */
        }


        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 55px;
            height: 55px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        /* Enhanced responsive breakpoints */

        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            .hero-content {
                gap: 3rem;
            }

            .solutions-grid,
            .specialists-grid {
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            }
        }

        /* Tablets */
        @media (max-width: 1024px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 3rem 1.5rem;
            }

            .hero-image {
                order: 2;
            }

            .hero-text {
                order: 1;
            }

            .stats {
                margin-top: 0;
            }

            .services-container {
                gap: 3rem;
            }

            .services-image {
                order: 1;
            }

            .services-content {
                order: 2;
            }
        }

        /* Mobile landscape and small tablets */
        @media (max-width: 768px) {

            /* Replaced complex mobile navigation CSS with simple album page version */
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--neutral-white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .logo {
                font-size: 1rem;
            }

            /* Adjusted logo size for smallest screens */
            .logo-icon {
                height: 35px;
            }

            .hero-content {
                padding: 2rem 1rem;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }

            .stats {
                padding: 1.5rem 1rem;
            }

            .stat-item {
                padding: 1.25rem;
            }

            .solutions,
            .services,
            .consultations,
            .specialists,
            .contact {
                padding: 2.5rem 1rem;
            }

            .solution-card,
            .service-item {
                padding: 1.5rem;
            }

            .solution-icon {
                width: 60px;
                height: 60px;
                font-size: 1.75rem;
            }

            .service-item-icon {
                width: 45px;
                height: 45px;
                font-size: 1.25rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .contact-detail {
                padding: 1rem;
            }

            .contact-detail-icon {
                width: 45px;
                height: 45px;
                font-size: 1.25rem;
            }

            .footer-container {
                gap: 2rem;
            }

            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 45px;
                height: 45px;
            }
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Loading Animation */
        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .loading {
            animation: pulse 2s ease-in-out infinite;
        }
    
        /* Keep original stats styles untouched */

        /* Make stat blocks clickable */
        .stat-item {
            cursor: pointer;
        }

        /* Enhanced Popup Styles */
        .popup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .popup-content {
            background: #fff;
            padding: 25px 30px;
            border-radius: 16px;
            max-width: 320px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            animation: slideUp 0.3s ease forwards;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .popup .close {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 26px;
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }

        .popup .close:hover {
            color: #000;
        }

        .popup h3 {
            margin-bottom: 20px;
            font-size: 1.5em;
            color: #333;
        }

        .popup-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Buttons hover + pointer */
        .btn-call,
        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
            color: #fff;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            /* pointer on hover */
        }

        .btn-call {
            background: #007bff;
        }

        .btn-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
        }

        .btn-whatsapp {
            background: #25D366;
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        }

        .icon {
            font-size: 1.2em;
        }

        @media (max-width: 500px) {
            .popup-content {
                width: 90%;
            }
        }
    
        /* Enhanced medium-sized popup */
        #aboutPopup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease forwards;
        }

        #aboutPopup .popup-content {
            background: #fff;
            padding: 30px 35px;
            border-radius: 16px;
            max-width: 500px;
            width: 90%;
            max-height: 80%;
            overflow-y: auto;
            text-align: left;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            transform: translateY(-20px);
            animation: slideUp 0.3s ease forwards;
        }

        #aboutPopup .close {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }

        #aboutPopup .close:hover {
            color: #000;
        }

        #aboutPopup h3 {
            margin-bottom: 15px;
            font-size: 1.8em;
            color: #333;
            text-align: center;
        }

        #aboutPopup p {
            margin-top: 10px;
            line-height: 1.6;
            color: #555;
        }

        /* Added styles for Privacy Policy and Terms of Service popups */
        /* Privacy Policy Popup */
        #privacyPopup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease forwards;
        }

        #privacyPopup .popup-content {
            background: #fff;
            padding: 30px 35px;
            border-radius: 16px;
            max-width: 600px;
            width: 90%;
            max-height: 80%;
            overflow-y: auto;
            text-align: left;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            transform: translateY(-20px);
            animation: slideUp 0.3s ease forwards;
        }

        #privacyPopup .close {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }

        #privacyPopup .close:hover {
            color: #000;
        }

        #privacyPopup h3 {
            margin-bottom: 15px;
            font-size: 1.8em;
            color: #333;
            text-align: center;
        }

        #privacyPopup h4 {
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 1.2em;
            color: #444;
        }

        #privacyPopup p {
            margin-top: 10px;
            line-height: 1.6;
            color: #555;
        }

        #privacyPopup ul {
            margin-left: 20px;
            line-height: 1.8;
            color: #555;
        }

        /* Terms of Service Popup */
        #termsPopup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease forwards;
        }

        #termsPopup .popup-content {
            background: #fff;
            padding: 30px 35px;
            border-radius: 16px;
            max-width: 600px;
            width: 90%;
            max-height: 80%;
            overflow-y: auto;
            text-align: left;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            transform: translateY(-20px);
            animation: slideUp 0.3s ease forwards;
        }

        #termsPopup .close {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }

        #termsPopup .close:hover {
            color: #000;
        }

        #termsPopup h3 {
            margin-bottom: 15px;
            font-size: 1.8em;
            color: #333;
            text-align: center;
        }

        #termsPopup h4 {
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 1.2em;
            color: #444;
        }

        #termsPopup p {
            margin-top: 10px;
            line-height: 1.6;
            color: #555;
        }

        #termsPopup ul {
            margin-left: 20px;
            line-height: 1.8;
            color: #555;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Pointer for link */
        #aboutLink {
            cursor: pointer;
        }

        /* Added cursor pointer for new popup links */
        #privacyLink,
        #termsLink {
            cursor: pointer;
        }

        /* Added phone selection popup styles */
        #phonePopup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease forwards;
        }

        #phonePopup .popup-content {
            background: #fff;
            padding: 25px 30px;
            border-radius: 16px;
            max-width: 320px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            animation: slideUp 0.3s ease forwards;
        }

        #phonePopup .close {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 26px;
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }

        #phonePopup .close:hover {
            color: #000;
        }

        #phonePopup h3 {
            margin-bottom: 20px;
            font-size: 1.5em;
            color: #333;
        }

        #phonePopup .popup-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        #phonePopup .btn-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
            color: #fff;
            background: #007bff;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        #phonePopup .btn-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
        }

        #phonePopup .icon {
            font-size: 1.2em;
        }

        @media (max-width: 500px) {
            #phonePopup .popup-content {
                width: 90%;
            }
        }

        @media (max-width: 600px) {
            #aboutPopup .popup-content {
                width: 95%;
                padding: 25px;
            }

            /* Added responsive styles for new popups */
            #privacyPopup .popup-content,
            #termsPopup .popup-content {
                width: 95%;
                padding: 25px;
            }
        }

        /* Added preloader styles with logo animation */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Updated background gradient to match logo colors - mint green to deep teal */
            background: linear-gradient(135deg, #5DD9C1 0%, #1B9AAA 50%, #0D7377 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            position: relative;
        }

        /* Updated preloader logo to use actual logo image with fade animation */
        .preloader-logo {
            width: 300px;
            max-width: 80vw;
            height: auto;
            margin: 0 auto 20px;
            animation: logoFadeIn 1.5s ease-in-out infinite alternate;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
        }

        .preloader-logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .preloader-tagline {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            font-style: italic;
            margin-top: 20px;
            animation: textFade 2s ease-in-out infinite;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        @keyframes logoFadeIn {
            0% {
                opacity: 0.7;
                transform: scale(0.98);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes textFade {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        @media (max-width: 768px) {
            .preloader-logo {
                width: 250px;
            }

            .preloader-tagline {
                font-size: 0.9rem;
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .preloader-logo {
                width: 200px;
            }

            .preloader-tagline {
                font-size: 0.8rem;
            }
        }

        /* Removed old preloader animation styles */
        /* Popup base */
        .popup3 {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #222;
            color: #fff;
            padding: 14px 20px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        }

        /* Show popup */
        .popup3.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(-10px);
        }

        /* Success and Error colors */
        .popup3.success {
            background-color: #28a745;
            /* green */
        }

        .popup3.error {
            background-color: #dc3545;
            /* red */
        }

        /* Responsive */
        @media (max-width: 600px) {
            .popup {
                bottom: 20px;
                right: 20px;
                font-size: 14px;
                padding: 12px 16px;
            }
        }
   