﻿/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}

:root {
    --primary: #433266;
    --secondary: #E17F00;
    --accent:#E0D1FF;
    --background:#FAFAFF;
    --text:#1C1C1C;
    --radius:6px;
    --transition:0.3s ease;
    --border: #c7bffb;
    --shadow: rgba(76, 59, 203, 0.1);
    --bg: #fafaff;
}

body{
  font-family:"Kaushan Script", cursive;
  background:var(--background);
}

/* HEADER */
.edu-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 3px 12px rgba(0,0,0,0.05);
}

/* CONTAINER */
.edu-container{
  max-width:1200px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.edu-logo{
  font-family:"Josefin Sans", sans-serif;
  font-size:1.6rem;
  font-weight:900;
  color:var(--primary);
  text-decoration:none;
}

/* DESKTOP MENU */
.edu-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:26px;
}

.edu-menu a{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  font-size:16px;
  transition:var(--transition);
  padding: 10px;
  letter-spacing: 2px;
}

/* HOVER */
.edu-menu a:hover{
  color:var(--secondary);
}

/* DROPDOWN DESKTOP */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:110%;
  left:0;
  min-width:200px;
  background:#fff;
  border-radius:var(--radius);
  list-style:none;
  padding:8px 0;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:var(--transition);
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li a{
  display:block;
  padding:10px 14px;
  color:var(--text);
  white-space:nowrap;
}

/* ENROLL BUTTON */
.btn-enroll{
  background:var(--primary);
  color:white !important;
  padding:8px 18px;
  border-radius:var(--radius);
}

/* MOBILE TOGGLE */
.edu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:var(--primary);
}

/* ===============================
   MOBILE FIXES BELOW
=============================== */
@media(max-width:900px){

  .edu-toggle{display:block;}

  /* MOBILE NAV PANEL */
  .edu-nav{
    position:fixed;
    right:-260px;
    top:72px;
    width:260px;
    height:calc(100vh - 72px);
    background:white;
    padding:20px;
    box-shadow:-4px 0 16px rgba(0,0,0,0.1);
    transition:0.35s ease;
    overflow-y:auto;
  }

  .edu-nav.show{
    right:0;
  }

  .edu-menu{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    gap:0;
  }

  .edu-menu li{
    width:100%;
    border-bottom:1px solid #f2f2f2;
    padding: 20px;
  }

  .edu-menu a{
    padding:14px 12px;
    width:100%;
  }

  /* ↓↓↓ FIX FOR EMPTY WHITE SPACE */
  .dropdown-menu{
    position:static;
    display:none;
    width:100%;
    background:#fafafa;
    border-left:3px solid var(--accent);
    box-shadow:none;
    padding:6px 0 6px 10px;
    opacity:1 !important;
    visibility:visible !important;
  }

  /* ONLY SHOW WHEN CLICKED */
  .dropdown.open .dropdown-menu{
    display:block;
  }

  /* Dropdown link contrast fix */
  .dropdown-menu li a{
    color:var(--text);
    padding:8px 4px;
  }
}

/* ANIMATIONS */
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-4px);}
  to{opacity:1;transform:translateY(0);}
}
/* Slider Wrapper */
.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* Slide Item */
.hero-slider .slide {
  width: 100%;
  display: none;
}

.hero-slider .slide.active {
  display: block;
}

/* Image Scaling */
.hero-slider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background:#000;
}

/* Navigation Buttons */
.hero-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 4px;
  transition: 0.3s;
}

.hero-slider .nav:hover {
  background: rgba(0,0,0,0.7);
}

.hero-slider .prev { left: 10px; }
.hero-slider .next { right: 10px; }

/* Dots Navigation */
.hero-slider .dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-slider .dots div {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.hero-slider .dots .active {
  background: #fff;
}

/* ======== ABOUT SECTION ======== */
.about-section {
  width: 100%;
  padding: 80px 0;
  background: #FAFAFF;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

/* ======== TEXT SIDE ======== */
.about-text {
  flex: 1;
  z-index: 2;
}

.about-text h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #433266;
  margin-bottom: 18px;
}

.about-text p {
  font-family: "Kaushan Script", cursive;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #1C1C1C;
}

.cta-btn {
  margin-top: 18px;
  padding: 12px 22px;
  border: none;
  background: #433266;
  color: #fff;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 2px;
  font-size: 20px;
}

.cta-btn:hover {
  background: #524273;
}

/* ======== IMAGE SIDE ======== */
.about-image-wrapper {
  flex: 1;
  position: relative;
  height: 380px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 85% 0, 100% 25%, 100% 100%, 15% 100%, 0 75%);
  position: relative;
  z-index: 2;
  border-radius: 6px;
}

/* ======== OFFSET BACK SHAPE ======== */
.bg-shape {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #E0D1FF;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  border-radius: 6px;
  transition: 0.3s ease;
}

