

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f5f7fa;
  overflow-x:hidden;
  font-family: 'Space Grotesk', sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;



}


.ks-container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */

.ks-header{
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* border-bottom: 1px solid #ededed; */
    background: rgb(13 9 13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(12px);
}

.ks-container{
  width:100%;
  max-width:1272px;
  margin:auto;
}

.ks-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:5px 0;
}

/* LOGO */
.ks-logo{
  color:#fff;
  font-weight:700;
  letter-spacing:2px;
  font-size:18px;
  width:30%;
}

.ks-logo span{
  color:#ff7a2f;
}

/* DESKTOP MENU */
.ks-menu a{
  color:#fff;
  text-decoration:none;
  margin-left:28px;
  font-size:14px;
  letter-spacing:1px;
  transition:.3s;
}

.ks-menu a:hover{
  color:#ff7a2f;
}

.ks-contact-btn{
  border:1px solid #ff7a2f;
  padding:8px 16px;
}

/* ================= HAMBURGER ================= */

.ks-hamburger{
  width:28px;
  height:22px;
  display:none;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.ks-hamburger span{
  height:3px;
  background:#fff;
  display:block;
  transition:.4s;
}

/* hamburger animation */
.ks-hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.ks-hamburger.active span:nth-child(2){
  opacity:0;
}

.ks-hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= MOBILE MENU ================= */

.ks-mobile-menu{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#000;
  display:flex;
  flex-direction:column;
  text-align:center;
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.ks-mobile-menu a{
  padding:18px;
  color:#fff;
  text-decoration:none;
  border-top:1px solid rgba(255,255,255,.08);
}

.ks-mobile-menu.show{
  max-height:400px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .ks-menu{
    display:none;
  }

  .ks-hamburger{
    display:flex;
  }

}


/* ================= HERO ================= */
.ks-hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.ks-slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .8s ease;
  display:flex;
  align-items:center;
}

.ks-slide.active{
  opacity:1;
  z-index:2;
}

/* overlay */
.ks-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.9)35%,rgba(0,0,0,.2));
  z-index:1;
}

/* ================= CONTENT ================= */
.ks-content{
     position: relative;
    z-index: 3;
    color: #fff;
    max-width: 650px;
    animation: ksFadeUp .9s ease;
    margin-left: -62px;
    margin-top: 52px;
}

@keyframes ksFadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

.ks-tag{
  border:1px solid #ff7a2f;
  padding:6px 12px;
  font-size:12px;
  letter-spacing:2px;
}

.ks-content h1{
  font-size:70px;
  margin:20px 0;
  line-height:1.1;
    font-family: 'Space Grotesk', sans-serif !important;
    letter-spacing: 3PX;

}

.ks-content h1 span{
  color:#ff7a2f;
}

.ks-content p{
      color: #ccc;
    margin-bottom: 30px;
    FONT-SIZE: 21PX;
    LINE-HEIGHT: 28PX;
    LETTER-SPACING: 0.5PX;
}

.ks-btn{
  background:#ff7a2f;
  color:#fff;
  padding:14px 28px;
  text-decoration:none;
  transition:.3s;
}

.ks-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(255,122,47,.4);
}

/* ================= CONTROLS ================= */
.ks-controls{
  position:absolute;
  bottom:70px;
  width:100%;
  z-index:5;
  display:flex;
  justify-content:center;
}

/* dots */
.ks-dots{
     display: flex;
    gap: 14px;
    position: relative;
    top: 24px;
}

.ks-dot{
  width:60px;
  height:3px;
  background:#555;
  cursor:pointer;
}

.ks-dot.active{
  background:#ff7a2f;
}

/* arrows */
.ks-arrows{
  position:absolute;
  right:60px;
  display:flex;
  gap:12px;
}

.ks-arrows button{
  width:60px;
  height:60px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  transition:.3s;
}

