@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fjalla One", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
}

/* Navbar container */
.navbar {
    width: 100%;
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    height: 100px;
    z-index: 1000;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: rgb(255, 31, 0);
    /* 🔥 bright red-orange on hover */
}

/* Logo center */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Fullscreen Menu */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: #222;
    /* normal dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.5s ease;
    z-index: 999;
    gap: 35px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    /* h1 size approx */
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: rgb(255, 31, 0);
    transition: color 0.3s ease;
    text-decoration: underline;
    transform: ease;
}

.menu.active {
    height: 100vh;
    /* fullscreen */
}

/* Toggle button */
.toggle-btn,
.close-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.toggle-btn:hover ,
.close-btn:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
    color: rgb(255, 31, 0);
}

.toggle-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
}

.close-btn {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* banner */

.banner {
    position: relative;
    height: 70vh;
    background: url('../images/secbg.png');
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.banner h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: bold;
    color: white;
    line-height: 1.2;
    max-width: 90%;
    margin: 0 auto;
}

.banner h1 span,
#description span {
    color: rgb(255, 31, 0);
}

#description {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    text-align: left;
    max-width: 80%;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: white;
    margin-left: 3px;
    animation: blink 0.7s steps(1) infinite;
    vertical-align: bottom;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.watermark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

@media (max-width: 768px) {
    .banner {
        height: 50vh;
        padding: 15px;
    }

    .banner h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1rem;
        left: 15px;
        bottom: 15px;
    }

    .watermark {
        font-size: 1rem;
        right: 15px;
        top: 15px;
    }
}

.image-section {
    height: 50vh;
    /* default for wide screens */
    overflow: hidden;
    position: relative;
    background-color: black;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-out;
}

/* 🔹 Mobile adjustments */
@media (max-width: 768px) {
    .image-section {
        height: 35vh;
        /* mobile pe thodi chhoti */
    }
}




:root {
    --bg: #0b0b0c;
    --slate: rgb(129, 129, 129);
    --white: #ffffff;
    --transition: 350ms;
}

.about-section {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 8vw;
    background: url('../images/secbg.png');
    margin-top: 80px;
}

h1 {
    /* margin-top: 100px; */
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
}

.desc-wrap {
    margin-top: 1rem;
    max-width: 100%;
}

#about-desc {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate);
}

.letter {
    display: inline-block;
    transition: color var(--transition) ease, transform var(--transition) ease;
    color: var(--slate);
    transform: translateY(8px);
}

.letter.active {
    color: var(--white);
    transform: translateY(0);
}

.stats {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: block;
}

.stat-item p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: var(--slate);
}

.suffix {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    margin-left: 2px;
  }
@media (max-width: 768px) {
    .about-section {
        height: auto;
        padding: 2rem 4vw;
    }

    h1 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        min-width: unset;
    }
}

 .team-section {
  padding: 60px 20px;
  background: #0f0f0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 40px;
}

.team-title {
  font-size: 4.5rem;
  margin: 0;
}

.team-slider {
  overflow: hidden;
  width: 100%;
}

.team-track {
  display: flex;
  width: calc(300px * 8 + 20px * 8);
  animation: scroll 20s linear infinite;
}

.team-card {
  width: 300px;
  margin-right: 20px;
  flex-shrink: 0;
  text-align: left;
}

.team-card img {
  width: 300px;
  height: 300px;
  object-fit: fill;
  border-radius: 12px;
  display: flex;
}

.member-name {
  margin: 0 0 8px 4px;
  font-size: 1.5rem;
  font-weight: 300;
}
  
/* Auto scrolling animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .team-header {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .team-track {
    animation-duration: 30s; /* slower for smaller screens */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-title {
    font-size: 2.5rem;
  }

  .team-card {
    width: 250px;
  }

  .team-card img {
    width: 250px;
    height: 250px;
  }

  .member-name {
    font-size: 1.2rem;
  }
}

.explore-more {
        text-decoration: none;
      color: rgb(255, 31, 0);
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 20px;
    }

    .explore-more:hover {
      text-decoration: underline;
      text-underline-offset: 5px;
      transition: 0.2s ease;
    }

    .explore-more span {
      font-size: 22px;
    }


    :root {
--accent: white ;
--bg-dark: #0b1120;
--text-light: #f0f4ff;
--gradient: linear-gradient(135deg, #000000, #f5f5f5);
}


body {
margin: 0;
background: var(--bg-dark);
color: var(--text-light);
overflow-x: hidden;
}


section.ceo-section {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 70vh;
padding: 50px 10%;
background: url('../images/secbg.png');
overflow: hidden;
}


.ceo-container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
max-width: 1200px;
width: 100%;
transform: translateY(30px);
opacity: 0;
transition: all 1s ease-out;
}


