


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');



        /* ===== CSS VARIABLES ===== */
        :root {
            --primary: #04484E;          /* Changed from #FF6B35 */
            --secondary: #004E89;
            --accent: #F7C948;
            --dark: #1A1A2E;
            --light: #FFFFFF;
            --gray: #64748B;
            --bg-light: #F8FAFC;
            --bg-section: #FFFFFF;
            --gradient: linear-gradient(135deg, #04484E 0%, #F7C948 100%);  /* Changed first color */
            --gradient-blue: linear-gradient(135deg, #004E89 0%, #1A759F 100%);
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        
        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            touch-action: pan-y;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }
        
        nav.scrolled {
            padding: 1rem 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--gradient);
            color: var(--light);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(4, 72, 78, 0.3);
        }
        
        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(4, 72, 78, 0.5);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .hamburger-line {
            width: 100%;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* ===== MOBILE NAVIGATION ===== */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            padding: 6rem 2rem 2rem;
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav-links {
            list-style: none;
            width: 100%;
        }
        
        .mobile-nav-links li {
            margin: 1.5rem 0;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.4s ease;
        }
        
        .mobile-nav.active .mobile-nav-links li {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
        .mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }
        
        .mobile-nav-links a {
            font-size: 1.2rem;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            width: 100%;
        }
        
        .mobile-nav-links a:hover {
            color: var(--primary);
            background: rgba(4, 72, 78, 0.1);
        }
        
        /* ===== PAGE HEADER ===== */
        .page-header {
            background: linear-gradient(135deg, #04484E 0%, #F7C948 100%);
            padding: 180px 0 100px;
            text-align: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .page-header h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
            font-size: 1rem;
        }
        
        .breadcrumb a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .breadcrumb a:hover {
            opacity: 1;
        }
        
        .breadcrumb span {
            opacity: 0.6;
        }
        
        /* ===== TEAM SECTION ===== */
        .team {
            padding: 8rem 3rem;
            background: var(--light);
        }
        
        .section-header {
            max-width: 800px;
            margin: 0 auto 5rem;
            text-align: center;
        }
        
        .section-label {
            display: inline-block;
            background: rgba(4, 72, 78, 0.1);
            color: #04484E;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .section-header h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
        }
        
        .team-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .team-card {
            background: var(--light);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 2px solid var(--bg-light);
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }
        
        .team-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.1);
        }
        
        .team-image.initials {
            background-color: var(--primary);
            color: #fff;
            font-size: 3rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
        }
        
        .team-info {
            padding: 2rem;
            text-align: center;
        }
        
        .team-info h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .team-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .team-description {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .team-social a:hover {
            background: var(--gradient);
            color: var(--light);
            transform: translateY(-3px);
        }
        
        /* ===== VALUES SECTION ===== */
        .values {
            padding: 8rem 3rem;
            background: var(--bg-light);
        }
        
        .values-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        
        .value-card {
            background: var(--light);
            padding: 3rem;
            border-radius: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--light);
            font-size: 2rem;
        }
        
        .value-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .value-card p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        /* ===== STATS SECTION ===== */
        .stats {
            padding: 8rem 3rem;
            background: var(--light);
        }
        
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: var(--bg-light);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .stat-item.animate {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }
        
        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
            background: var(--light);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* ===== CAREERS SECTION ===== */
        .careers {
            padding: 8rem 3rem;
            background: var(--bg-light);
        }
        
        .careers-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .careers-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .careers-content p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .benefits-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .benefits-list li {
            padding: 0.8rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .benefits-list li i {
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .careers-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }
        
        .careers-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            font-family: inherit;
        }
        
        .btn-primary {
            background: var(--gradient);
            color: var(--light);
            box-shadow: 0 10px 30px rgba(4, 72, 78, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(4, 72, 78, 0.5);
        }
        
        .btn-secondary {
            background: var(--light);
            color: var(--dark);
            border: 2px solid var(--dark);
        }
        
        .btn-secondary:hover {
            background: var(--dark);
            color: var(--light);
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 8rem 3rem;
            background: var(--gradient-blue);
            color: var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23ffffff" opacity="0.05"/></svg>');
            background-size: 100% 100px;
            background-repeat: no-repeat;
            background-position: bottom;
             pointer-events: none;
        }
        
        .cta-section h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .cta-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 5rem 3rem 2rem;
        }

        .footer-main {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .footer-brand p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .footer-apps {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-apps a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-apps a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-column h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            color: var(--light);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--gradient);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: block;
            padding: 0.2rem 0;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .nav-cta {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .page-header h1 {
                font-size: 3rem;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .careers-container {
                grid-template-columns: 1fr;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-links-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .cta-section h2 {
                font-size: 2.5rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .value-card {
                padding: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .careers-content h3 {
                font-size: 1.8rem;
            }
            
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-container {
                padding: 0 1.5rem;
            }
            
            .page-header,
            .team,
            .values,
            .stats,
            .careers,
            .cta-section,
            footer {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .footer-links-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-apps {
                flex-direction: column;
            }
            
            .footer-apps a {
                justify-content: center;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .careers-content h3 {
                font-size: 1.8rem;
            }
            
            .team-image {
                height: 250px;
            }
            
            .careers-image img {
                height: 400px;
            }
        }
        
        /* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
        @media (hover: none) and (pointer: coarse) {
            .team-card:hover {
                transform: none;
            }
            
            .value-card:hover {
                transform: none;
            }
            
            .stat-item:hover {
                transform: none;
            }
            
            .btn:hover {
                transform: none;
            }
            
            .nav-cta:hover {
                transform: none;
            }
        }