    :root {
      --primary: #0f172a;
      --secondary: #6d28d9;
      --accent: #22c55e;
      --gold: #f59e0b;
      --light: rgba(255,255,255,0.08);
      --text: #f8fafc;
      --muted: #cbd5e1;
      --card-border: rgba(255,255,255,0.12);
      --glass: rgba(255,255,255,0.08);
      --shadow: 0 10px 40px rgba(0,0,0,0.35);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
	.text-white{
		color:#fff !important;
	}
    body {
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(rgba(15,23,42,0.78), rgba(15,23,42,0.92)),
     /*url('https://images.unsplash.com/photo-1468327768560-75b778cbb551?auto=format&fit=crop&w=1920&q=80') center/cover fixed;*/
	 url('images/genesis_bg.jpg') center/cover fixed;
      color: var(--text);
      overflow-x: hidden;
    }	
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(109,40,217,0.22), transparent 35%),
        radial-gradient(circle at bottom left, rgba(34,197,94,0.18), transparent 30%);
      z-index: -1;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    section {
      padding: 60px 8%;
    }

.bg-img{
	background-image: url('images/home_bg.png');
	background-repeat:no-repeat;
	background-size:cover;
}
 .transparent-bg{
	 background-color:#333;
	 opacity:0.4
 }.life-journey{
	background-image: url('gallery/awards/award1.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

/* =========================
HERO SECTION
========================= */
.hero{
  position:relative;

  width:100%;
  min-height:100vh;

  display:flex;
  align-items:center;

  padding:120px 8%;

  overflow:hidden;

  background:
  linear-gradient(
    to right,
    rgba(7,12,25,0.88) 15%,
    rgba(7,12,25,0.55) 45%,
    rgba(7,12,25,0.25) 100%
  ),

  url('your-image.jpg');

  background-size:cover;
  background-position:center;
}

/* =========================
OVERLAY
========================= */
.hero-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top left,
  rgba(124,58,237,0.22),
  transparent 40%);

  pointer-events:none;
}

/* =========================
CONTENT
========================= */
.hero-content{
  position:relative;
  z-index:2;

  max-width:760px;
}

/* =========================
TAG
========================= */
.hero-tag{
  display:inline-block;

  color:#ffffff;
  font-size:14px;
  font-weight:600;
  letter-spacing:3px;

  margin-bottom:22px;

  text-transform:uppercase;

  padding:10px 18px;

  border-radius:40px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(10px);
}

/* =========================
TITLE
========================= */
.hero-content h1{
  font-size:clamp(3rem,7vw,5.5rem);

  line-height:1.1;

  font-weight:700;

  color:white;

  margin-bottom:28px;
}

/* HIGHLIGHT */
.hero-content h1 span{
  color:#c4b5fd;
}

/* =========================
PARAGRAPH
========================= */
.hero-content p{
  font-size:1.12rem;

  line-height:1.9;

  color:rgba(255,255,255,0.86);

  margin-bottom:38px;

  max-width:720px;
}

/* =========================
BUTTONS
========================= */
.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;

  margin-bottom:55px;
}

/* BUTTON */
.btn{
  padding:16px 34px;

  border-radius:50px;

  text-decoration:none;

  font-size:15px;
  font-weight:600;

  transition:0.35s ease;
}

/* PRIMARY */
.primary-btn{
  background:linear-gradient(135deg,#7c3aed,#f59e0b);

  color:white;

  box-shadow:0 12px 30px rgba(124,58,237,0.35);
}

/* PRIMARY HOVER */
.primary-btn:hover{
  transform:translateY(-5px);
}

/* SECONDARY */
.secondary-btn{
  border:1px solid rgba(255,255,255,0.2);

  background:rgba(255,255,255,0.08);

  backdrop-filter:blur(12px);

  color:white;
}

/* SECONDARY HOVER */
.secondary-btn:hover{
  background:rgba(255,255,255,0.16);

  transform:translateY(-5px);
}

/* =========================
STATS
========================= */
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:20px;
}

