body {
  margin:0;
  font-family: 'Poppins', sans-serif;
  background:#0f172a;
  color:#fff;
}

.container {
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* HEADER */
.main-header {
  position:fixed;
  width:100%;
  top:0;
  backdrop-filter: blur(15px);
  background: rgba(15,23,42,0.6);
  padding:15px 0;
  z-index:999;
}

.logo a {
  font-size:26px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}

.logo span {
  color:#00f5c4;
}

.navbar ul {
  list-style:none;
  display:flex;
  gap:30px;
}

.navbar a {
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.navbar a:hover {
  color:#00f5c4;
}

/* ENQUIRE BUTTON */
.enquire-btn {
  background: linear-gradient(45deg,#00f5c4,#007cf0);
  padding:10px 25px;
  border:none;
  border-radius:30px;
  color:#000;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.enquire-btn:hover {
  transform:scale(1.05);
}

/* FOOTER */
/* ===== FOOTER ===== */

.main-footer{
  background:#0b1120;
  padding-top:100px;
  border-top:1px solid rgba(255,255,255,0.05);
}

.footer-top{
  width:90%;
  margin:auto;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:60px;
}

.footer-col h3,
.footer-col h4{
  margin-bottom:20px;
}

.footer-logo{
  font-size:24px;
  font-weight:700;
}

.footer-logo span{
  color:#00f5c4;
}

.footer-col p{
  color:#94a3b8;
  font-size:14px;
  line-height:1.6;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:12px;
}

.footer-col ul li a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#00f5c4;
}

/* Social Icons */

.social-icons{
  margin-top:20px;
  display:flex;
  gap:15px;
}

.social-icons a{
  width:35px;
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  background:#00f5c4;
  color:#000;
}

/* Newsletter */

.newsletter-form{
  display:flex;
  margin-top:15px;
}

.newsletter-form input{
  flex:1;
  padding:10px;
  border:none;
  border-radius:25px 0 0 25px;
  outline:none;
}

.newsletter-form button{
  padding:10px 20px;
  border:none;
  background:#00f5c4;
  color:#000;
  border-radius:0 25px 25px 0;
  cursor:pointer;
}

.contact-info{
  margin-top:20px;
  font-size:13px;
  color:#94a3b8;
}

/* Bottom */

.footer-bottom{
  text-align:center;
  padding:25px 0;
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,0.05);
  font-size:13px;
  color:#94a3b8;
}

/* Responsive */

@media(max-width:1100px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(-45deg, #0f172a, #0b1120, #111827, #1e293b);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.hero-overlay {
  position:absolute;
  width:100%;
  height:100%;
  background: radial-gradient(circle at center, rgba(0,255,200,0.1), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index:2;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 span {
  background: linear-gradient(45deg,#00f5c4,#007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-top:20px;
  font-size:18px;
  color:#cbd5e1;
}

.hero-buttons {
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn-primary {
  padding:14px 35px;
  background: linear-gradient(45deg,#00f5c4,#007cf0);
  border-radius:40px;
  color:#000;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-secondary {
  padding:14px 35px;
  border:1px solid #00f5c4;
  border-radius:40px;
  background:transparent;
  color:#00f5c4;
  cursor:pointer;
  transition:0.3s;
}

.btn-secondary:hover {
  background:#00f5c4;
  color:#000;
}

/* HERO STATS */
.hero-stats {
  margin-top:60px;
  display:flex;
  justify-content:center;
  gap:60px;
}

.hero-stats h3 {
  font-size:28px;
  background: linear-gradient(45deg,#00f5c4,#007cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stats span {
  font-size:14px;
  color:#94a3b8;
}

/* SCROLL INDICATOR */
.scroll-down {
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  width:25px;
  height:40px;
  border:2px solid #00f5c4;
  border-radius:20px;
}

.scroll-down::before {
  content:'';
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:6px;
  height:6px;
  background:#00f5c4;
  border-radius:50%;
  animation:scrollMove 2s infinite;
}

@keyframes scrollMove {
  0% {opacity:0; top:8px;}
  50% {opacity:1;}
  100% {opacity:0; top:20px;}
}
/* SERVICES SECTION */

.services-section {
  padding:120px 0;
  background:#0b1120;
}

.container-column {
  width:90%;
  margin:auto;
  text-align:center;
}

.section-heading .sub-title {
  color:#00f5c4;
  font-weight:600;
  letter-spacing:1px;
}

.section-heading h2 {
  font-size:40px;
  margin:20px 0;
}

.section-heading p {
  max-width:600px;
  margin:auto;
  color:#94a3b8;
}

.services-grid {
  margin-top:80px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:40px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  padding:40px 30px;
  border-radius:20px;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover {
  transform:translateY(-10px);
  border:1px solid #00f5c4;
  box-shadow:0 0 40px rgba(0,245,196,0.2);
}

.service-card .icon {
  font-size:40px;
  margin-bottom:20px;
}

.service-card h3 {
  margin-bottom:15px;
  font-size:22px;
}

.service-card p {
  color:#cbd5e1;
  font-size:15px;
}
body {
  margin: 0;
  padding: 0;
}

.hero-section {
  padding-top: 120px;   /* header height ke equal */
}
/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#0f172a;
  color:#ffffff;
  overflow-x:hidden;
}

/* ===== HEADER ===== */

.main-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 0;

  background:rgba(10,18,35,0.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(255,255,255,0.05);
}

.container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ===== HERO SECTION ===== */

.hero-section{
  position:relative;
  min-height:100vh;
  padding-top:120px; /* header height fix */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;

  background:linear-gradient(-45deg,#0f172a,#0b1120,#111827,#1e293b);
  background-size:400% 400%;
  animation:gradientMove 12s ease infinite;
}

@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:radial-gradient(circle at center, rgba(0,255,200,0.08), transparent 60%);
  pointer-events:none;
}

.hero-content{
  position:relative;
  max-width:900px;
  z-index:2;
}

.hero-content h1{
  font-size:60px;
  font-weight:700;
  line-height:1.2;
}

.hero-content h1 span{
  background:linear-gradient(45deg,#00f5c4,#007cf0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-content p{
  margin-top:20px;
  font-size:18px;
  color:#cbd5e1;
}

/* ===== HERO BUTTONS ===== */

.hero-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.btn-primary{
  padding:14px 35px;
  background:linear-gradient(45deg,#00f5c4,#007cf0);
  border-radius:40px;
  color:#000;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-primary:hover{
  transform:scale(1.05);
}

.btn-secondary{
  padding:14px 35px;
  border:1px solid #00f5c4;
  border-radius:40px;
  background:transparent;
  color:#00f5c4;
  cursor:pointer;
  transition:0.3s;
}

.btn-secondary:hover{
  background:#00f5c4;
  color:#000;
}

/* ===== HERO STATS ===== */

.hero-stats{
  margin-top:60px;
  display:flex;
  justify-content:center;
  gap:60px;
}

.hero-stats h3{
  font-size:28px;
  background:linear-gradient(45deg,#00f5c4,#007cf0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-stats span{
  font-size:14px;
  color:#94a3b8;
}

/* ===== SMOOTH SECTION BLEND ===== */

.hero-section::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:200px;
  background:linear-gradient(to bottom, transparent, #0f172a);
}

/* ===== SERVICES SECTION BASE (Joint Invisible) ===== */

.services-section{
  padding:120px 0;
  background:#0f172a;  /* same base color for seamless blend */
}
.scroll-down{
  position:absolute;
  bottom:20px;   /* pehle 30px hoga */
  left:50%;
  transform:translateX(-50%);
}
@media(max-width:1200px){
  .services-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:900px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== WHY SECTION ===== */

.why-section{
  padding:140px 0;
  background:#0f172a;
}

.why-container{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.why-left{
  flex:1;
}

.why-left h2{
  font-size:42px;
  margin:20px 0;
}

.why-left p{
  color:#94a3b8;
  margin-bottom:30px;
  max-width:500px;
}

.why-list{
  list-style:none;
  margin-bottom:40px;
}

.why-list li{
  margin-bottom:15px;
  color:#cbd5e1;
  font-size:16px;
}

.why-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.why-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:50px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  max-width:400px;
  transition:0.4s;
}

.why-card:hover{
  transform:translateY(-10px);
  border:1px solid #00f5c4;
  box-shadow:0 0 50px rgba(0,245,196,0.2);
}

.why-card h3{
  font-size:24px;
  margin-bottom:20px;
}

.why-card p{
  color:#94a3b8;
  margin-bottom:30px;
}

.why-mini-stats{
  display:flex;
  justify-content:space-between;
}

.why-mini-stats h4{
  font-size:24px;
  background:linear-gradient(45deg,#00f5c4,#00c6ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.why-mini-stats span{
  font-size:13px;
  color:#94a3b8;
}

/* RESPONSIVE */

@media(max-width:1000px){
  .why-container{
    flex-direction:column;
    text-align:center;
  }

  .why-left p{
    margin:auto;
  }
}
/* ===== TESTIMONIAL SECTION ===== */

.testimonial-section{
  padding:140px 0;
  background:#0f172a;
  position:relative;
}

.testimonial-grid{
  margin-top:80px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.testimonial-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:40px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  border:1px solid #00f5c4;
  box-shadow:0 0 50px rgba(0,245,196,0.2);
}

.testimonial-card p{
  color:#cbd5e1;
  font-size:15px;
  line-height:1.6;
  margin-bottom:25px;
}

.testimonial-card h4{
  font-size:18px;
  margin-bottom:5px;
}

.testimonial-card span{
  font-size:13px;
  color:#94a3b8;
}

/* Responsive */

@media(max-width:1000px){
  .testimonial-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}
/* ===== HEADER BASE ===== */

.main-header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  padding:18px 0;
  background:rgba(10,18,35,0.65);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ===== DESKTOP NAV ===== */

.navbar ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.navbar a:hover{
  color:#00f5c4;
}

.desktop-enquire{
  display:block;
}

.mobile-enquire{
  display:none;
}

/* ===== HAMBURGER ===== */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#fff;
  border-radius:3px;
  transition:0.3s;
}

/* ===== MOBILE + TABLET ===== */

@media(max-width:1024px){

  .navbar{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#0b1120;
    backdrop-filter:blur(20px);
    transition:0.4s ease;
    padding-top:120px;
  }

  .navbar ul{
    flex-direction:column;
    align-items:center;
    gap:25px;
  }

  .navbar.active{
    right:0;
  }

  .desktop-enquire{
    display:none;
  }

  .mobile-enquire{
    display:block;
    margin-top:20px;
  }

  .hamburger{
    display:flex;
  }
}
/* ===== CTA SECTION ===== */

.cta-section{
  padding:140px 0;
  text-align:center;
  position:relative;
  background:linear-gradient(135deg,#00f5c4,#007cf0);
  overflow:hidden;
}

.cta-section::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:rgba(255,255,255,0.15);
  filter:blur(150px);
  top:-200px;
  right:-200px;
}

.cta-container{
  position:relative;
  z-index:2;
  width:90%;
  margin:auto;
  max-width:800px;
}

.cta-section h2{
  font-size:42px;
  color:#000;
  margin-bottom:20px;
}

.cta-section p{
  font-size:18px;
  color:#111;
  margin-bottom:40px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-section .btn-primary{
  background:#000;
  color:#fff;
}

.cta-section .btn-secondary{
  border:2px solid #000;
  color:#000;
  padding:14px 35px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
}

.cta-section .btn-secondary:hover{
  background:#000;
  color:#fff;
}
/* ===== POPUP ===== */

.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  transition:0.3s ease;
  z-index:9999;
}

.popup-overlay.active{
  visibility:visible;
  opacity:1;
}

.popup-box{
  background:#0b1120;
  padding:40px;
  width:90%;
  max-width:450px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  position:relative;
  transform:scale(0.8);
  transition:0.3s ease;
}

.popup-overlay.active .popup-box{
  transform:scale(1);
}

.popup-box h3{
  margin-bottom:25px;
  font-size:22px;
}

.popup-box form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.popup-box input,
.popup-box textarea{
  padding:12px 15px;
  border-radius:12px;
  border:none;
  outline:none;
  background:#1e293b;
  color:#fff;
}

.popup-box textarea{
  resize:none;
  height:100px;
}

.close-popup{
  position:absolute;
  top:15px;
  right:20px;
  font-size:22px;
  cursor:pointer;
  color:#fff;
}
/* ===== ABOUT HERO ===== */

.about-hero{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:120px;
  text-align:center;
  background:linear-gradient(-45deg,#0f172a,#0b1120,#111827,#1e293b);
  background-size:400% 400%;
  animation:gradientMove 12s ease infinite;
}

.about-hero-container{
  width:90%;
  max-width:900px;
}

.about-hero h1{
  font-size:48px;
  margin:25px 0;
  line-height:1.2;
}

.about-hero h1 span{
  background:linear-gradient(45deg,#00f5c4,#007cf0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-hero p{
  color:#cbd5e1;
  font-size:18px;
}

/* ===== ABOUT CONTENT ===== */

.about-content-section{
  padding:140px 0;
  background:#0f172a;
}

.about-content-container{
  width:90%;
  margin:auto;
  display:flex;
  gap:80px;
  align-items:center;
}

.about-left{
  flex:1;
}

.about-left h2{
  font-size:38px;
  margin-bottom:25px;
}

.about-left p{
  color:#94a3b8;
  margin-bottom:20px;
  line-height:1.6;
}

.about-highlights{
  display:flex;
  gap:40px;
  margin-top:40px;
}

.about-highlights h3{
  font-size:28px;
  background:linear-gradient(45deg,#00f5c4,#007cf0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-highlights span{
  font-size:14px;
  color:#94a3b8;
}

.about-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.about-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:40px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.about-card:hover{
  transform:translateY(-8px);
  border:1px solid #00f5c4;
}

/* Responsive */

@media(max-width:1000px){
  .about-content-container{
    flex-direction:column;
  }

  .about-highlights{
    justify-content:center;
  }
}

@media(max-width:768px){
  .about-hero h1{
    font-size:32px;
  }
}
.about-hero{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:120px;
  text-align:center;
  position:relative;
  background:linear-gradient(-45deg,#0f172a,#0b1120,#111827,#1e293b);
  background-size:400% 400%;
  animation:gradientMove 12s ease infinite;
}

/* 👇 THIS CREATES SMOOTH FADE */
.about-hero::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:180px;
  background:linear-gradient(to bottom, transparent, #0f172a);
}
/* ===== ABOUT STORY SECTION ===== */

.about-story-section{
  padding:140px 0;
  background:#0f172a;  /* SAME BASE COLOR FOR NO JOINT */
}

.about-story-container{
  width:90%;
  margin:auto;
  display:flex;
  gap:80px;
  align-items:center;
}

.about-story-left{
  flex:1;
}

.about-story-left h2{
  font-size:38px;
  margin-bottom:25px;
}

.about-story-left p{
  color:#94a3b8;
  margin-bottom:20px;
  line-height:1.6;
}

.about-story-right{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.story-highlight-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:35px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.story-highlight-card:hover{
  transform:translateY(-6px);
  border:1px solid #00f5c4;
}

/* Responsive */

@media(max-width:1000px){
  .about-story-container{
    flex-direction:column;
  }
}
/* ===== ABOUT VALUES SECTION ===== */

.about-values-section{
  padding:140px 0;
  background:#0f172a;  /* SAME COLOR FOR NO JOINT */
}

.about-values-container{
  width:90%;
  margin:auto;
  text-align:center;
}

.values-heading h2{
  font-size:40px;
  margin-bottom:20px;
}

.values-heading p{
  color:#94a3b8;
  max-width:600px;
  margin:auto;
}

.values-grid{
  margin-top:80px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.value-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:40px 30px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  text-align:left;
  transition:0.3s;
}

.value-card:hover{
  transform:translateY(-8px);
  border:1px solid #00f5c4;
}

.value-number{
  font-size:18px;
  margin-bottom:15px;
  color:#00f5c4;
  font-weight:600;
}

.value-card h3{
  margin-bottom:15px;
}

.value-card p{
  color:#94a3b8;
  font-size:14px;
  line-height:1.6;
}

/* Responsive */

@media(max-width:1100px){
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .values-grid{
    grid-template-columns:1fr;
  }
}
/* ===== REFINED ABOUT HERO ===== */

.about-hero{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:140px;
  padding-bottom:100px;
  overflow:hidden;

  background:radial-gradient(circle at 30% 30%, #13203f, #0f172a 60%);
}

/* Soft glow effect */
.about-hero::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:rgba(0,245,196,0.06);
  filter:blur(180px);
  top:-200px;
  right:-200px;
}

/* Smooth fade bottom */
.about-hero::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:180px;
  background:linear-gradient(to bottom, transparent, #0f172a);
}

.about-hero-container{
  width:90%;
  max-width:950px;
  position:relative;
  z-index:2;
}

.breadcrumb{
  font-size:14px;
  color:#94a3b8;
  margin-bottom:20px;
}

.breadcrumb a{
  color:#94a3b8;
  text-decoration:none;
}

.about-hero h1{
  font-size:58px;
  line-height:1.15;
  margin-bottom:30px;
  font-weight:700;
}

.about-hero h1 span{
  background:linear-gradient(45deg,#00f5c4,#00c6ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-hero p{
  font-size:19px;
  color:#cbd5e1;
  max-width:700px;
  margin:0 auto 45px;
}

.about-hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* Responsive */

@media(max-width:768px){
  .about-hero{
    min-height:75vh;
  }

  .about-hero h1{
    font-size:36px;
  }

  .about-hero p{
    font-size:16px;
  }
}
/* ===== DIRECTOR SECTION ===== */

.director-section{
  padding:140px 0;
  background:#0f172a;  /* SAME BASE = NO JOINT */
}

.director-container{
  width:90%;
  margin:auto;
  display:flex;
  gap:80px;
  align-items:center;
}

.director-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.image-box{
  width:350px;
  height:400px;
  border-radius:30px;
  overflow:hidden;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
}

.image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.director-content{
  flex:1;
}

.director-tag{
  color:#00f5c4;
  font-weight:600;
  letter-spacing:1px;
}

.director-content h2{
  font-size:38px;
  margin:20px 0;
  line-height:1.3;
}

.director-content p{
  color:#94a3b8;
  margin-bottom:20px;
  line-height:1.6;
}

.director-name{
  margin:25px 0;
}

.director-name h4{
  margin-bottom:5px;
}

.director-name span{
  font-size:14px;
  color:#94a3b8;
}

/* Responsive */

@media(max-width:1000px){
  .director-container{
    flex-direction:column;
    text-align:center;
  }
}
/* ===== TIMELINE SECTION ===== */

.timeline-section{
  padding:140px 0;
  background:#0f172a; /* same base, no joint */
}

.timeline-container{
  width:90%;
  margin:auto;
  text-align:center;
}

.timeline-heading h2{
  font-size:40px;
  margin-bottom:15px;
}

.timeline-heading p{
  color:#94a3b8;
}

.timeline{
  margin-top:80px;
  position:relative;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

/* vertical line */
.timeline::before{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:100%;
  background:rgba(255,255,255,0.08);
}

.timeline-item{
  position:relative;
  width:50%;
  padding:20px 40px;
  box-sizing:border-box;
}

.timeline-item:nth-child(odd){
  left:0;
  text-align:right;
}

.timeline-item:nth-child(even){
  left:50%;
  text-align:left;
}

.timeline-dot{
  position:absolute;
  top:30px;
  right:-9px;
  width:18px;
  height:18px;
  background:#00f5c4;
  border-radius:50%;
}

.timeline-item:nth-child(even) .timeline-dot{
  left:-9px;
}

.timeline-content{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.timeline-content:hover{
  transform:translateY(-5px);
  border:1px solid #00f5c4;
}

.timeline-content h3{
  margin-bottom:10px;
}

.timeline-content p{
  color:#94a3b8;
  font-size:14px;
}

/* Responsive */

@media(max-width:900px){

  .timeline::before{
    left:20px;
  }

  .timeline-item{
    width:100%;
    padding-left:60px;
    padding-right:20px;
    text-align:left !important;
  }

  .timeline-item:nth-child(even){
    left:0;
  }

  .timeline-dot{
    left:12px !important;
    right:auto;
  }
}
/* ===== CAREERS HERO ===== */

.careers-hero{
  min-height:65vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:140px;
  padding-bottom:80px;
  background:radial-gradient(circle at 30% 30%, #13203f, #0f172a 60%);
  position:relative;
}

.careers-hero::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:120px;
  background:linear-gradient(to bottom, transparent, #0f172a);
}

.careers-hero h1{
  font-size:52px;
  margin-bottom:25px;
}

.careers-hero h1 span{
  background:linear-gradient(45deg,#00f5c4,#00c6ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.careers-hero p{
  color:#cbd5e1;
  max-width:700px;
  margin:auto;
}


/* ===== JOB SECTION ===== */

.careers-section{
  padding:80px 0 120px 0;
  background:#0f172a;
}

.careers-container{
  width:90%;
  margin:auto;
  text-align:center;
}

.careers-heading h2{
  font-size:40px;
  margin-bottom:10px;
}

.careers-heading p{
  color:#94a3b8;
}

.job-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.job-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:40px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  text-align:left;
  transition:0.3s;
}

.job-card:hover{
  transform:translateY(-8px);
  border:1px solid #00f5c4;
}

.job-card h3{
  margin-bottom:10px;
}

.job-card span{
  font-size:13px;
  color:#94a3b8;
  display:block;
  margin-bottom:15px;
}

.job-card p{
  color:#cbd5e1;
  margin-bottom:20px;
  font-size:14px;
}


/* ===== JOB POPUP ===== */

.job-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  transition:0.3s;
  z-index:9999;
}

.job-popup-overlay.active{
  visibility:visible;
  opacity:1;
}

.job-popup-box{
  background:#0b1120;
  padding:40px;
  width:90%;
  max-width:500px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,0.08);
  transform:scale(0.85);
  transition:0.3s;
  position:relative;
}

.job-popup-overlay.active .job-popup-box{
  transform:scale(1);
}

.job-popup-box form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.job-popup-box input,
.job-popup-box textarea{
  padding:12px 15px;
  border-radius:12px;
  border:none;
  outline:none;
  background:#1e293b;
  color:#fff;
}

.close-job-popup{
  position:absolute;
  top:15px;
  right:20px;
  cursor:pointer;
  font-size:22px;
}


/* Responsive */

@media(max-width:1000px){
  .job-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .job-grid{
    grid-template-columns:1fr;
  }

  .careers-hero h1{
    font-size:34px;
  }
}
/* ===== CONTACT HERO ===== */

.contact-hero{
  min-height:65vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:140px;
  padding-bottom:80px;
  background:radial-gradient(circle at 30% 30%, #13203f, #0f172a 60%);
  position:relative;
}

.contact-hero::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:120px;
  background:linear-gradient(to bottom, transparent, #0f172a);
}

.contact-hero h1{
  font-size:52px;
  margin-bottom:20px;
}

.contact-hero h1 span{
  background:linear-gradient(45deg,#00f5c4,#00c6ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.contact-hero p{
  color:#cbd5e1;
  max-width:700px;
  margin:auto;
}


/* ===== CONTACT SECTION ===== */

.contact-section{
  padding:100px 0 120px 0;
  background:#0f172a;
}

.contact-container{
  width:90%;
  margin:auto;
  display:flex;
  gap:80px;
}

.contact-info{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.info-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
}

.info-card h3{
  margin-bottom:10px;
}

.info-card p{
  color:#94a3b8;
}

.contact-form{
  flex:1;
}

.contact-form h2{
  margin-bottom:25px;
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:14px 16px;
  border-radius:12px;
  border:none;
  background:#1e293b;
  color:#fff;
  outline:none;
}

.contact-form textarea{
  height:120px;
  resize:none;
}


/* ===== MAP ===== */

.map-section iframe{
  width:100%;
  height:400px;
  border:0;
}


/* Responsive */

@media(max-width:1000px){
  .contact-container{
    flex-direction:column;
  }
}

@media(max-width:600px){
  .contact-hero h1{
    font-size:34px;
  }
}