/* Adds hover depth */
.about-image-wrapper:hover .bg-shape {
  transform: translate(6px, 6px);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image-wrapper {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .about-text h2 {
    font-size: 2rem;
  }
  .about-image-wrapper {
    height: 240px;
  }
}
 
.leadership-section {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

/* Row Wrapper */
.leader-row {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 120px auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Reverse second block */
.leader-row.reverse {
  flex-direction: row-reverse;
}

/* Content Card */
.leader-content {
  background: #fff;
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  width: 55%;
  position: relative;
  z-index: 2;
}

.leader-title {
  font-size: 1.9rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.leader-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #444;
}

.leader-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

/* Image Box */
.leader-img-wrapper {
  width: 340px;
  height: 430px;
  position: relative;
  z-index: 3;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Decorative Background Card */
.leader-row::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 14px;
  width: 380px;
  height: 380px;
  background: var(--accent);
  border-radius: 18px;
  transform: rotate(4deg);
  z-index: 1;
  opacity: 0.5;
}

.leader-row.reverse::before {
  left: 14px;
  right: auto;
  transform: rotate(-4deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .leader-row,
  .leader-row.reverse {
    flex-direction: column;
  }

  .leader-content {
    width: 100%;
    text-align: center;
  }

  .leader-img-wrapper {
    margin-top: -20px;
    width: 280px;
    height: 360px;
  }

  .leader-row::before,
  .leader-row.reverse::before {
    display: none;
  }

  .leader-title {
    font-size: 1.6rem;
  }
}


.programs-section {
    padding: 150px 40px;
    background:  url('../images/a1.png') center no-repeat ;
     background-size: cover;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #433266;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 25px;
}

.programs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Arrow Buttons */
.arrow {
  background: #43326600;
  color: #433266;
  border: none;
  font-size: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}

.arrow:hover { 
  color: #e17f00
}

/* Scroll container */
.cards-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 16px);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.cards-scroll::-webkit-scrollbar {
  display: none;
}

/* Cards */
.program-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.program-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.program-card h3 {
  font-size: 1.08rem;
  font-family: "Josefin Sans", sans-serif;
  margin: 14px 14px 6px;
  color: #111;
  font-weight: 700;
}

.program-card p {
  margin: 0 14px 16px;
  font-size: 0.88rem;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-scroll { grid-auto-columns: calc(33.33% - 14px); }
}

@media (max-width: 768px) {
  .cards-scroll { grid-auto-columns: calc(50% - 12px); }
}

@media (max-width: 480px) {
  .cards-scroll { grid-auto-columns: calc(75% - 10px); }
}

.edu-footer {
  background: #181931;
  color: #d9d9d9;
  padding-top: 50px; 
}
.edu-footer h3 {
    
  font-family: "Josefin Sans", sans-serif;
}
 strong{
    
  font-family: "Josefin Sans", sans-serif;
}
.footer-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0 20px 40px;
}

.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.footer-box p {
  font-size: 0.95rem;
  line-height: 1.5rem;
  letter-spacing: 1px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-box ul li a {
  color: #d9d9d9;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-box ul li a:hover {
  color: var(--secondary);
  letter-spacing: 3px;
}

.social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d2d48;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--secondary);
}

.visitors {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #fff;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  color: #999;
  border-top: 1px solid #262742;
  font-size: 0.9rem;
}


.contact-banner {
  width: 100%;
  height: 280px;
  background: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 40, 0.55);
}

.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: "Josefin Sans", sans-serif;
}

.banner-content p {
  font-size: 1rem;
  opacity: 0.9;
  font-family: "Kaushan Script", cursive;
}

@media (max-width: 768px) {
  .contact-banner {
    height: 200px;
  }
  .banner-content h1 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 0.9rem;
  }
}
.contact-floating {
  position: relative;
  padding: 0;
  margin-bottom: 80px;
}

.map-area iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.contact-card {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff0;
  padding: 10px;
  width: 335px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-family: "Josefin Sans", sans-serif;
}

.contact-card h3 {
  margin-bottom: 14px;
  color: #433266;
  font-weight: 800;
  font-size: 1.8rem;
  background: #fff;
  padding: 10px;
  text-align: center;
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #444;
  font-family: "Kaushan Script", cursive;
  border: 1px solid #444;
  padding: 10px;
  background: #fff;
}

@media (max-width: 768px) {
  .contact-card {
    position: static;
    width: 100%;
    margin-top: 20px;
    box-shadow: none;
    border-radius: 0;
  }
}

 

/* Wrapper Background */
.edu-contact-shell {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(145deg, #EEEAFE, #fafaff);
}

/* Main Card */
.edu-contact-card {
    width: 100%;
    max-width: 880px;
    background: white;
    border: 3px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 50px;
    box-shadow: 0 0 0 6px white, 0 12px 25px var(--shadow);
    position: relative;
    animation: floatUp .6s ease-out;
}

/* Header content */
.edu-contact-title {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.edu-contact-sub {
    color: #444;
    margin-bottom: 30px;
    font-size: .95rem;
}

/* Field Rows */
.edu-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 20px;
}

/* Fields */
.edu-field {
    display: flex;
    flex-direction: column;
}

.edu-field label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: .5px;
    text-align: initial;
}

/* Inputs */
.edu-field input,
.edu-field textarea {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    background: var(--bg);
    font-size: .95rem;
    color: var(--text);
    transition: var(--transition);
}

/* Focus Animation */
.edu-field input:focus,
.edu-field textarea:focus {
    border-color: var(--secondary);
    background: #fff;  
    box-shadow: 0 0 0 3px #E17F004F;
    transform: translateY(-2px);
}

/* Large Row Layout */
.edu-field textarea {
    resize: none;
    margin-bottom: 10px;
}

/* Button */
.edu-action {
    text-align: center;
}

.edu-btn-send {
    background: var(--primary);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 38px;
    letter-spacing: .3px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Montserrat", sans-serif;
}