/* STAT CARD */
.stat-box{
  padding:26px 22px;

  border-radius:22px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(16px);

  transition:0.35s ease;
}

/* HOVER */
.stat-box:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.12);
}

/* NUMBER */
.stat-box h2{
  font-size:2.2rem;
  color:#f59e0b;

  margin-bottom:8px;
}

/* LABEL */
.stat-box span{
  color:rgba(255,255,255,0.78);

  font-size:15px;
}

/* =========================
MOBILE
========================= */
@media(max-width:768px){

  .hero{
    padding:130px 24px 80px;
    min-height:auto;
    background-position:center;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-content h1{
    font-size:3rem;
  }

  .hero-content p{
    font-size:1rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .hero-stats{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:500px){

  .hero-stats{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:2.5rem;
  }
}



  /* =========================
HEADER
========================= */
.header{
  width:100%;
  position:sticky;
  top:0;
  z-index:9999;

  background:rgba(15,23,42,0.92);
  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* =========================
NAVBAR
========================= */
.navbar{
  max-width:1400px;
  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 30px;

  position:relative;
}

/* =========================
LOGO
========================= */
.logo{
  color:white;
  font-size:1.5rem;
  font-weight:700;
}

.logo span{
  color:#f59e0b;
}

/* =========================
MENU
========================= */
.menu{
  display:flex;
  align-items:center;
  gap:10px;

  list-style:none;
}

/* MENU ITEM */
.menu > li{
  position:relative;
}

/* MENU LINK */
.menu > li > a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:10px;
  color:white;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  transition:0.35s ease;
}

/* HOVER */
.menu > li > a:hover{
  background:linear-gradient(135deg,#7c3aed,#f59e0b);
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(124,58,237,0.35);
}

/* =========================
SUBMENU
========================= */
.submenu{
  position:absolute;
  top:115%;
  left:0;
  min-width:260px;
  background:#111827;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  padding:14px 0;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:0.35s ease;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

/* SHOW SUBMENU */
.dropdown:hover .submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* SUBMENU LINK */
.submenu li a{
  display:block;
  padding:14px 22px;
  color:#cbd5e1;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;  border-bottom:1px solid rgba(255,255,255,0.06);
  }

/* SUBMENU HOVER */
.submenu li a:hover{
  background:rgba(255,255,255,0.06);
  color:white;
  border-bottom: 1px solid;
  border-image: linear-gradient(135deg, #7c3aed, #f59e0b) 1;
  padding-left:28px;
}

/* =========================
HAMBURGER
========================= */
.menu-toggle{
  display:none;

  color:white;
  font-size:2rem;

  cursor:pointer;

  user-select:none;
}

/* =========================
MOBILE
========================= */
@media(max-width:1100px){

  /* SHOW HAMBURGER */
  .menu-toggle{
    display:block;
  }

  /* MOBILE MENU */
  .menu{
    position:absolute;

    top:100%;
    left:0;

    width:100%;

    background:#0f172a;

    flex-direction:column;

    padding:20px;

    gap:14px;

    display:none;

    border-top:1px solid rgba(255,255,255,0.08);
  }

  /* ACTIVE MENU */
  .menu.active{
    display:flex;
  }

  /* FULL WIDTH */
  .menu > li{
    width:100%;
  }

  .menu > li > a{
    width:100%;
    justify-content:flex-start;
  }

  /* MOBILE SUBMENU */
  .submenu{
    position:relative;

    top:10px;

    width:100%;

    opacity:1;
    visibility:visible;

    transform:none;

    display:none;

    background:#111827;
  }

  /* SHOW SUBMENU */
  .dropdown:hover .submenu{
    display:block;
  }
}

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
    }

    .hero-content {
      max-width: 900px;
      animation: fadeUp 1.2s ease;
    }

    .hero-subtitle {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .hero h1 {
      font-size: clamp(2rem, 3vw, 4rem);
      line-height: 0.95;
      margin-bottom: 20px;
    }

    .hero h1 span {
      background: linear-gradient(90deg, #fff, #c4b5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.15rem;
      margin-bottom: 35px;
      max-width: 430px;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 600;
      transition: 0.35s;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--secondary), #8b5cf6);
      color: white;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      transform: translateY(-4px);
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.05);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 20px;
      margin-top: 60px;
    }

    .stat-card,
    .card {
      background: var(--glass);
      backdrop-filter: blur(14px);
      border: 1px solid var(--card-border);
      border-radius: 24px;
      padding: 28px;
      transition: 0.4s;
    }

    .stat-card:hover,
    .card:hover {
      transform: translateY(-8px);
    }

    .stat-card h3 {
      font-size: 2.5rem;
      color: var(--gold);
    }

    /* SECTION */
    .section-title {
      text-align: center;
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 20px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 750px;
      margin: 0 auto 60px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 25px;
    }

    .card h3 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
    }
   
    /* QUOTE */
    .quote {
      text-align: center;
      padding: 70px;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(109,40,217,0.22), rgba(255,255,255,0.06));
      backdrop-filter: blur(14px);
    }

    .quote p {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-style: italic;
      margin-bottom: 20px;
    }

    .quote h4 {
      color: var(--gold);
    }

    /* CONTACT */
    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .contact-info h3,
    .contact-form h3 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .contact-info p {
      margin-bottom: 15px;
      color: var(--muted);
      line-height: 1.8;
    }

    .contact-info a {
      color: var(--gold);
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .input-group input,
    .input-group textarea {
      width: 100%;
      padding: 16px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      color: white;
      outline: none;
    }

    .input-group input::placeholder,
    .input-group textarea::placeholder {
      color: #cbd5e1;
    }

    .input-group input:focus,
    .input-group textarea:focus {
      border-color: var(--gold);
    }

    .contact-form button {
      border: none;
      cursor: pointer;
    }

     /* FOOTER */
    footer {
      text-align: center;
      padding: 15px 20px;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: var(--muted);
      background: rgba(15,23,42,0.5);
      font-size:14px;
    }

    /* ANIMATION */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      section {
        padding: 80px 6%;
      }
    }
       /*/about*/
    /* ABOUT SECTION */
.about-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 55px;
  align-items: center;
  margin-top: 70px;
}

.about-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(109,40,217,0.25), rgba(245,158,11,0.18));
  z-index: 0;
  filter: blur(18px);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border: 3px solid rgba(255,255,255,0.12);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  padding: 45px;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 22px;
  color: white;
  line-height: 1.2;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.9;
  font-size: 1.03rem;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
  margin-top: 35px;
}

