        :root {
            --primary: #0a4d3c;
            --primary-light: #15695a;
            --accent: #f4a261;
            --accent-light: #e9c46a;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --text: #2d3436;
            --text-light: #636e72;
            --gradient-1: linear-gradient(135deg, #0a4d3c 0%, #15695a 100%);
            --gradient-2: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
            --shadow: 0 20px 60px rgba(10, 77, 60, 0.15);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--light);
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            animation: slideDown 0.6s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--accent);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: 
				width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
				transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: var(--primary);
        }

		nav ul li.nav-cta a {
			background: var(--gradient-1);
			color: white !important;
			padding: 0.7rem 1.5rem;
			border-radius: 50px;
			transition: all 0.3s ease;
		}

		nav ul li.nav-cta a::after {
			display: none;
		}

		nav ul li.nav-cta a:hover {
			transform: translateY(-2px);
			box-shadow: var(--shadow);
			color: white !important;
		}


        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            color: white !important;
        }

        

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a4d3c 0%, #15695a 50%, #0a4d3c 100%);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(233, 196, 106, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .hero .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--gradient-2);
            color: var(--dark);
            box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(244, 162, 97, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.4s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .gallery {
    padding: 80px 0;
}

.logo {
    display: flex;
    align-items: center;

    gap: 8px;              /* reduce spacing */
    font-size: 22px;       /* smaller text */
    font-weight: 700;

    line-height: 1.1;      /* reduce vertical spacing */
    padding: 2px 0;        /* tighter top/bottom */
}

.logo-img {
    height: 50px;   /* reduce from 50px */
    width: auto;
}

.logo span {
    color: #39aad0;    /* BioTech color */
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* OK to keep */
    padding: 10px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column; /* 🔑 forces vertical stack */
}

.logo-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.bhoomi {
    color: #0b5f4b;
}

.biotech {
    color: #2aa0d8;
}

.logo-subtitle {
    font-size: 15px;              /* Bigger */
    font-weight: 500;            /* Medium weight */
    color: #0b5f4b;               /* Brand green */
    margin-top: 3px;
    letter-spacing: 0.4px;       /* Better readability */
    opacity: 0.9;
    white-space: nowrap;
}


.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.team-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #e5e7eb;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #14532d;
}