.edu-btn-send:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Appearing Animation */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .edu-field-row {
        grid-template-columns: 1fr;
    }

    .edu-contact-card {
        padding: 30px 24px;
    }
}
 
/* =============================
   GALLERY BANNER
============================= */
.gallery-banner {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--primary) 0%, #584975 40%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 25px;
    overflow: hidden;
    color: #fff;
}

/* Decorative Shapes */
.gallery-banner::before,
.gallery-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
}

.gallery-banner::before {
    width: 380px;
    height: 380px;
    background: var(--accent);
    top: -80px;
    left: -60px;
}

.gallery-banner::after {
    width: 280px;
    height: 280px;
    background: var(--secondary);
    bottom: -60px;
    right: -50px;
    opacity: 0.22;
}

.banner-inner {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.banner-inner h1 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.banner-inner p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-banner {
        height: 240px;
    }
    .banner-inner h1 {
        font-size: 2rem;
    }
    .banner-inner p {
        font-size: 0.92rem;
    }
}

 

/* MAIN SECTION */
.edu-gallery-section {
    padding: 80px 40px;
    background: var(--background);
    text-align: center;
}

/* HEADER */
.gallery-header h2 {
    font-size: 2.4rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.gallery-header p {
    color: #555;
    margin-bottom: 30px;
}

/* FILTER BUTTONS */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.gallery-filters button {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.gallery-filters button:hover,
.gallery-filters button.active {
    background: var(--primary);
    color: #fff;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 22px;
}

/* ITEMS */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
}
.gallery-item {
    display: flex;        /* so display:flex works */
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* HOVER OVERLAY */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: #E17F007D;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width:768px) {
    .edu-gallery-section {
        padding: 50px 20px;
    }
    .gallery-header h2 {
        font-size: 2rem;
    }
}
:root {
  --primary:#433266;
  --secondary:#E17F00;
  --text:#1C1C1C;
  --light:#fafaff;
  --transition:.3s ease;
}

/* BASE HERO */
.admission-hero-diagonal {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:90px 8%;
  background:var(--light);
  position:relative;
  overflow:hidden;
}

/* DIAGONAL COLOR OVERLAY */
.admission-hero-diagonal::before {
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:50%;
  height:100%;
  background:var(--primary);
  clip-path:polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index:1;
}

/* CONTENT AREA */
.admission-content {
  width:48%;
  z-index:2;
}

.admission-content h1 {
  font-size:3rem;
  font-weight:900;
  color:var(--primary);
  font-family:"Montserrat", sans-serif;
  margin-bottom:10px;
  line-height:1.2;
}

.admission-content h1 span {
  color:var(--secondary);
}

.admission-content p {
  font-size:1.05rem;
  color:#444;
  margin-bottom:26px;
  max-width:450px;
  line-height:1.5;
}

/* BUTTONS */
.admission-actions {
  display:flex;
  gap:14px;
}

.primary-btn {
  background:var(--secondary);
  color:#fff;
  padding:12px 26px;
  text-decoration:none;
  font-weight:700;
  border-radius:6px;
  transition:var(--transition);
}

.primary-btn:hover {
  background:#c46c00;
}

.outline-btn {
  border:2px solid var(--primary);
  padding:10px 26px;
  text-decoration:none;
  color:var(--primary);
  font-weight:700;
  border-radius:6px;
  transition:var(--transition);
}

.outline-btn:hover {
  background:var(--primary);
  color:#fff;
}

/* IMAGE HOLDER */
.admission-image {
  width:48%;
  height:368px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  z-index:2;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.admission-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:992px){
  .admission-hero-diagonal {
    flex-direction:column;
    text-align:center;
  }

  .admission-hero-diagonal::before {
    width:100%;
    height:40%;
    top:auto;
    bottom:0;
    clip-path:polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
  }

  .admission-content, .admission-image {
    width:100%;
  }

  .admission-content p {
    margin:auto;
  }

  .admission-actions {
    justify-content:center;
  }

  .admission-image {
    margin-top:30px;
    height:300px;
  }
}

@media(max-width:600px){
  .admission-content h1 {
    font-size:2.2rem;
  }
}

:root {
  --primary: #433266;
  --secondary: #E17F00;
  --bg: #fafaff;
  --shadow: rgba(67, 50, 102, 0.15);
}

.why-choose {
  padding: 100px 40px;
  background: var(--bg);
  position: relative;
}

/* Slanted Header Bar */
.why-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.why-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary);
  margin-bottom: 6px;
}

.why-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Slanted Card Style */
.why-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: 14px;
  border-left: 6px solid var(--secondary);
  box-shadow: 0 8px 26px var(--shadow);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(67, 50, 102, 0.25);
}

/* Diagonal Accent Corner */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  opacity: 0.08;
  transform: rotate(45deg);
  border-radius: 16px;
}

/* Icon */
.icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

/* Title */
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: "Josefin Sans", sans-serif;
}

/* Text */
.why-card p {
  font-size: .9rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media(max-width: 768px) {
  .why-choose { padding: 70px 24px; }
  .why-header h2 { font-size: 1.9rem; }
}
:root {
  --primary: #433266;
  --secondary: #E17F00;
  --bg: #fafaff;
  --text: #1C1C1C;
  --shadow: rgba(0,0,0,0.08);
}

.grades-section {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}

.grades-title {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary);
  margin-bottom: 6px;
}

.grades-subtext {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #555;
  font-size: .95rem;
}