.highlight-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px 15px;
  text-align: center;
  border-radius: 18px;
  transition: 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-6px);
  border-color: rgba(245,158,11,0.3);
}

.highlight-box span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.highlight-box small {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content {
    padding: 35px;
  }

  .about-content h3 {
    font-size: 2.1rem;
  }

  .about-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .about-content {
    padding: 28px 22px;
  }

  .about-content h3 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.98rem;
  }

  .highlight-box span {
    font-size: 1.6rem;
  }
}



/* =========================
GENESIS SECTION
========================= */
.genesis-section{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  padding:60px 8%;
  display:flex;
  align-items:center;  
}

/* =========================
OVERLAY
========================= */
.genesis-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top left,
  rgba(168,85,247,0.18),
  transparent 35%);

  pointer-events:none;
}

/* =========================
FLOATING GLOW
========================= */
.orchid-glow{
  position:absolute;

  border-radius:50%;

  filter:blur(80px);

  opacity:0.25;

  animation:floatGlow 8s ease-in-out infinite;
}

.orchid-glow-1{
  width:300px;
  height:300px;

  background:#c026d3;

  top:8%;
  right:8%;
}

.orchid-glow-2{
  width:220px;
  height:220px;

  background:#7c3aed;

  bottom:10%;
  left:5%;

  animation-delay:2s;
}