.ks-arrows button:hover{
  background:#ff7a2f;
  transform:translateY(-4px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .ks-menu{display:none;}
  .ks-content h1{font-size:42px;}
}

@media(max-width:576px){
  .ks-content h1{font-size:30px;}
  .ks-arrows{right:20px;}
  .ks-dot{width:35px;}
}


/* ===== KS VISION SECTION ===== */

.ks-vision-section {
  background:#0b0b0b;
  color:#fff;
  padding:80px 20px;
  font-family:inherit;
}

.ks-vision-container {
  max-width:1300px;
  margin:auto;
  display:flex;
  gap:60px;
  align-items:center;
}

/* LEFT SIDE */
.ks-vision-content {
  flex:1;
}

.ks-vision-tag {
  color:#ff7a1a;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:15px;
}

.ks-vision-title {
  font-size:48px;
  margin-bottom:20px;
}

.ks-vision-desc {
  color:#cfcfcf;
  line-height:1.7;
  margin-bottom:20px;
}

.ks-vision-desc span {
  color:#ff7a1a;
}

.ks-vision-subdesc {
  color:#9a9a9a;
  margin-bottom:35px;
  line-height:1.6;
}

/* STAT BOXES */
.ks-vision-stats {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.ks-stat-box {
  background:#151515;
  padding:25px;
  border:1px solid #222;
}

.ks-stat-box h3 {
  font-size:28px;
  margin-bottom:8px;
}

.ks-stat-box p {
  font-size:12px;
  color:#aaa;
  letter-spacing:1px;
}

/* RIGHT GRID */
.ks-vision-gallery {
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.ks-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ks-img-large {
  grid-column:span 1;
}

.ks-img-tall {
  grid-row:span 2;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .ks-vision-container {
    flex-direction:column;
  }

  .ks-vision-title {
    font-size:36px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ks-vision-stats {
    grid-template-columns:1fr;
  }

  .ks-vision-gallery {
    grid-template-columns:1fr;
  }
}


/* Container */ 
.container{
  max-width:1270px;
  margin:auto;
  padding:0px 20px;
  text-align:center;
  position:relative;
}
 
 
 .cd-icon-box i{
    color: #2344a8!important;
 }
 .cd-icon-box i::hover{
    color: #fff!important;
 }
/* Background Grid */
.hero{
  position:relative;
  background:
    linear-gradient(to right,#e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom,#e2e8f0 1px, transparent 1px);
  background-size:50px 50px;
  padding:38px 0;
  overflow:hidden;
}

/* Background Circles */
.circle{
  position:absolute;
  border-radius:50%;
  background:#cbd5e1;
  opacity:.4;
}

.circle.left{
  width:225px;
  height:250px;
  left:-80px;
  bottom:-80px;
}

.circle.right{
  width:350px;
  height:350px;
  right:-120px;
  top:-80px;
}

/* Badge */
.badge{
  display:inline-block;
  background:white;
  border-radius:30px;
  padding:8px 18px;
  font-size:14px;
  margin-bottom:20px;
  border:1px solid #ddd;
}

/* Heading */
.hero h1{
  font-size:60px;
  font-weight:bold;
  color:#2d3748;
  margin-bottom:20px;
}

/* Sub Text */
.hero p{
  max-width:700px;
  margin:auto;
  color:#4a5568;
  font-size:18px;
  line-height:1.6;
  margin-bottom:35px;
}

/* Buttons */
.btn-group{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 28px;
  border-radius:6px;
  border:none;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.btn.primary{
  background:#2d3748;
  color:white;
}

.btn.primary:hover{
  background:#1a202c;
}

.btn.secondary{
  background:transparent;
  border:1px solid #2d3748;
  color:#2d3748;
}

.btn.secondary:hover{
  background:#2d3748;
  color:white;
}

/* Stats Section */
.stats{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat-box{
  background:white;
  padding:30px 20px;
  border-radius:8px;
  border:1px solid #e2e8f0;
}

.stat-box h2{
  font-size:32px;
  color:#2d3748;
}

.stat-box p{
  margin-top:8px;
  color:#718096;
}

/* Scroll Icon */
.scroll-icon{
  margin-top:40px;
  font-size:22px;
  color:#a0aec0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){

  .hero h1{
    font-size:42px;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:576px){

  .hero{
    padding:70px 0;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:16px;
  }

  .stats{
    grid-template-columns:1fr;
  }

}




/* ===== SECTION ===== */
.vision-section{
  position:relative;
  padding:50px 0px;
  /* background:
    linear-gradient(to right,#e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom,#e2e8f0 1px, transparent 1px); */
  background-size:50px 50px;
  overflow:hidden;
}



/* ===== Background Circles ===== */
.circle{
  position:absolute;
  border-radius:50%;
  background:#cbd5e1;
  opacity:.4;
  z-index:1;
}

.circle.top-left{
      width: 239px;
    height: 252px;
    left: -90px;
    top: -180px;
}

.circle.bottom-right{
  width:350px;
  height:350px;
  right:-120px;
  bottom:-120px;
}

/* ===== Badge ===== */
.badge{
  display:inline-block;
  padding:8px 20px;
  border-radius:30px;
  border:1px solid #d1d5db;
  background:white;
  font-size:14px;
  margin-bottom:25px;
}

/* ===== Heading ===== */
.vision-section h2{
      font-size: 48px;
    color: #1f2937;
    margin-bottom: 20px;
    margin-top: 10px;
}

.vision-section p{
  max-width:800px;
  margin:auto;
  font-size:18px;
  color:#4b5563;
  line-height:1.7;
  margin-bottom:60px;
}

/* ===== Cards ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.card{
    background: white;
    padding: 17px 10px 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: .3s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Icon Circle */
.icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px auto;
  font-size:22px;
}

/* Card Text */
.card h3{
  font-size:20px;
  margin-bottom:15px;
  color:#111827;
}

.card p{
  color:#6b7280;
  line-height:1.6;
  font-size: 17px;
    font-family: math;
    letter-spacing: 0.3px;
    margin-bottom:10px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px){

  .vision-section h2{
    font-size:36px;
  }

  .cards{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:576px){

  .vision-section{
    padding:70px 15px;
  }

  .vision-section h2{
    font-size:28px;
  }

  .vision-section p{
   font-size: 17px;
    font-family: math;
    letter-spacing: 0.3px;
  }

  .cards{
    grid-template-columns:1fr;
  }

}



/* ===== GLOBAL ===== */

/* ===== SECTION ===== */
.leadership-section{
  position:relative;
  padding:50px 20px;
  /* background:
    linear-gradient(to right,#e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom,#e2e8f0 1px, transparent 1px); */
  background-size:50px 50px;
  overflow:hidden;
}



/* ===== Badge ===== */
.badge{
  display:inline-block;
  padding:8px 20px;
  border-radius:30px;
  border:1px solid #d1d5db;
  background:white;
  font-size:14px;
  margin-bottom:20px;
}

/* ===== Heading ===== */
.leadership-section h2{
     font-size: 48px;
    color: #1f2937;
    margin-bottom: 15px;
    margin-top: 3px;
}

.subtitle{
  color:#4b5563;
  font-size:18px;
  margin-bottom:60px;
}

/* ===== Main Card ===== */
.leader-card{
  display:grid;
  grid-template-columns: 1fr 1.7fr;
  background:white;
  border:1px solid #e5e7eb;
  border-radius:8px;
  overflow:hidden;
  text-align:left;
}

/* ===== Image Side ===== */
.image-side{
  background:#2f3b4a;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.image-side img{
  width:100%;
  /*border-radius:10px;*/
  object-fit:cover;
}

/* Decorative Circle */
.image-side::after{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  background:#3f4c5e;
  border-radius:50%;
  bottom:-80px;
  left:-80px;
  opacity:.6; 
}

/* ===== Content Side ===== */
.content-side{
      padding: 30px 40px 50px;
}

.content-side h3{
  font-size:34px;
  margin-bottom:5px;
  color:#111827;
}

.role{
  color:#6b7280;
  font-weight:600;
  margin-bottom:20px;
}

.content-side p{
    color: #222;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 17px;
    font-family: math;
    letter-spacing: 0.3px;
}

/* ===== Feature Boxes ===== */
.feature{
  display:flex;
  gap:15px;
  padding:15px;
  border:1px solid #e5e7eb;
  border-radius:6px;
  margin-bottom:15px;
  background:#f9fafb;
}

.icon2{
  width:65px;
  height:65px;
  border-radius:8px;
  background:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.feature h4{
  font-size:16px;
  margin-bottom:5px;
}

.feature p{
  font-size:14px;
  margin:0;
  color:#6b7280;
}

/* ===== Background Circles ===== */
.circle{
  position:absolute;
  border-radius:50%;
  background:#cbd5e1;
  opacity:.4;
  z-index:1;
}

.circle.top-right{
       width: 320px;
    height: 300px;
    right: -84px;
    top: -216px;
}

.circle.bottom-left{
  width:250px;
  height:250px;
  left:-100px;
  bottom:-100px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

  .leadership-section h2{
    font-size:36px;
  }

  .leader-card{
    grid-template-columns:1fr;
  }

  .image-side{
    padding:40px 0;
  }

  .image-side img{
    width:60%;
  }

}

@media(max-width:576px){

  .leadership-section{
    padding:70px 15px;
  }

  .leadership-section h2{
    font-size:28px;
  }

  .subtitle{
    font-size:16px;
  }

  .content-side{
    padding:30px 20px;
  }

  .image-side img{
    width:80%;
  }

}




/* ===== Consortium Section ===== */
.rc-consortium {
  padding: 80px 20px;
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}

.rc-container {
  max-width: 1270px;
  margin: auto;
}

.rc-header {
  text-align: center;
  margin-bottom: 50px;
}

.rc-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #e9eef5;
  color: #333;
  margin-bottom: 15px;
}

.rc-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.rc-header p {
  max-width: 600px;
  margin: auto;
  color: #666;
}

/* Grid */
.rc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.rc-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e0e6ed;
  transition: 0.3s ease;
}

.rc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Logo */
.rc-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 0px;
}

/* Text */
.rc-card h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.rc-card h4 {
  font-size: 14px;
  color: #635e5e;
  margin-bottom: 10px;
}

.rc-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Special Highlight Card */
.rc-highlight {
  border: 2px dashed #cfd8e3;
  background: #fafbfd;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
  .rc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .rc-grid {
    grid-template-columns: 1fr;
  }

  .rc-header h2 {
    font-size: 28px;
  }
}



/* ===== WRAPPER ===== */
.kp-section{
  background:#f5f7fa;
  padding:90px 20px;
  font-family:Poppins, sans-serif;
  position:relative;
  overflow:hidden;
}

/* top circle background */
.kp-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:#e6eaef;
  border-radius:50%;
  top:-220px;
  left:50%;
  transform:translateX(-50%);
  z-index:0;
}

/* container */
.kp-container{
  max-width:1000px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:1;
}

/* label */
.kp-badge{
  display:inline-block;
  background:#eef2f7;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:14px;
}

/* title */
.kp-title{
  font-size:36px;
  font-weight:600;
  margin-bottom:30px;
  color:#111827;
}

/* quote box */
.kp-highlight{
     background: #fff;
    border: 1px solid #6b7280;
    border-radius: 12px;
    padding: 27px 76px;
    max-width: 888px;
    margin: 0 auto 45px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    font-size: 24px;
    line-height: 1.6;
    color: #1f2937;
}

/* FEATURES */
.kp-features{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

/* feature item */
.kp-item{
  text-align:center;
  max-width:220px;
}

/* icon circle */
.kp-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#eef2f7;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
  transition:all .35s ease;
}

.kp-icon i{
  font-size:18px;
  color:#374151;
  transition:.35s ease;
}

/* hover animation */
.kp-item:hover .kp-icon{
  background:#111827;
  transform:translateY(-5px) scale(1.1);
}

.kp-item:hover .kp-icon i{
  color:#fff;
  transform:rotate(10deg);
}

/* headings */
.kp-item h4{
  font-size:15px;
  font-weight:600;
  margin-bottom:5px;
  color:#111827;
}

/* small text */
.kp-item p{
  font-size:13px;
  color:#6b7280;
}

/* bottom paragraph */
.kp-bottom-text{
      max-width: 560px;
    margin: auto;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  .kp-title{
    font-size:28px;
  }

  .kp-highlight{
    font-size:16px;
    padding:22px;
  }

  .kp-features{
    gap:30px;
  }
}

@media(max-width:480px){

  .kp-section{
    padding:70px 15px;
  }

  .kp-highlight{
    font-size:15px;
  }

}

/* ==============================
   FULL FOOTER ISOLATION
   ============================== */
   
   
   /* Root footer wrapper */
.tc-footer {
     background-color: #ecf2f3;
    padding: 60px 20px 30px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Container */
.tc-footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo section */
.tc-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tc-footer-logo img {
  width: 40px;
  height: auto;
}

.tc-footer-logo h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.tc-footer-logo h2 span {
  font-weight: 400;
}

/* Tagline */
.tc-footer-tagline {
  margin-top: 12px;
  font-size: 16px;
  color: #555;
}

/* Made in Bharat */
.tc-footer-made {
  margin-top: 8px;
  font-size: 15px;
  color: #444;
}

.tc-heart {
  color: #ff4d4d;
  margin: 0 4px;
}

/* Social icons */
.tc-footer-socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.tc-footer-socials a img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tc-footer-socials a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* Copyright */
.tc-footer-copy {
  margin-top: 28px;
  font-size: 14px;
  color: #888;
}

/* 📱 Responsive tweaks */
@media (max-width: 480px) {
  .tc-footer {
    padding: 40px 15px 25px;
  }

  .tc-footer-logo h2 {
    font-size: 22px;
  }

  .tc-footer-tagline,
  .tc-footer-made {
    font-size: 14px;
  }
}

