  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-teal: #6FCFCA;
            --dark-teal: #0F6B7D;
            --light-teal: #E8F6F5;
            --accent-blue: #2BA5C5;
            --white: #FFFFFF;
            --text-dark: #1A2332;
            --text-gray: #5A6C7D;
            --gradient-start: #6FCFCA;
            --gradient-end: #2BA5C5;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 1.2rem 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid rgba(111, 207, 202, 0.1);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 50px;
            height: 50px;
            /*background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));*/
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 800;
            font-style: italic;
            box-shadow: var(--shadow-sm);
        }

        .logo img{
          width: 50px;
        }

        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-teal);
            letter-spacing: -0.02em;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            position: relative;
        }

        nav a:hover {
            color: var(--dark-teal);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--white) !important;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: var(--white) !important;
        }

        .nav-cta::after {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(111, 207, 202, 0.08) 0%, rgba(43, 165, 197, 0.08) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 6% 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: linear-gradient(135deg, rgba(111, 207, 202, 0.08) 0%, rgb(43 165 197 / 35%) 100%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(43, 165, 197, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            max-width: 1400px;
            align-items: center;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--dark-teal);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .hero-text .highlight {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 1.4rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--white);
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--dark-teal);
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-teal);
        }

        .cta-secondary:hover {
            background: var(--light-teal);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(111, 207, 202, 0.2);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-teal);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        .hero-image {
            position: relative;
        }

        .hero-card {
            background: var(--white);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
        }

        .hero-card-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .service-highlight {
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            color: var(--white);
        }

        .service-highlight h3 {
            font-size: 1.1rem;
            color: var(--dark-teal);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .service-highlight p {
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(15, 107, 125, 0.95), transparent);
            padding: 2rem;
            color: var(--white);
        }

        .hero-image-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Section Styles */
        section {
            padding: 7rem 6%;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--white);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark-teal);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.15rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Services Section */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(111, 207, 202, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-teal);
        }

        .service-header {
            padding: 2.5rem 2rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .service-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
            margin: -1px -1px 0 -1px;
        }

        .service-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
            color: var(--white);
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            color: var(--dark-teal);
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .service-content p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .service-features li {
            color: var(--text-dark);
            padding-left: 1.8rem;
            position: relative;
            font-size: 0.95rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--dark-teal);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 1rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 0.8rem;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, rgba(111, 207, 202, 0.05) 0%, rgba(43, 165, 197, 0.05) 100%);
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.8rem;
            color: var(--dark-teal);
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .feature-box {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(111, 207, 202, 0.2);
        }

        .feature-box h4 {
            color: var(--dark-teal);
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .feature-box p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin: 0;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-bottom: 2rem;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(111, 207, 202, 0.1);
        }

        .stat-card .number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-card .label {
            color: var(--text-gray);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .about-cta {
            margin-top: 2rem;
        }

        /* Team Section */
        .team {
            background: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-member {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid rgba(111, 207, 202, 0.15);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-teal);
        }

        .team-photo-wrapper {
            width: 180px;
            height: 180px;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .team-photo {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--white);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-photo i {
            font-size: 4rem;
        }

        .team-photo::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            z-index: -1;
            opacity: 0.3;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-teal);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .team-role {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, rgba(111, 207, 202, 0.05) 0%, rgba(43, 165, 197, 0.05) 100%);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-size: 2.2rem;
            color: var(--dark-teal);
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .contact-info > p {
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 1.2rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid rgba(111, 207, 202, 0.15);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: var(--primary-teal);
            box-shadow: var(--shadow-sm);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-item-content strong {
            display: block;
            color: var(--dark-teal);
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .contact-item-content a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-content a:hover {
            color: var(--dark-teal);
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(111, 207, 202, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            color: var(--dark-teal);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 1px solid rgba(111, 207, 202, 0.3);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 3px rgba(111, 207, 202, 0.1);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 400;
            color: var(--text-dark);
            cursor: pointer;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            cursor: pointer;
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--white);
            padding: 1.2rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            box-shadow: var(--shadow-sm);
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Footer */
        footer {
            background: var(--dark-teal);
            color: var(--white);
            padding: 4rem 6% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            font-style: italic;
        }

        .footer-logo img{
          width: 50px;
        }

        .footer-brand-text {
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .footer-tagline {
            color: rgba(255,255,255,0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact-info a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-contact-info a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content {
                gap: 4rem;
            }

            .hero-text h1 {
                font-size: 3.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 968px) {
            nav ul {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            section {
                padding: 4rem 5%;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease-out;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Selection Color */
        ::selection {
            background: var(--primary-teal);
            color: var(--white);
        }



.logo-text a, .logo img{
    all: unset;
}

.logo img{
    width: 50px;
}

/* ===================================
   MOBILE NAVIGATION STYLES
   =================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--dark-teal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Logo Links */
.logo a,
.logo-text a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover,
.logo-text a:hover {
    opacity: 0.8;
}

.logo a::after,
.logo-text a::after {
    display: none;
}

/* Desktop Navigation (Default) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    white-space: nowrap;
}

/* Medium screens - reduce gap */
@media (max-width: 1200px) and (min-width: 969px) {
    .nav-menu {
        gap: 1.8rem;
    }
}

/* Smaller desktop - further reduce */
@media (max-width: 1100px) and (min-width: 969px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
}

/* ===================================
   RESPONSIVE MOBILE NAVIGATION
   =================================== */

@media (max-width: 968px) {
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide navigation by default on mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    /* Show navigation when active */
    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
    }

    /* Mobile menu items */
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(111, 207, 202, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    /* Mobile menu links */
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Mobile CTA button */
    .nav-cta {
        margin: 1rem 2rem;
        display: inline-block;
        text-align: center;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 1rem 5%;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .logo img {
        width: 40px;
    }

    .nav-menu {
        top: 70px;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}