/* FLOAT ANIMATION */
@keyframes floatGlow{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-25px);
  }

  100%{
    transform:translateY(0px);
  }
}

/* =========================
CONTAINER
========================= */
.genesis-container{
  position:relative;
  z-index:2;
  width:100%;
}

/* =========================
CONTENT BOX
========================= */

/* =========================
TITLE
========================= */
.genesis-content h1{
  font-size:clamp(2rem,2vw,2rem);
  line-height:1.1;
  font-weight:700;
  color:white;
  margin-bottom:20px;
  text-align:center
}

/* TITLE HIGHLIGHT */
.genesis-content h1 span{
  color:#d8b4fe;
  margin-top:10px;
}

/* =========================
PARAGRAPH
========================= */
.genesis-content p{
  color:rgba(255,255,255,0.88);

  font-size:1.08rem;

  line-height:2;

  margin-bottom:26px;
}

/* =========================
HIGHLIGHT BOX
========================= */
.highlight-box{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:20px;

  margin-top:40px;
}

/* ITEM */
.highlight-item{
  padding:28px 20px;

  border-radius:24px;

  text-align:center;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  transition:0.35s ease;
}

/* HOVER */
.highlight-item:hover{
  transform:translateY(-8px);

  background:rgba(255,255,255,0.12);
}

/* NUMBER */
.highlight-item h2{
  font-size:2.3rem;

  color:#f59e0b;

  margin-bottom:10px;
}

/* TEXT */
.highlight-item span{
  color:rgba(255,255,255,0.75);

  font-size:14px;

  line-height:1.5;
}