.team-role {
    display: block;
    font-weight: 600;
    color: #1a5d3a;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
}
.contact-form {
    max-width: 520px;
    margin: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0b5f4b;
    box-shadow: 0 0 0 3px rgba(11, 95, 75, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #0b5f4b, #0f766e);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(11, 95, 75, 0.35);
}
.profile-link {
  display: inline-block;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.profile-link:hover .profile-img {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

        .floating-elements {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .float-card:nth-child(1) {
            top: 0;
            left: 0;
            animation: float 6s ease-in-out infinite;
        }

        .float-card:nth-child(2) {
            top: 40%;
            right: 0;
            animation: float 6s ease-in-out infinite 2s;
        }

        .float-card:nth-child(3) {
            bottom: 0;
            left: 20%;
            animation: float 6s ease-in-out infinite 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .float-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .float-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 4rem 2rem;
            box-shadow: var(--shadow);
            margin-top: -50px;
            position: relative;
            z-index: 2;
        }

        .stats .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            animation: fadeInUp 0.8s ease both;
        }

        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* About Section */
        .about {
            padding: 8rem 2rem;
            background: var(--light);
        }

        .about .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

       /* Main image */
.about-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  cursor: zoom-in;
  transition: transform 0.6s ease;
}

.about-main-image img:hover {
  transform: scale(1.03);
}

/* Thumbnails */
.about-thumbnails {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.about-thumbnails img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.about-thumbnails img:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: #6bcf9c;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


        .section-tag {
            display: inline-block;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .feature-text p {
            font-size: 0.9rem;
            margin: 0;
        }

        /* Services Section */
        .services {
            padding: 8rem 2rem;
            background: white;
        }

        .services .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: var(--light);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
            background: white;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* Values Section */
        .values {
            padding: 8rem 2rem;
            background: var(--gradient-1);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .values::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 80% 20%, rgba(244, 162, 97, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(233, 196, 106, 0.15) 0%, transparent 50%);
        }

        .values .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .values-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .values-header .section-title {
            color: white;
        }

        .values-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .value-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
        }

        .value-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .value-card p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.7;
        }
        .value-card {
    cursor: pointer;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-header .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 18px;
}

.value-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.7s ease, opacity 0.4s ease;
    margin-top: 10px;
}

.value-details.open {
    max-height: 3000px;
    opacity: 1;
}

.value-card.active .arrow {
    transform: rotate(180deg);
}

.value-details h4 {
    margin-top: 16px;
    font-weight: 600;
}


        /* Contact Section */
        .contact {
            padding: 8rem 2rem;
            background: white;
        }

        .contact .container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .contact-item-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-item-text h4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .contact-item-text p {
            color: var(--text-light);
            margin: 0;
            font-size: 1rem;
        }

        .contact-form {
            background: var(--light);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: var(--shadow-sm);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        footer .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .footer-brand span {
            color: var(--accent);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero .container,
            .about .container,
            .contact .container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats .container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .services-grid,
            .values-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
		
		@media (max-width: 768px) {
			.logo-subtitle {
				font-size: 14px;
				letter-spacing: 0.2px;
			}

			.logo-title {
				font-size: 24px;
			}
		}
		.logo-title span {
				margin-left: 4px;
				display: inline-block;
			}
			
/* ================= THANK YOU PAGE ================= */

.thankyou-container {
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Fade In */
.fade-in {
    animation: fadeInPage 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
    }
}

/* Checkmark Animation */

.checkmark {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.checkmark-circle-bg {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 1s ease forwards;
}

.checkmark-check {
    stroke: var(--accent);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.6s ease forwards;
    animation-delay: 1s;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Text Styling */

.thankyou-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.thankyou-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.redirect-text {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ================= THANK YOU PAGE NAV FIX ================= */

.thankyou-page nav {
    height: 60px;              /* compact navbar */
}

.thankyou-page nav .container {
    padding: 6px 20px;         /* reduce vertical space */
}

/* Shrink logo */

.thankyou-page .logo {
    font-size: 20px;
    line-height: 1;
    gap: 6px;
}

.thankyou-page .logo-img {
    height: 32px;
}

/* Reduce subtitle */

.thankyou-page .logo-subtitle {
    font-size: 12px;
    margin-top: 0;
}

/* Re-center thankyou box */

.thankyou-page .thankyou-container {
    min-height: calc(100vh - 60px);
}


.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 10px;
}

.service-details.open {
    max-height: 500px; /* enough for content */
    opacity: 1;
}

.service-details ul {
    padding-left: 18px;
}

.service-details li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    background: #f8fafc;
    border: none;
    cursor: pointer;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 20px;
}


/* style for mobile */

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {

  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
  }

  /* ---------- NAVBAR ---------- */
  nav .container {
    padding: 10px 16px;
  }

  nav ul {
    display: none; /* hide desktop menu */
  }

  .logo-img {
    height: 34px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 12px;
    white-space: normal;
  }

  /* ---------- HERO SECTION ---------- */
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* ---------- FLOATING CARDS ---------- */
  .floating-elements {
    display: none; /* heavy animation → hide on mobile */
  }

  /* ---------- STATS ---------- */
  .stats {
    margin-top: 0;
    padding: 40px 20px;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  /* ---------- ABOUT SECTION ---------- */
  .about {
    padding: 60px 20px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-main-image img {
    height: auto;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* ---------- SERVICES ---------- */
  .services {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 24px;
  }

  /* ---------- VALUES ---------- */
  .values {
    padding: 60px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ---------- TEAM ---------- */
  .team-section {
    padding: 60px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* ---------- GALLERY ---------- */
  .gallery {
    padding: 60px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    padding: 60px 20px;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 24px;
  }

  /* ---------- FOOTER ---------- */
  footer {
    padding: 50px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Popup Background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Register Button */
.register-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.register-btn:hover {
  background: #0056b3;
}

/* ================= CENTER REGISTER FORM ================= */

.register-page {
  min-height: calc(100vh - 160px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px; /* space for fixed navbar */
  padding-bottom: 60px;
}

.register-page .container {
  display: flex !important;
  justify-content: center;
}

.register-page .contact-form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* ================= COMPETENCY TABLE - FULL GREEN BORDERS ================= */

.competency-table {
  overflow-x: auto;
  margin-top: 25px;
}

/* Table Frame */
.competency-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;

  /* Outer Border */
  border: 2px solid #065f46;

  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Header Cells */
.competency-table th {
  background: linear-gradient(135deg, #065f46, #0f766e);
  color: #ffffff;

  padding: 14px 12px;
  text-align: center;
  font-size: 15px;

  /* Green Borders */
  border: 1.5px solid #0f766e;
}

/* Body Cells */
.competency-table td {
  padding: 12px 14px;
  font-size: 14px;
  vertical-align: top;

  /* Green Borders */
  border: 1.5px solid #0f766e;
}

/* Row Hover Effect */
.competency-table tr:hover td {
  background: #ecfdf5;
}

/* Alternate Rows */
.competency-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

/* Mobile Friendly */
@media (max-width: 768px) {

  .competency-table th,
  .competency-table td {
    font-size: 13px;
    padding: 10px;
  }

}

/* Profile / Bio Text Alignment */

.profile-text {
  text-align: justify;        /* Professional block alignment */
  line-height: 1.8;           /* Better readability */
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 25px;
}

/* ================= MOBILE NAVBAR FINAL FIX ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {

    nav .container {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;

        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;

        box-shadow: 0 15px 40px rgba(0,0,0,0.1);

        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 1000;
    }

    nav ul.active {
        transform: translateY(0);
    }

}

/* ============================= */
/* FLAGSHIP HERO VISUAL SYSTEM  */
/* ============================= */

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
    overflow: hidden;
}

/* Particle canvas */
#biotechParticles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Image container */
.workshop-visual-container {
    position: relative;
    width: 520px;
    height: 520px;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Cards */
.workshop-card {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 40px 90px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
    opacity: 0;
    animation: fadeUp 1s forwards;
}

/* Clean layered positioning */
.workshop-card:nth-child(1) { top: 0; left: 150px; }
.workshop-card:nth-child(2) { top: 120px; left: 320px; }
.workshop-card:nth-child(3) { top: 280px; left: 250px; }
.workshop-card:nth-child(4) { top: 300px; left: 40px; }
.workshop-card:nth-child(5) { top: 100px; left: 0; }

.workshop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active focus */
.workshop-card.active {
    transform: scale(1.18) translateZ(100px);
    z-index: 20;
    box-shadow: 0 60px 140px rgba(0,0,0,0.45);
}

/* Biotech glow */
.workshop-card.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(0,255,180,0.35);
}

/* Entrance animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass label */
.workshop-label {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 20px 30px;
    border-radius: 18px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    z-index: 3;
    animation: fadeInLabel 1.5s ease forwards;
}

.workshop-label h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.workshop-label p {
    font-size: 15px;
    opacity: 0.8;
}

@keyframes fadeInLabel {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 85%;
    max-height: 85vh;
    border-radius: 20px;
}

.close-btn {
    position: absolute;
    top: 40px;
    right: 60px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 768px){
    .workshop-visual-container {
        width: 350px;
        height: 350px;
    }
    .workshop-card {
        width: 150px;
        height: 150px;
    }
}

/* =========================
   OUR COLLABORATION SECTION
========================= */

.collaboration-section {
  background: linear-gradient(135deg, #1e5b46, #2f6f58);
  padding: 110px 8%;
  color: #ffffff;
}

.collab-container {
  max-width: 1250px;
  margin: auto;
}

/* HEADER */
.collab-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #f0a65c;
  font-weight: 600;
}

.collab-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 700;
}

.collab-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #e4f0ea;
}

/* GRID */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* CARD */
.collab-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
}

.collab-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* IMAGE */
.collab-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* CONTENT */
.collab-content {
  padding: 30px;
}

.collab-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.collab-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #d9efe5;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .collab-header h2 {
    font-size: 36px;
  }
}