.ceo-container.show {
transform: translateY(0);
opacity: 1;
}

.ceo-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
 }

 .ceo-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--accent);
  }

 .ceo-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgb(255, 31, 0);
  }

.ceo-content p {
font-size: 1.2rem;    
line-height: 1.6;
color: var(--text-light);
 }
.ceo-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}


.ceo-image img {
width: 300px;
height: 300px;
object-fit: cover;
border-radius: 50%;
border: 5px solid rgba(255,255,255,0.1);
box-shadow: 0 0 40px white;
transition: transform 0.6s ease, box-shadow 0.6s ease;
}


.ceo-image img:hover {
transform: scale(1.08) rotate(3deg);
box-shadow: 0 0 60px white;
}

@media (max-width: 768px) {
.ceo-container {
flex-direction: column;
text-align: center;
}
.ceo-image img {
width: 250px;
height: 250px;
}
.ceo-content h1 {
font-size: 2.5rem;
}
.ceo-content h3 {
font-size: 1.5rem;
}
.ceo-content p {
font-size: 1rem;
}
}

 section.coo-section {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70vh;
      padding: 50px 10%;
      background: radial-gradient(circle at top left, rgb(255, 31, 0,0.2), transparent 10%), radial-gradient(circle at bottom right, rgb(255, 31, 0,0.1), transparent 25%), black;
      overflow: hidden;
    }

    .coo-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      max-width: 1200px;
      width: 100%;
      transform: translateY(30px) translateX(30px);
      opacity: 0;
      transition: all 1s ease-out;
    }

    .coo-container.show {
      transform: translateY(0) translateX(0);
      opacity: 1;
    }

    .coo-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .coo-image img {
      width: 300px;
      height: 300px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 40px white;
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .coo-image img:hover {
      transform: scale(1.08) rotate(-3deg);
      box-shadow: 0 0 60px white;
    }

    .coo-content {
      display: flex;
      justify-content: center;
      flex-direction: column;
    }

    .coo-content h1 {
      font-size: 4rem;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
    }

    .coo-content h3 {
      font-size: 2rem;
      color: rgb(255, 31, 0);
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .coo-content p {
      color: #cfd9e9;
      line-height: 1.7;
      font-size: 1.2rem;
      margin-bottom: 25px;
    }

    .btn-coo {
      background: linear-gradient(135deg, #00e0ff, #7dfcff);
      color: #000;
      border: none;
      padding: 12px 26px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-coo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(0,224,255,0.6);
    }

    /* Glow orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      background: var(--gradient);
      filter: blur(100px);
      opacity: 0.25;
      animation: float 8s ease-in-out infinite;
    }

    .orb.one {
      width: 280px;
      height: 280px;
      top: -100px;
      right: -100px;
    }

    .orb.two {
      width: 240px;
      height: 240px;
      bottom: -120px;
      left: -100px;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    @media (max-width: 900px) {
      .coo-container {
        flex-direction: column-reverse;
        text-align: center;
      }
      .coo-content h2 {
        font-size: 2.3rem;
      }
      .coo-image img {
        width: 220px;
        height: 220px;
      }
    }


/* Footer Section */
.footer {
  background: url('../images/secbg.png');
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-heading {
  flex: 1;
  min-width: 200px;
  margin-top: 60px;  
  font-size: 8.5rem;
  font-weight: 700;
  color: rgb(255, 31, 0);
  padding: 40px;
}

.footer-right {
  text-align: right;
  flex: 1;
  min-width: 200px;
  padding: 40px;
}

.socials {
  margin-bottom: 20px;
}

.social-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: rgb(255, 31, 0); /* Golden highlight */
}

.socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials ul li {
  margin: 8px 0;
}

.socials ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.socials ul li a:hover {
  color: rgb(255, 31, 0);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-links {
  text-align: center;
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
 color: rgb(255, 31, 0);
}

.footer-bottom {
  text-align: center;
  font-size: 1.3rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-heading {
    font-size: 5rem;
    margin-top: 20px;
    padding: 20px 0;
  }

  .footer-right {
    text-align: center;
    padding: 20px 0;
  }

  .social-title {
    font-size: 2rem;
  }

  .socials ul li a {
    font-size: 1.5rem;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links ul li a {
    font-size: 1.2rem;
  }
}