/* =========================
MOBILE
========================= */
@media(max-width:992px){

  .genesis-section{
    padding:40px 24px;
  }

  .genesis-content{
    padding:40px 30px;
  }

  .highlight-box{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){

  .genesis-content h1{
    font-size:2.5rem;
  }

  .genesis-content p{
    font-size:1rem;
    line-height:1.8;
  }

  .section-tag{
    font-size:11px;
    letter-spacing:1px;
  }
}

.foxtail-highlight{
  position:relative;
  padding:35px 40px;
  border-radius:32px;
  overflow:hidden;
margin-bottom:15px;
  background:
  linear-gradient(
    135deg,
    rgba(192,38,211,0.22),
    rgba(124,58,237,0.16),
    rgba(245,158,11,0.10)
  );

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(18px);

  box-shadow:0 20px 60px rgba(0,0,0,0.28);

  text-align:center;
}

/* GLOW EFFECT */
.foxtail-highlight::before{

  content:"";

  position:absolute;

  width:280px;
  height:280px;

  background:rgba(236,72,153,0.20);

  border-radius:50%;

  top:-140px;
  right:-100px;

  filter:blur(90px);
}

/* BADGE */
.foxtail-badge{

  position:relative;
  z-index:2;

  display:inline-block;

  padding:10px 22px;

  border-radius:40px;

  background:rgba(255,255,255,0.10);

  border:1px solid rgba(255,255,255,0.15);

  color:#ffffff;

  font-size:13px;
  font-weight:600;

  letter-spacing:2px;

  text-transform:uppercase;

  margin-bottom:24px;
}

/* TITLE */
.foxtail-highlight h2{

  position:relative;
  z-index:2;

  font-size:clamp(2.4rem,5vw,4rem);

  color:#f9a8d4;

  margin-bottom:18px;

  font-weight:700;

  line-height:1.2;

  text-shadow:0 8px 30px rgba(236,72,153,0.35);
}

/* TEXT */
.foxtail-highlight p{

  position:relative;
  z-index:2;

  color:rgba(255,255,255,0.92);

  font-size:1.15rem;

  line-height:1.8;

  letter-spacing:0.3px;
}

/* =========================
MOBILE
========================= */
@media(max-width:768px){

  .foxtail-highlight{
    padding:35px 24px;
  }

  .foxtail-highlight h2{
    font-size:2.2rem;
  }

  .foxtail-highlight p{
    font-size:1rem;
  }
}
 
/* =========================
TIMELINE SECTION
========================= */
.timeline-section{

  position:relative;

  padding:120px 8%;

  overflow:hidden;
}

/* =========================
HEADER
========================= */
.timeline-header{

  text-align:center;

  max-width:900px;

  margin:auto auto 50px;
}

.timeline-header h1{

  font-size:clamp(3rem,6vw,5rem);

  color:white;

  margin:20px 0;
}

.timeline-header h1 span{
  color:#d8b4fe;
}

.timeline-header p{

  color:rgba(255,255,255,0.78);

  line-height:2;

  font-size:1.08rem;
}

/* =========================
TIMELINE WRAPPER
========================= */
.timeline-wrapper{

  position:relative;

  max-width:1100px;

  margin:auto;
}

/* CENTER LINE */
.timeline-wrapper::before{

  content:"";

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:4px;
  height:100%;

  background:
  linear-gradient(
    to bottom,
    #7c3aed,
    #f59e0b
  );

  border-radius:20px;
}

/* =========================
ITEM
========================= */
.timeline-item{

  position:relative;

  width:50%;

  padding:0 50px 70px;
}

/* LEFT */
.timeline-item:nth-child(odd){
  left:0;
  text-align:right;
}

/* RIGHT */
.timeline-item:nth-child(even){
  left:50%;
}

/* DOT */
.timeline-item::before{

  content:"";

  position:absolute;

  top:12px;

  width:22px;
  height:22px;

  border-radius:50%;

  background:#f59e0b;

  border:5px solid #7c3aed;

  z-index:2;
}

/* DOT POSITION */
.timeline-item:nth-child(odd)::before{
  right:-12px;
}

.timeline-item:nth-child(even)::before{
  left:-10px;
}

/* =========================
YEAR
========================= */
.timeline-year{

  display:inline-block;

  padding:12px 22px;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    rgba(124,58,237,0.25),
    rgba(245,158,11,0.18)
  );

  border:1px solid rgba(255,255,255,0.10);

  color:#f8fafc;

  font-weight:600;

  margin-bottom:24px;
}

/* =========================
CONTENT BOX
========================= */
.timeline-content{

  padding:35px;

  border-radius:30px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  transition:0.35s ease;
}

/* HOVER */
.timeline-content:hover{

  transform:translateY(-8px);

  background:rgba(255,255,255,0.10);
}

/* TITLE */
.timeline-content h3{

  color:white;

  font-size:1.5rem;

  margin-bottom:18px;
}

/* TEXT */
.timeline-content p{

  color:rgba(255,255,255,0.78);

  line-height:1.9;

  font-size:1rem;
}

/* =========================
MOBILE
========================= */
@media(max-width:992px){

  .timeline-wrapper::before{
    left:20px;
  }

  .timeline-item{
    width:100%;
    left:0 !important;

    padding-left:70px;
    padding-right:0;

    text-align:left !important;
  }

  .timeline-item::before{
    left:9px !important;
  }

  .timeline-header{
    margin-bottom:60px;
  }
}


/* =========================
PROJECT SECTION
========================= */
.projects-section{
  padding:60px 8%;
  position:relative;
  }

/* =========================
GRID
========================= */
.projects-grid{

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

  gap:30px;

  margin-top:70px;
}

/* =========================
CARD
========================= */
.project-card{

  position:relative;

  padding:40px;

  border-radius:32px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:0.35s ease;
}

/* HOVER */
.project-card:hover{

  transform:translateY(-10px);

  background:rgba(255,255,255,0.10);
}