/* Cards Wrapper */
.grades-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: auto;
}

/* Individual Card */
.grade-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  transition: .3s ease;
  position: relative;
}

.grade-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Color Header */
.grade-top {
  height: 80px;
  width: 100%;
}

/* Grade Colors */
.color-1 { background: #A6DCEF; }
.color-2 { background: #F6D186; }
.color-3 { background: #B4E197; }
.color-4 { background: #F1A7A7; }

/* Content Area */
.grade-content {
  padding: 20px 18px 28px;
}

.grade-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
  color: var(--primary);
  margin-bottom: 4px;
}

.grade-content p {
  margin: 0;
  font-size: .92rem;
  color: #444;
  margin-bottom: 6px;
  font-weight: 500;
}

.grade-content span {
  font-size: .8rem;
  color: #777;
  display: block;
}

/* Responsive */
@media(max-width: 992px) {
  .grades-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .grades-section { padding: 70px 20px; }
  .grades-wrapper {
    grid-template-columns: 1fr;
  }
}
:root {
  --primary:#433266;
  --secondary:#E17F00;
  --text:#333;
  --bg:#fafaff;
  --glass-bg:rgba(255,255,255,0.65);
  --border:rgba(255,255,255,0.5);
  --shadow:0 8px 24px rgba(0,0,0,0.08);
  --radius:14px;
  --transition:0.35s ease;
}

.admission-process-glass {
  background:var(--bg);
  padding:80px 30px;
  text-align:center;
}

.admission-process-glass .title {
  font-size:2.2rem;
  font-weight:800;
  color:var(--primary);
  margin-bottom:6px;
  font-family:"Josefin Sans", sans-serif;
}

.admission-process-glass .subtitle {
  color:#555;
  margin-bottom:42px;
  font-size:0.95rem;
}

.glass-steps {
  display:flex;
  gap:24px;
  overflow-x:auto;
  padding-bottom:8px;
  scrollbar-width:none;
}
.glass-steps::-webkit-scrollbar { display:none; }

/* Individual step cards */
.glass-step {
  min-width:240px;
  background:var(--glass-bg);
  border:1px solid var(--border);
  backdrop-filter:blur(8px);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 18px;
  text-align:center;
  transition:var(--transition);
  cursor:default;
}

.glass-step:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* Number styles */
.step-number {
  width:46px;
  height:46px;
  border-radius:50%;
  margin:auto;
  background:var(--secondary);
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:12px;
}

.glass-step h3 {
  font-size:1rem;
  color:var(--primary);
  font-weight:700;
  margin-bottom:8px;
}

.glass-step p {
  font-size:0.85rem;
  color:#555;
  line-height:1.35rem;
}

/* Responsive Stack */
@media(max-width:768px) {
  .glass-steps {
    gap:18px;
  }
  .glass-step {
    min-width:200px;
  }
}
:root {
  --primary:#433266;
  --secondary:#E17F00;
  --accent:#E0D1FF;
  --bg:#fafaff;
  --text:#333;
  --radius:8px;
}

.docs-required {
  background:var(--bg);
  padding:80px 30px;
  text-align:center;
}

.section-title {
  font-size:2rem;
  font-weight:800;
  color:var(--primary);
  margin-bottom:10px;
  font-family:"Josefin Sans",sans-serif;
}

.section-subtitle {
  font-size:0.95rem;
  color:#555;
  margin-bottom:30px;
}

.docs-list {
  max-width:600px;
  margin:auto;
  text-align:left;
  display:grid;
  gap:14px;
}

.doc-item {
  background:#fff;
  border-left:4px solid var(--secondary);
  border-radius:var(--radius);
  padding:12px 14px;
  font-size:0.95rem;
  color:var(--text);
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
}

.check {
  color:var(--secondary);
  font-weight:700;
  font-size:1.1rem;
}
.fees-overview {
  padding:80px 30px;
  background:#fff;
  text-align:center;
}

.fees-table-wrap {
  max-width:700px;
  margin:30px auto 0;
  overflow-x:auto;
  border-radius:var(--radius);
}

.fees-table {
  width:100%;
  border-collapse:collapse;
  font-size:0.95rem;
  color:#333;
  min-width:480px;
}

.fees-table thead {
  background:var(--primary);
  color:#fff;
}

.fees-table th,
.fees-table td {
  padding:12px 16px;
  border:1px solid #ddd;
  text-align:left;
}

.fees-table tbody tr:nth-child(even) {
  background:#fafaff;
}

.note {
  margin-top:16px;
  font-size:0.8rem;
  color:#666;
}


.ai-lab-unique {
    position: relative;
    padding: 120px 20px;
    background: #fafaff;
    overflow: hidden;
}

/* Wrapper Layout */
.ai-lab-wrapper {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
}

/* Tilt Panel */
.ai-tilt-panel {
    flex: 1 1 500px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    transform: rotate(-2deg);
    border: 1px solid rgba(124, 83, 255, 0.12);
    box-shadow: 0 6px 20px rgba(124, 83, 255, 0.10);
}

/* Headline */
.ai-tilt-panel h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 800;
    font-family: "Josefin Sans", sans-serif;
    color: #433266;
}
.ai-tilt-panel h2 span {
    color: #433266;
}

.ai-tilt-panel p {
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
    font-size: 1rem;
}

/* Code Style Block */
.ai-code-block {
    background: #0d0d1a;
    color: #00ffd0;
    padding: 14px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
    margin-bottom: 18px;
    font-family: "Courier New", monospace;
    border-left: 4px solid #E17F00;
}

/* Features */
.ai-features {
    list-style: none;
    padding: 0;
}
.ai-features li {
    background: #f1ecff;
    margin-bottom: 8px;
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 3px solid #E17F00;
    transition: 0.3s;
}
.ai-features li:hover {
    background: #e4daff;
    transform: translateX(4px);
}

/* Right Image Panel */
.ai-image-panel {
    flex: 1 1 400px;
    text-align: center;
}
.ai-image-panel img {
    width: 100%;
    max-width: 360px;
    animation: floatBot 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatBot {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Decorative AI Rings */
.ai-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(124, 83, 255, 0.3);
    border-radius: 50%;
}
.ring1 { top: -40px; right: 10%; }
.ring2 { bottom: -50px; left: 5%; }

/* Responsive */
@media (max-width: 992px) {
    .ai-tilt-panel { transform: none; }
    .ai-lab-wrapper { gap: 30px; }
    .ai-tilt-panel h2 { font-size: 2rem; }
}
 
.ai-tools-future {
  padding: 20px 40px;
  background:#fafaff;
}

.ai-tools-inner {
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.tools-header {
  font-size:2.2rem;
  font-weight:800;
  font-family:"Josefin Sans", sans-serif;
  color:var(--primary);
  margin-bottom:10px;
}

.tools-desc {
  color:#444;
  margin-bottom:50px;
  font-size:1rem;
}

.tools-categories {
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

/* =========== Unique Ring Category ========== */
.tool-ring {
  flex:1;
  min-width:290px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.tool-circle {
  width:150px;
  height:150px;
  border-radius:50%;
  background:linear-gradient(145deg, #e9e5ff, #ffffff);
  border:4px solid #844E2D;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 22px var(--shadow);
  transition:0.3s ease;
}

.tool-circle span {
  font-weight:700;
  font-size:1rem;
  color:var(--primary);
}

.tool-circle.hardware { border-color:#327116; }
.tool-circle.platform { border-color:#1e6a82; }

/* Hover Effects */
.tool-circle:hover {
  transform:scale(1.07);
}

/* Tool List */
.tool-list {
  list-style:none;
  margin-top:22px;
  padding:0;
  width:100%;
}

.tool-list li {
  background:#ffffff;
  margin:8px auto;
  width:80%;
  padding:10px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,0.08);
  font-size:0.9rem;
  color:#333;
  transition:0.25s ease;
  text-align:center;
  box-shadow:0 4px 10px var(--shadow);
}

/* Chip Hover */
.tool-list li:hover {
  background:var(--secondary);
  color:#fff;
  transform:translateY(-4px);
}

/* Responsive */
@media (max-width:900px) {
  .tools-categories { justify-content:center; }
}

@media (max-width:600px) {
  .tool-circle { width:130px; height:130px; }
}
.tool-circle {
  position: relative;
  overflow: hidden;
  /* existing styles remain */
}

/* Overlay Layer (initially invisible) */
.tool-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* adjust for darker/lighter overlay */
  opacity: 0;
  transition: 0.3s ease;
}

/* Text styling */
.tool-circle span {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: 0.3s ease;
  font-family: "Josefin Sans", sans-serif;
}

/* Hover → reveal overlay + text */
.tool-circle:hover::after {
  opacity: 1;
}

.tool-circle:hover span {
  opacity: 1;
}
.ai-projects {
  padding: 70px 40px;
  background: #fafaff;
  text-align: center;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: #433266;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 22px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.project-card h3 {
  margin: 12px 0 16px;
  font-size: 1.05rem;
  color: #111;
  font-weight: 700;
}

/* Hover Effect */
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* MODAL */
.project-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.project-modal.show {
  display: flex;
}

.modal-body {
  background: #fff;
  max-width: 850px;
  width: 95%;
  padding: 18px 20px;
  border-radius: 10px;
  text-align: center;
  animation: zoomIn 0.32s ease;
}

.modal-body img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 14px;
}

.modal-body h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #433266;
  font-family: "Josefin Sans", sans-serif;
}

.modal-body p {
  font-size: 0.95rem;
  color: #444;
}

/* Close Button */
.modal-close {
  float: right;
  font-size: 26px;
  cursor: pointer;
  margin-bottom: 8px;
  color: #111;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Prevent modal overflow */
.project-modal {
  overflow: hidden; /* No scrollbars on overlay */
}

/* Ensure modal content fits without overflow */
.modal-body {
  max-height: 95vh;       /* Fit inside viewport */
  overflow: hidden;       /* No inner scroll */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Make image always fully visible */
.modal-body img {
  max-height: 70vh;       /* Reserve space for title + close btn */
  width: auto;
  height: auto;
  object-fit: contain;    /* FULL image always visible */
}

/* Section Wrapper */
.robotics-hero-unique {
    display: flex;
    align-items: center;
    padding: 120px 6%;
    background: #0B0D15;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Left Content */
.robotics-hero-content {
    flex: 1;
    z-index: 2;
}

.robotics-hero-content .mini-title {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Josefin Sans", sans-serif
}

.robotics-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 800;
}

.glow-text {
    background: linear-gradient(90deg, var(--secondary), #A997FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 0px 8px rgba(127,126,255,0.5));
}

/* Paragraph */
.robotics-hero-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* CTA Button */
.cta-btn {
    background: #7F7EFF;
    padding: 12px 30px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Right Visual Area */
.robotics-hero-visual {
    flex: 1;
    position: relative;
    min-height: 350px;
}

/* Main Robot Image */
.robot-main {
    width: 380px;
    position: relative;
    z-index: 3;
    animation: floatRobot 4s ease-in-out infinite;
}

/* Floating Shapes */
.floating-circle,
.floating-square,
.floating-triangle {
    position: absolute;
    background: rgba(127,126,255,0.15);
    backdrop-filter: blur(3px);
    animation: floatShapes 6s infinite ease-in-out;
    border: 1px solid rgba(127,126,255,0.4);
    z-index: 1;
}

.floating-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 10%;
    left: 20%;
}

.floating-square {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 65%;
    transform: rotate(30deg);
}

.floating-triangle {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 70px solid rgba(127,126,255,0.2);
    top: 40%;
    left: 80%;
}

/* Glow Ring */
.glow-ring {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px dashed rgba(127,126,255,0.3);
    position: absolute;
    top: 15%;
    left: 22%;
    animation: ringRotate 12s linear infinite;
}

/* Glow Orbit */
.glow-orbit {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px solid rgba(127,126,255,0.15);
    position: absolute;
    top: 8%;
    left: 10%;
    animation: pulseOrbit 4s ease-in-out infinite;
}

/* Animations */
@keyframes floatRobot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(10deg); }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseOrbit {
    0%, 100% { transform: scale(1); opacity: .5; }
    50% { transform: scale(1.07); opacity: .8; }
}

/* Responsive */
@media (max-width: 900px) {
    .robotics-hero-unique {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }

    .robotics-hero-visual {
        margin-top: 40px;
    }

    .robot-main {
        width: 260px;
    }
}

/* Section Wrapper */
.robot-tools-section {
    background: var(--dark);
    padding: 100px 6%;
    color: var(--text);
    text-align: center;
}

/* Heading */
.robot-tools-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
      color: var(--primary);
  font-family: "Josefin Sans", sans-serif;
}

.robot-tools-header p {
    max-width: 650px;
    margin: auto;
    opacity: 0.85;
    font-size: 1.05rem;
}

/* Tools Grid */
.robot-tools-grid {
    display: grid;
    margin-top: 60px;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Tool Box */
.tool-box {
    background: rgba(255,255,255,0.02);
  border: 1px solid rgba(67, 50, 102, 0.11);
  padding: 30px;
  border-radius: var(--radius);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

/* Hover Glow */
.tool-box:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(127,126,255,0.35);
}

/* Icon Circle */
.tool-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 18px;
    background: rgba(127,126,255,0.16);
    border: 1px solid rgba(127,126,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon-circle img {
    width: 40px;
    height: 40px;
    filter: brightness(1.3);
}

/* Title */
.tool-box h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 700;
      color: var(--secondary);
  font-family: "Josefin Sans", sans-serif;
}

/* Tags */
.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tool-tags span {
    border: 1px solid var(--secondary);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  transition: 0.25s;
}

/* Tag Hover */
.tool-tags span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .robot-tools-header h2 {
        font-size: 2rem;
    }
}
.projects-achievements {
  padding: 90px 40px;
  background: #F9F8FE;
  font-family: "Poppins", sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: #433266;
  font-size: 2.2rem;
  font-weight: 800;
}

.section-title p {
  color: #5f5c6b;
  font-size: 1rem;
  margin-top: 8px;
}

.projects-layout {
  display: flex;
  gap: 30px;
}

.featured-project {
  flex: 2;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.featured-project img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.featured-info {
  padding: 20px;
}

.featured-info h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #433266;
}

.badge {
  display: inline-block;
  margin: 8px 0;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.badge.gold { background: linear-gradient(45deg, #d7a401, #ffdf51); }

.featured-info p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.project-thumbs {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.thumb {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: 0.25s;
}

.thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.thumb:hover,
.thumb.active {
  border-color: #433266;
}
@media (max-width:900px){
  .projects-layout {
    flex-direction: column;
  }
  .thumb img { height: 120px; }
}

.drone-command {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1250px;
  margin: auto;
  padding: 50px 30px;
  align-items: center; 
}

/* Left Side */
.cmd-title {
  color: var(--secondary);
  display: inline-block;
  padding: 6px 0px;
  font-size: 0.8rem;
  border-radius: 6px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.drone-command h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;  
  font-family: "Josefin Sans", sans-serif;
}

.drone-command p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 22px;
}

.flight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.flight-chips .chip {
  background: var(--light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #dfdde9;
  font-family: "Josefin Sans", sans-serif;
}

/* Mission Timeline */
.mission-log {
  border-left: 2px dashed var(--accent);
  padding-left: 20px;
  margin-top: 10px;
}

.log-item {
  margin-bottom: 14px;
  position: relative;
}

.log-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -26px;
  top: 5px;
}

.log-item p {
  margin: 0;
  font-size: 0.9rem;
  color:#1b1b1b;
}

/* Right Radar Image */
.command-right {
  display: flex;
  justify-content: center;
}

.radar-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background:rgba(67, 50, 102, 0.14);
}

.radar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animated Radar Rings */
.radar-ring {
  position: absolute;
  border: 1px solid #B35C01;
  border-radius: 50%;
  opacity: 0.5;
  animation: ping 3s infinite ease-out;
}

.radar-ring.ring1 { inset: 8%; }
.radar-ring.ring2 { inset: 18%; animation-delay: 0.4s; }
.radar-ring.ring3 { inset: 28%; animation-delay: 0.8s; }

@keyframes ping {
  from { transform: scale(1); opacity: 0.7; }
  to   { transform: scale(1.25); opacity: 0; }
}

/* Responsive */
@media(max-width: 992px) {
  .drone-command {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-log {
    margin: auto;
    width: 260px;
    border-left: none;
    border-top: 2px dashed var(--accent);
    padding-left: 0;
    padding-top: 15px;
  }

  .log-item {
    display: inline-block;
    margin-right: 12px;
  }

  .log-dot {
    display: none;
  }
}


.drone-tech-blueprint {
    background: #0D1016;
    padding: 100px 60px; 
    color: #E9ECF2;
    position: relative;
    overflow:hidden;
}

/* Blueprint diagonal overlay */
.drone-tech-blueprint::before {
    content:"";
    position:absolute;
    top:0; right:0;
    width:230px; height:100%;
    background:linear-gradient(180deg, #11141A, #0D1016);
    opacity:0.35;
    transform:skewX(-18deg);
    pointer-events:none;
}

.blueprint-header {
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.blueprint-header h2 {
    font-size:2.2rem;
    font-weight:700;
    margin-bottom:12px;
    font-family: "Josefin Sans", sans-serif;
    color: var(--secondary);
}

.blueprint-header p {
    color:#B7BDC9;
    font-size:1rem;
}

/* GRID */
.blueprint-grid {
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:32px;
    position:relative;
}

/* BLOCK */
.bp-block {
    background:#13171F;
    border:1px solid #1E2430;
    border-radius:12px;
    padding:24px 20px;
    transition:0.3s ease;
    position:relative;
}

.bp-block:hover {
    transform: translateY(-8px);
    border-color:var(--secondary);
    box-shadow:0 12px 32px rgba(225, 127, 0, 0.15);
}

/* ICON */
.bp-icon img {
    width:46px;
    margin-bottom:12px;
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(73,191,255,0.45));
}

/* TEXT */
.bp-block h3 {
    font-size:1.05rem;
    margin-bottom:6px;
    color:#49BFFF;
    font-family: "Josefin Sans", sans-serif;
    color: var(--secondary);
}

.bp-desc {
    font-size:0.82rem;
    opacity:0.7;
    margin-bottom:10px;
}

.bp-block ul {
    padding-left:18px;
}

.bp-block ul li {
    font-size:0.88rem;
    margin-bottom:6px;
    opacity:0.85;
}

/* Responsive */
@media (max-width:1100px) {
  .blueprint-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:650px) {
  .blueprint-grid {
    grid-template-columns:1fr;
  }
}
.spc-section {
    background: #F7F9FE;
    padding: 100px 50px;
}

.spc-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.spc-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: "Josefin Sans", sans-serif;
}

.spc-header p {
    color: #5a6373;
    font-size: 0.96rem;
}

/* GRID */
.spc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

/* CARD */
.spc-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: 0.3s ease;
}

.spc-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.spc-content {
    padding: 16px 20px 20px;
}

.spc-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    font-family: "Josefin Sans", sans-serif;
}

.spc-content p {
    font-size: 0.9rem;
    color: #4d5563;
    margin-bottom: 12px;
}

/* TAGS */
.spc-tag {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #fff;
}

.blue { background:#3E7BFA; }
.green { background:#3CB371; }
.purple { background:#8B5CF6; }
.orange { background:#F59040; }

/* RIBBON */
.spc-ribbon {
    position: absolute;
    top: 12px;
    left: -16px;
    background: #3E7BFA;
    color: #fff;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(-10deg);
    border-radius: 4px;
}

.spc-ribbon.orange { background:#F59040; }
.spc-ribbon.purple { background:#8B5CF6; }

/* BADGE STRIP */
.spc-badges {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.badge-item {
    background: #fff;
    border: 1px solid #DBE2EE;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #3A4153;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Hover Effects */
.spc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .spc-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .spc-grid {
        grid-template-columns: 1fr;
    }
    .spc-section {
        padding: 70px 20px;
    }
}
.collab-carousel {
  padding: 80px 40px;
  background: #F7F9FC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0; 
  text-align: center;
}

.carousel-header h2 {
    font-size: 2rem;
  color: #433266;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Josefin Sans", sans-serif;
}

.carousel-header p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* Carousel Track */
.logo-carousel {
  display: flex;
  gap: 50px;
  overflow: hidden;
  animation: scrollLogos 14s linear infinite;
  user-select: none;
}

.logo-carousel img {
  filter: grayscale(1);
  opacity: 0.85;
  transition: 0.3s;
  height: 60px;
}

.logo-carousel img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Infinite Scroll Animation */
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive */
@media(max-width: 768px){
  .carousel-header h2 { font-size: 1.6rem; }
  .logo-carousel img { height: 50px; }
}

/* WRAPPER ensures stars stay behind */
.arvr-wrapper {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  background: #0a0f1d; /* Dark space theme */
}

/* HERO SECTION */
.arvr-hero {
  position: relative;
  padding: 100px 8%;
  display: flex;
  align-items: center;
  min-height: 80vh;
  z-index: 2;
  color: #fff;
}

/* CONTENT SPLIT */
.arvr-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

/* TEXT SIDE */
.text-block {
  max-width: 540px;
}

.text-block h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #eeebd0,  var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 0px 8px rgba(127,126,255,0.5));
}

.text-block p {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 22px;
    font-family: "Josefin Sans", sans-serif;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.85rem;
}

/* VISUAL SIDE */
.visual-block {
  position: relative;
  width: 360px;
  height: 320px;
}

.visual-card {
  position: absolute;
  width: 160px;
  height: 110px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-ar { top: 40px; left: 0; }
.card-vr { bottom: 40px; right: 0; }

.label {
  font-size: 0.9rem;
  font-weight: 600;
}

/* FLOATING OUTLINES */
.shape-outline {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  width: 200px;
  height: 140px;
}

.floating-1 {
  top: -10px;
  right: -20px;
  animation: floatBox 4s infinite ease-in-out alternate;
}

.floating-2 {
  bottom: -10px;
  left: -20px;
  animation: floatBox 6s infinite ease-in-out alternate;
}

/* FLOAT ANIMATION */
@keyframes floatBox {
  from { transform: translate(0,0); }
  to   { transform: translate(14px, -12px); }
}

/* ---- SHOOTING STARS LAYER ---- */
.stars-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  top: -10px;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.6);
  animation: shoot 4s linear infinite;
  opacity: 0.9;
}

.star:nth-child(1) { left: 12%; animation-delay: 0.3s; }
.star:nth-child(2) { left: 38%; animation-delay: 1.1s; }
.star:nth-child(3) { left: 62%; animation-delay: 0.8s; }
.star:nth-child(4) { left: 78%; animation-delay: 1.9s; }
.star:nth-child(5) { left: 25%; animation-delay: 2.5s; }

@keyframes shoot {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  100% {
    transform: translateY(500px) translateX(180px) scale(0.4);
    opacity: 0;
  }
}

/* MOBILE */
@media(max-width: 900px){
  .arvr-content { flex-direction: column; text-align: center; }
  .visual-block { margin: 0 auto; }
}
.ecosystem-radial {
    padding: 100px 20px;
    text-align: center;
    background: #FAFAFF;
    position: relative;
    overflow: hidden;
}

.eco-head {
    font-size: 2rem;
    font-weight: 800;
    color: #433266;
    margin-bottom: 6px;
    font-family:  "Josefin Sans", sans-serif;
}

.eco-sub {
    color: #555;
    max-width: 680px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

/* ============= SHAPES ============= */
.eco-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite alternate;
}

.s1 { width: 60px; height: 60px; background:#E0D1FF; top: 10%; left: 15%; animation-duration: 7s; }
.s2 { width: 40px; height: 40px; background:#FFD8A8; top: 18%; right: 12%; animation-duration: 5s; }
.s3 { width: 30px; height: 30px; background:#C9F0FF; bottom: 15%; left: 10%; animation-duration: 8s; }
.s4 { width: 50px; height: 50px; background:#D6FFCC; bottom: 22%; right: 18%; animation-duration: 6s; }
.s5 { width: 25px; height: 25px; background:#FFC2D1; top: 55%; left: 45%; animation-duration: 9s; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, -20px) rotate(30deg); }
}

/* ============= RADIAL MAP ============= */

.eco-radial-wrap {
    position: relative;
    width: 900px;
    max-width: 100%;
    margin: auto;
    min-height: 560px;
}

/* Center Core */
.eco-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: #433266;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    font-size:1rem;
    box-shadow:0 0 20px rgba(67,50,102,0.4);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform:translate(-50%, -50%) scale(1); opacity: 1;}
    100% { transform:translate(-50%, -50%) scale(1.07); opacity: 0.9;}
}

/* Node Boxes */
.eco-node {
    position:absolute;
    background:#fff;
    border:1px solid rgba(67,50,102,0.15);
    border-radius:12px;
    width:230px;
    padding:14px 12px;
    text-align:left;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.eco-node:hover {
    transform:translateY(-6px);
    box-shadow:0 10px 20px rgba(67,50,102,0.18);
}

.eco-node h3 {
    font-size:1rem;
    color:#433266;
    margin-bottom:8px;
    font-weight:700;
      font-family: "Josefin Sans", sans-serif;
}

.eco-node ul {
    margin:0;
    padding-left:18px;
    color:#444;
    font-size:0.9rem;
}

/* Node Placement */
.hardware   { top: 5%; left: 10%; }
.software   { top: 5%; right: 10%; }
.platforms  { bottom: 8%; right: 10%; }
.devices    { bottom: 8%; left: 10%; }

/* Connecting Lines */
.eco-node::before {
    content:"";
    position:absolute;
    width:120px;
    height:2px;
    background:#433266;
    opacity:0.22;
}

.hardware::before  { bottom: 50%; right: -120px; transform: rotate(12deg); }
.software::before  { bottom: 50%; left: -120px; transform: rotate(-12deg); }
.platforms::before { top: 50%; left: -120px; transform: rotate(12deg); }
.devices::before   { top: 50%; right: -120px; transform: rotate(-12deg); }

/* ============= RESPONSIVE ============= */
@media(max-width:900px){
    .eco-node,
    .eco-node::before {
        position:static;
        transform:none !important;
    }

    .eco-radial-wrap {
        display:flex;
        flex-direction:column;
        gap:18px;
        min-height:auto;
    }

    .eco-core { display:none; }
}
