        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-green: #7AB547;
            --dark-green: #5A8A35;
            --light-green: #E8F5E1;
            --accent-yellow: #FFD93D;
            --accent-coral: #FF8B8B;
            --accent-blue: #6BB6D6;
            --text-dark: #2C3E50;
            --text-light: #5A6C7D;
            --warm-white: #FAFAF8;
            --purple-light: #E8D5F2;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--warm-white);
            overflow-x: hidden;
        }
        
        /* Floating Navigation - Modern Healthcare Style */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            z-index: 1000;
            box-shadow: 0 1px 0 rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }
        
        /* Shrink nav on scroll */
        nav.scrolled {
            padding: 0.6rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-nav {
            height: 44px;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        nav.scrolled .logo-nav {
            height: 38px;
        }
        
        .logo-nav:hover {
            opacity: 0.8;
        }
        
        /* Main Navigation Links Container */
        .nav-links {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        
        /* Search Icon */
        .nav-search {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: transparent;
            color: #6B7280;
            transition: all 0.2s;
            cursor: pointer;
            margin-right: 0.5rem;
        }
        
        .nav-search:hover {
            background: rgba(0,0,0,0.04);
            color: var(--primary-green);
        }
        
        /* Regular Navigation Links */
        .nav-links a:not(.hire-badge) {
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.6rem 0.9rem;
            position: relative;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        /* Underline effect on hover */
        .nav-links a:not(.hire-badge)::after {
            content: '';
            position: absolute;
            bottom: 0.4rem;
            left: 0.9rem;
            right: 0.9rem;
            height: 2px;
            background: var(--primary-green);
            transform: scaleX(0);
            transition: transform 0.2s ease;
            transform-origin: center;
        }
        
        .nav-links a:not(.hire-badge):hover {
            color: var(--primary-green);
        }
        
        .nav-links a:not(.hire-badge):hover::after {
            transform: scaleX(1);
        }
        
        /* Active page indicator */
        .nav-links a.active {
            color: var(--primary-green);
        }
        
        .nav-links a.active::after {
            transform: scaleX(1);
        }
        
        /* Primary CTA Button */
        .hire-badge {
            background: var(--primary-green);
            color: white !important;
            padding: 0.65rem 1.4rem !important;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            margin-left: 1rem;
            white-space: nowrap;
            box-shadow: 0 1px 3px rgba(122, 181, 71, 0.2);
        }
        
        .hire-badge:hover {
            background: var(--dark-green);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(122, 181, 71, 0.3);
        }
        
        /* Mobile menu toggle - refined */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #374151;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.2s;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-toggle:hover {
            background: rgba(0,0,0,0.04);
        }
        
        .mobile-menu-toggle.active {
            background: rgba(0,0,0,0.04);
            color: var(--primary-green);
        }
        
        /* Creative Hero Section */
        .hero {
            margin-top: 72px; /* Height of nav */
            min-height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #FAFAF8 0%, #F5F9F2 100%);
            overflow: hidden;
            isolation: isolate;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }
        
        .shape-1 {
            width: 200px;
            height: 200px;
            background: var(--accent-blue);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            background: var(--accent-coral);
            top: 60%;
            right: 15%;
            animation-delay: 5s;
        }
        
        .shape-3 {
            width: 100px;
            height: 100px;
            background: var(--accent-yellow);
            bottom: 20%;
            left: 30%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            isolation: isolate;
        }
        
        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            position: relative;
        }
        
        .hero-text .line-1 {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideIn 0.8s ease-out;
        }
        
        .hero-text .line-2 {
            display: block;
            animation: slideIn 0.8s ease-out 0.2s both;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 1rem;
            animation: fadeIn 1s ease-out 0.4s both;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: fadeIn 1s ease-out 0.6s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 0.8s both;
        }
        
        .btn-blob {
            background: var(--primary-green);
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .btn-blob::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--dark-green);
            transition: all 0.5s;
        }
        
        .btn-blob:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-blob span {
            position: relative;
            z-index: 1;
        }
        
        .btn-blob:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(122, 181, 71, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary-green);
            padding: 1.2rem 2.5rem;
            border: 3px solid var(--primary-green);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .btn-outline:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(122, 181, 71, 0.2);
            background: var(--primary-green);
        }
        
        .hero-visual {
            position: relative;
            animation: fadeIn 1s ease-out 1s both;
            z-index: 2;
            background: transparent;
        }
        
        .hero-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            background: transparent;
            position: relative;
            z-index: 5;
            contain: layout;
        }
        
        .floating-card {
            background: #ffffff;
            background-color: rgb(255, 255, 255);
            padding: 1rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            animation: bobble 3s ease-in-out infinite;
            text-align: center;
            position: relative;
            z-index: 10;
            overflow: hidden;
            border: 1px solid #ffffff;
            will-change: transform;
            backface-visibility: hidden;
        }
        
        .floating-card:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .floating-card:nth-child(3) {
            animation-delay: 1s;
        }
        
        .floating-card:nth-child(4) {
            animation-delay: 1.5s;
        }
        
        @keyframes bobble {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .floating-card:hover {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            background: rgba(255, 255, 255, 1);
        }
        
        .card-icon {
            width: 40px;
            height: 40px;
            background-color: #E8F5E1;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin: 0 auto 0.6rem;
            position: relative;
            z-index: 2;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .card-stat {
            font-size: 1.6rem;
            font-weight: bold;
            color: var(--primary-green);
            margin-bottom: 0.2rem;
            line-height: 1;
            display: block;
        }
        
        .card-label {
            color: var(--text-light);
            font-size: 0.85rem;
            line-height: 1.2;
            display: block;
            margin: 0;
            padding: 0;
        }
        
        /* About Section with Wave */
        .wave-divider {
            position: relative;
            height: 100px;
            background: white;
            margin-top: 0;
            z-index: 1;
        }
        
        .wave-divider svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
        }
        
        .about {
            padding: 5rem 2rem;
            background: white;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-label {
            color: var(--primary-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.4fr 0.6fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }
        
        .about-visual-creative {
            position: relative;
        }

        /* Group photo container - clean cursor indication */
        .about-visual-creative .group-photo-container {
            position: relative;
            overflow: hidden;
            cursor: zoom-in;
            transition: all 0.3s ease;
        }

        .about-visual-creative .group-photo-container:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        /* Image lightbox modal */
        .image-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .image-lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .image-lightbox img {
            max-width: 95vw;
            max-height: 95vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            background: white;
            padding: 10px;
        }

        .image-lightbox .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .image-lightbox .close-btn:hover {
            background: rgba(0,0,0,0.8);
            transform: scale(1.1);
        }
        
        .journey-path {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .journey-path svg {
            width: 100%;
            height: auto;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
            border-radius: 2px;
        }
        
        .highlight-box {
            background: var(--light-green);
            border-left: 4px solid var(--primary-green);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .highlight-box p {
            font-size: 1.2rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .feature-bubbles {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .bubble {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }
        
        .bubble:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(122, 181, 71, 0.3);
        }
        
        /* Services Hexagon Grid */
        .services {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, white 0%, var(--light-green) 100%);
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
            position: relative;
        }
        
        .service-hex {
            background: white;
            border-radius: 30px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
        }
        
        .service-hex::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-coral), var(--accent-yellow));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .service-hex:hover::before {
            transform: scaleX(1);
        }
        
        .service-hex:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
            animation: wiggle 2s ease-in-out infinite;
        }
        
        .service-hex:nth-child(odd) .service-emoji {
            animation-delay: 0.5s;
        }
        
        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(3deg); }
            75% { transform: rotate(-3deg); }
        }
        
        .service-hex h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .service-hex p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        /* Team Carousel Section */
        .team {
            padding: 5rem 2rem;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .team::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--purple-light);
            opacity: 0.3;
        }
        
        .team-carousel {
            max-width: 1200px;
            margin: 3rem auto 0;
            position: relative;
        }
        
        .team-track {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 2rem 0;
        }

        .team-member {
            background: linear-gradient(135deg, white 0%, var(--warm-white) 100%);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s;
            transform-style: preserve-3d;
        }

        @media (max-width: 1024px) {
            .team-track {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .team-track {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }
        
        .team-member:hover {
            transform: scale(1.05) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .member-header {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .member-pattern {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
            position: relative;
        }
        
        .member-pattern::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            opacity: 0.2;
        }
        
        .member-avatar {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Style for image avatars - position them in the center of the header */
        .member-avatar img,
        img.member-avatar {
            position: absolute;
            top: 52%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 233px;
            height: 168px;
            object-fit: cover;
            object-position: center top;
            border-radius: 11%;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            bottom: auto;
        }
        
        .tenure-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: white;
            color: var(--primary-green);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .member-content {
            padding: 3rem 2rem 2rem;
            text-align: center;
        }
        
        .member-name {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }
        
        .member-role {
            color: var(--primary-green);
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .member-quote {
            color: var(--text-light);
            line-height: 1.7;
            font-style: italic;
            font-size: 0.95rem;
        }
        
        /* Careers Interactive Section */
        .careers {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--purple-light) 0%, white 50%, var(--light-green) 100%);
            position: relative;
        }
        
        .careers-hero-creative {
            max-width: 900px;
            margin: 0 auto 3rem;
            text-align: center;
            position: relative;
        }
        
        .careers-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
        }
        
        .careers-title span {
            background: linear-gradient(90deg, var(--accent-coral), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .salary-banner {
            background: white;
            border-radius: 100px;
            padding: 2rem 3rem;
            display: inline-flex;
            align-items: center;
            gap: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin: 2rem 0;
            transition: all 0.3s;
        }
        
        .salary-banner:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .salary-amount {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .salary-text {
            text-align: left;
        }
        
        .salary-text strong {
            display: block;
            color: var(--text-dark);
            font-size: 1.2rem;
        }
        
        .salary-text span {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.2rem;
            max-width: 1100px;
            margin: 3rem auto;
            padding: 0 1rem;
        }
        
        @media (min-width: 900px) {
            .benefits-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        
        @media (min-width: 600px) and (max-width: 899px) {
            .benefits-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 599px) {
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        .benefit-card {
            padding: 1.2rem;
            border-radius: 20px;
            text-align: center;
            position: relative;
            transition: all 0.4s;
            cursor: pointer;
            background: white;
            border: 3px solid var(--light-green);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(122, 181, 71, 0.1);
            transition: all 0.5s;
            z-index: -1;
        }
        
        .benefit-card:hover::before {
            width: 100%;
            height: 100%;
            border-radius: 20px;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .benefit-icon {
            font-size: 2.2rem;
            margin-bottom: 0.7rem;
        }
        
        .benefit-title {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .benefit-desc {
            color: var(--text-light);
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .apply-section {
            text-align: center;
            margin-top: 4rem;
        }
        
        .apply-btn-creative {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .apply-btn-creative::before {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: right 0.3s;
        }
        
        .apply-btn-creative:hover {
            padding-right: 4rem;
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(122, 181, 71, 0.4);
        }
        
        .apply-btn-creative:hover::before {
            right: 2rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, #1a2332 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(122, 181, 71, 0.1) 0%, transparent 70%);
        }
        
        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 25px;
            transition: all 0.3s;
        }
        
        .contact-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .contact-card h3 {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .contact-card-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .contact-info-item {
            margin: 1rem 0;
            padding-left: 1rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-slogan {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--primary-green);
            margin-bottom: 2rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: var(--primary-green);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        
        .mobile-menu-toggle:hover {
            transform: rotate(90deg);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 0.6rem 0.8rem;
            }
            
            .logo-nav {
                height: 36px;
                margin-right: 1rem;
            }
            
            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.5rem;
                border-radius: 20px;
                margin-top: 1rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                gap: 0.5rem;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
            }
            
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 1rem !important;
                margin: 0 !important;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-visual {
                margin-top: 2rem;
            }
            
            .about-content-wrapper {
                grid-template-columns: 1fr;
            }
            
            .salary-banner {
                flex-direction: column;
                padding: 1.5rem;
            }
            
            .contact-cards {
                grid-template-columns: 1fr;
            }
            
            /* Contact Section Responsive Styles */
            .contact-info-container {
                padding: 1.5rem !important;
                border-radius: 20px !important;
            }
            
            .contact-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            
            .contact-info-container h3 {
                font-size: 1.1rem !important;
            }
            
            .contact-info-container p {
                font-size: 0.9rem !important;
            }
        }
        
        @media (max-width: 480px) {
            /* Extra small screens */
            .contact-info-container {
                padding: 1rem !important;
                margin: 0 1rem !important;
            }
            
            .contact-grid {
                gap: 1.5rem !important;
            }
            
            .contact-info-container h3 {
                font-size: 1rem !important;
            }
            
            .contact-info-container p {
                font-size: 0.85rem !important;
            }
        }
  
            /* Services Story Container */
            .services-story-container {
                max-width: 900px;
                margin: 3rem auto;
                padding: 0 2rem;
                position: relative;
            }
            
            /* Service Rows */
            .service-row {
                position: relative;
                margin-bottom: 3rem;
            }
            
            .service-row.last {
                margin-bottom: 0;
            }
            
            /* Service Content */
            .service-content {
                display: flex;
                align-items: center;
                gap: 2rem;
                position: relative;
            }
            
            .service-content.left {
                justify-content: flex-start;
            }
            
            .service-content.right {
                justify-content: flex-end;
            }
            
            /* Service Icon Circle */
            .service-icon-circle {
                width: 100px;
                height: 100px;
                background: white;
                border: 3px solid;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2.5rem;
                flex-shrink: 0;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                transition: all 0.3s;
            }
            
            /* Icon circle border colors */
            .service-row:nth-child(1) .service-icon-circle {
                border-color: var(--primary-green);
            }
            
            .service-row:nth-child(2) .service-icon-circle {
                border-color: var(--accent-blue);
            }
            
            .service-row:nth-child(3) .service-icon-circle {
                border-color: var(--accent-coral);
            }
            
            .service-row:nth-child(4) .service-icon-circle {
                border-color: var(--yellow-accent);
            }
            
            .service-row:nth-child(5) .service-icon-circle {
                border-color: var(--purple-light);
            }
            
            .service-row:nth-child(6) .service-icon-circle {
                border-color: var(--accent-blue);
            }
            
            .service-row:nth-child(7) .service-icon-circle {
                border-color: var(--primary-green);
            }
            
            .service-row:nth-child(8) .service-icon-circle {
                border-color: var(--accent-blue);
            }
            
            /* Service Text */
            .service-text {
                max-width: 500px;
                background: white;
                padding: 2rem;
                border-radius: 20px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.08);
                transition: all 0.3s;
                border: 3px solid;
            }
            
            /* Border colors matching icon circles */
            .service-row:nth-child(1) .service-text {
                border-color: var(--primary-green);
            }
            
            .service-row:nth-child(2) .service-text {
                border-color: var(--accent-blue);
            }
            
            .service-row:nth-child(3) .service-text {
                border-color: var(--accent-coral);
            }
            
            .service-row:nth-child(4) .service-text {
                border-color: var(--yellow-accent);
            }
            
            .service-row:nth-child(5) .service-text {
                border-color: var(--purple-light);
            }
            
            .service-row:nth-child(6) .service-text {
                border-color: var(--accent-blue);
            }
            
            .service-row:nth-child(7) .service-text {
                border-color: var(--primary-green);
            }
            
            .service-row:nth-child(8) .service-text {
                border-color: var(--accent-blue);
            }
            
            .service-text h3 {
                color: var(--text-dark);
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }
            
            .service-text p {
                color: var(--text-light);
                line-height: 1.6;
                margin: 0;
            }
            
            /* Connecting Lines */
            .service-connector {
                position: absolute;
                left: 50%;
                bottom: -3rem;
                width: 2px;
                height: 3rem;
                background: linear-gradient(to bottom, var(--light-green), transparent);
                transform: translateX(-50%);
            }
            
            /* Hover Effects */
            .service-content:hover .service-icon-circle {
                transform: scale(1.1);
                box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            }
            
            .service-content:hover .service-text {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            }
            
            /* Mobile Responsive */
            @media (max-width: 768px) {
                .service-content {
                    flex-direction: column;
                    text-align: center;
                }

                .service-content.left,
                .service-content.right {
                    justify-content: center;
                    align-items: center;
                }

                .service-text {
                    padding: 1.5rem;
                }

                .service-icon-circle {
                    width: 80px;
                    height: 80px;
                    font-size: 2rem;
                }

                .service-connector {
                    display: none;
                }
            }

            /* Modal Styles */
            .modal {
                display: none;
                position: fixed;
                z-index: 2000;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                overflow: auto;
                background-color: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(5px);
                animation: fadeIn 0.3s ease;
            }

            .modal.active {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .modal-content {
                background-color: white;
                margin: auto;
                padding: 0;
                border-radius: 25px;
                max-width: 800px;
                width: 90%;
                max-height: 90vh;
                overflow: hidden;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
                animation: slideUp 0.3s ease;
                position: relative;
            }

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

            .modal-close {
                position: absolute;
                right: 20px;
                top: 20px;
                color: var(--text-light);
                font-size: 2rem;
                font-weight: bold;
                cursor: pointer;
                z-index: 10;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.05);
                transition: all 0.3s;
            }

            .modal-close:hover,
            .modal-close:focus {
                background: var(--primary-green);
                color: white;
                transform: rotate(90deg);
            }

            .modal-body {
                padding: 2rem;
                max-height: 85vh;
                overflow-y: auto;
            }

            @media (max-width: 768px) {
                .modal-content {
                    width: 95%;
                    max-height: 95vh;
                }

                .modal-body {
                    padding: 1.5rem;
                }
            }