/* TOP GLOW */
.project-card::before{

  content:"";

  position:absolute;

  width:220px;
  height:220px;

  background:rgba(124,58,237,0.14);

  border-radius:50%;

  top:-120px;
  right:-100px;

  filter:blur(70px);
}

/* =========================
BADGE
========================= */
.project-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:40px;
  background:linear-gradient(135deg, rgb(124 58 237 / 69%), rgb(245 158 11 / 49%));
  border:1px solid rgba(255,255,255,0.10);
  color:#ffffff;
  font-size:13px;
  font-weight:600;

  letter-spacing:1px;

  margin-bottom:26px;
}

/* =========================
TITLE
========================= */
.project-card h2{
  color:white;
  font-size:1.8rem;
  line-height:1.4;
  margin-bottom:18px;
 }

/* =========================
DURATION
========================= */
.project-duration{

  color:#f59e0b;

  font-weight:600;

  margin-bottom:22px;
}

/* =========================
TEXT
========================= */
.project-card p{

  color:rgba(255,255,255,0.78);

  line-height:1.9;

  margin-bottom:20px;
}

/* =========================
OUTCOME BOX
========================= */
.project-outcome{

  margin-top:25px;

  padding:25px;

  border-radius:22px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);
}

/* OUTCOME TITLE */
.project-outcome h4{

  color:#d8b4fe;

  font-size:1.1rem;

  margin-bottom:14px;
}

/* =========================
MOBILE
========================= */
@media(max-width:768px){

  .projects-section{
    padding:90px 24px;
  }

  .project-card{
    padding:30px;
  }

  .project-card h2{
    font-size:1.5rem;
  }
}

/* GALLERY */
.gallery-container h1{
	margin:10px 0px;
	text-align:center;
}
.gallery-container p{
	text-align:center;
}
/* TABS */
    .tabs {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin: 35px 0;
      padding: 0 20px;
    }

    .tab-btn {
      padding: 14px 26px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: var(--glass);
      color: white;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: linear-gradient(135deg, var(--purple), var(--gold));
    }
    .gallery-section {
      display: none;
      padding: 10px 8% 80px;
    }

    .gallery-section.active {
      display: block;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .gallery-item {
      background: var(--glass);
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: 0.35s;
      position: relative;
    }

    .gallery-item:hover {
      transform: translateY(-8px);
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    .gallery-item video {
      pointer-events: none;
    }

    .gallery-item h3 {
      padding: 16px;
      text-align: center;
      font-size: 1rem;
    }

    .video-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0,0,0,0.7);
      color: white;
      padding: 6px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
    }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      justify-content: center;
      align-items: center;
      z-index: 99999;
    }

    .lightbox.active {
      display: flex;
    }

    #lightbox-media {
      max-width: 88%;
      max-height: 82vh;
      object-fit: contain;
      border-radius: 16px;
      background: black;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2.5rem;
      color: white;
      cursor: pointer;
      z-index: 100001;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 14px 18px;
      cursor: pointer;
      border-radius: 50%;
      transition: 0.3s;
      z-index: 100000;
    }

    .nav-btn:hover {
      background: rgba(255,255,255,0.3);
    }

    .prev-btn {
      left: 25px;
    }

    .next-btn {
      right: 25px;
    }

    /* MOBILE */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .gallery-item img,
      .gallery-item video {
        height: 200px;
      }

      .nav-btn {
        font-size: 1.5rem;
        padding: 10px 14px;
      }

      .close-btn {
        font-size: 2rem;
      }

      #lightbox-media {
        max-width: 95%;
      }
    }
.publication{
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
}	




/* =========================
HYBRID GRID
========================= */
.hybrid-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items: start;
  gap:40px;
  margin-top:70px;
}

/* =========================
IMAGE BOX
========================= */
.hybrid-image-box{

  position:relative;

  text-align:center;
}

/* CERTIFICATE IMAGE */
.hybrid-image-box img{

  width:100%;

  border-radius:30px;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:0 20px 60px rgba(0,0,0,0.35);

  transition:0.35s ease;
}

/* HOVER */
.hybrid-image-box img:hover{

  transform:scale(1.02);
}

/* =========================
BADGE
========================= */
.certificate-badge{
  position:absolute;
  top:-50px;
  left:20px;
  z-index:3;
  padding:12px 20px;
  border-radius:40px;
  background:
  linear-gradient(
    135deg,
    rgba(124,58,237,0.95),
    rgba(245,158,11,0.95)
  );
  color:white;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
FLOATING INFO BOX
========================= */
.certificate-info{
  position:absolute;
  bottom:-127px;
  left:25px;
  right:25px;
  padding:25px;
  border-radius:24px;
  background:rgba(15,23,42,0.82);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
 }

/* TITLE */
.certificate-info h3{

  color:white;

  margin-bottom:10px;

  font-size:1.4rem;
}

/* TEXT */
.certificate-info p{

  color:rgba(255,255,255,0.78);

  line-height:1.8;

  font-size:0.95rem;
}

/* =========================
MOBILE
========================= */
@media(max-width:992px){

  .hybrid-grid{

    grid-template-columns:1fr;
  }

  .hybrid-image-box{

    margin-top:20px;
  }
}

@media(max-width:600px){

  .certificate-info{

    position:relative;

    left:auto;
    right:auto;
    bottom:auto;

    margin-top:20px;
  }

  .certificate-badge{

    font-size:11px;

    padding:10px 16px;
  }
}



/* =========================
SPECIES GALLERY
========================= */
.species-gallery{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));
  gap:28px;
  margin-bottom:10px;
}

/* CARD */
.species-card{

  position:relative;

  border-radius:22px;

  overflow:hidden;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  transition:0.35s ease;
}

/* HOVER */
.species-card:hover{

  transform:translateY(-8px);
}

/* IMAGE */
.species-card img{
  width:100%;
  object-fit:cover;
  display:block;
}

/* NAME */
.species-card span{

  display:block;

  padding:16px;

  color:white;

  text-align:center;

  font-size:0.95rem;

  line-height:1.6;
}

/* =========================
TABLE
========================= */
.species-table{

  width:100%;

  border-collapse:collapse;
}

/* TABLE BORDER */
.species-table th,
.species-table td{

  border:1px solid rgba(255,255,255,0.10);

  padding:18px;

  color:white;

  text-align:left;

  line-height:1.8;
}

/* HEADER */
.species-table th{

  background:rgba(124,58,237,0.18);

  color:#ffffff;
}

/* MOBILE */
@media(max-width:768px){
  .species-gallery{
    gap:20px;
  }
}



/* =========================
APPRECIATION CARD
========================= */
.appreciation-card{

  display:grid;

  grid-template-columns:320px 1fr;

  gap:50px;

  align-items:center;

  margin-top:80px;

  padding:45px;

  border-radius:32px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  overflow:hidden;

  position:relative;
}

/* REVERSE */
.reverse-card{

  grid-template-columns:1fr 320px;
}

/* =========================
IMAGE
========================= */
.scientist-image{

  position:relative;
}

/* IMAGE STYLE */
.scientist-image img{

  width:100%;

  border-radius:26px;

  object-fit:cover;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:0 20px 50px rgba(0,0,0,0.35);

  transition:0.35s ease;
}

/* HOVER */
.scientist-image img:hover{

  transform:scale(1.03);
}

/* =========================
CONTENT
========================= */
.scientist-content h2{

  color:white;

  font-size:2rem;

  margin-top:10px;
}

/* =========================
MOBILE
========================= */
@media(max-width:992px){

  .appreciation-card,
  .reverse-card{

    grid-template-columns:1fr;

    padding:35px;
  }

  .scientist-image{

    max-width:320px;

    margin:auto;
  }
}

@media(max-width:600px){

  .appreciation-card{

    padding:25px;
  }

  .scientist-content h2{

    font-size:1.6rem;
  }
}




/* =========================
AWARD HERO
========================= */
.award-hero{

  position:relative;

  margin-top:70px;

  border-radius:34px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,0.08);
}

/* IMAGE */
.award-hero img{

  width:100%;

  height:650px;

  object-fit:cover;

  display:block;
}

/* OVERLAY */
.award-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:5px 60px;
  background:linear-gradient(to top, rgba(2, 6, 23, 0.95), rgb(135 136 76 / 13%));
}

/* TITLE */
.award-overlay h2{

  color:white;

  font-size:2.5rem;

  margin-top:22px;

  margin-bottom:20px;

  max-width:700px;

  line-height:1.3;
}

/* TEXT */
.award-overlay p{

  color:rgba(255,255,255,0.82);

  max-width:700px;

  line-height:1.9;
}

/* =========================
GRID
========================= */
.awards-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:35px;

  margin-top:70px;
}

/* =========================
AWARD LIST
========================= */
.award-list{

  margin-top:25px;
}

/* ITEM */
.award-item{

  padding:18px 0;

  border-bottom:1px solid rgba(255,255,255,0.08);

  color:rgba(255,255,255,0.82);

  line-height:1.8;
}

/* YEAR */
.award-item span{

  display:inline-block;

  min-width:80px;

  color:#f59e0b;

  font-weight:700;
}

/* =========================
MOBILE
========================= */
@media(max-width:992px){

  .awards-grid{

    grid-template-columns:1fr;
  }

  .award-overlay{
    padding:35px;
  }

  .award-overlay h2{
    font-size:2rem;
  }

  .award-hero img{

    height:520px;
  }
}

@media(max-width:600px){

  .award-overlay h2{

    font-size:1.5rem;
  }

  .award-overlay{

    padding:25px;
  }

  .award-hero img{

    height:430px;
  }
}




/* =========================
MODERN HERO
========================= */
.life-hero-modern{

    display:grid;
align-items: start;
    grid-template-columns:1.1fr 0.9fr;

    gap:60px;

    align-items:center;

    min-height:650px;
}

/* =========================
TITLE
========================= */
.life-content h1{

    font-size:4rem;

    line-height:1.15;

    color:white;

    margin:25px 0;
}

.life-content h1 span{

    color:#d8b4fe;
}

/* TEXT */
.life-content p{

    color:rgba(255,255,255,0.82);

    line-height:2;

    font-size:1.05rem;
}

/* =========================
IMAGE
========================= */
.life-image{

    position:relative;
}

.life-image img{

    width:100%;

    border-radius:36px;

    object-fit:cover;

    box-shadow:0 25px 60px rgba(0,0,0,0.45);

    border:1px solid rgba(255,255,255,0.08);
    height: 495px;
}

/* =========================
ORCHID HIGHLIGHT
========================= */
.orchid-highlight{

    margin-top:40px;

    display:flex;

    align-items:center;

    gap:20px;

    padding:28px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(168,85,247,0.20),
        rgba(236,72,153,0.12)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);
}

/* ICON */
.orchid-icon{

    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,0.10);

    font-size:2rem;

    flex-shrink:0;
}

/* TEXT */
.orchid-highlight h3{

    color:white;

    font-size:1.7rem;

    margin-bottom:8px;
}

.orchid-highlight p{

    color:#f5d0fe;

    margin:0;

    font-size:1rem;
}

/* =========================
GRID
========================= */
.journey-modern-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* NUMBER */
.timeline-number{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #ec4899
    );

    color:white;

    font-weight:700;

    margin-bottom:25px;
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:1100px){

    .life-hero-modern{

        grid-template-columns:1fr;
    }

    .journey-modern-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){

    .journey-modern-grid{

        grid-template-columns:1fr;
    }

    .life-content h1{

        font-size:2.7rem;
    }

    .orchid-highlight{

        flex-direction:column;

        text-align:center;
    }
}
