:root {
    --green: #1E9845;
    --lightpurple: #c38ef8;
    --purple: #895CB7;
    --blue: #093177;
    --orange: #FFA500;
    --bg: #ffffff;
    --fg: #0a0a0a;
    --border: #e5e5e5;
    --muted: #f5f5f5;
    --muted-fg: #737373;
    --glow: 0 0 20px rgba(95, 53, 125, 0.6);
     --gold: #f7b500;
  --green: #28a745;
  --pink: #e83e8c;
  --teal: #20c997;
  --indigo: #6610f2;
}

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

body {
    font-family: 'inter',sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Carousel Control Arrows === */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6); /* background behind arrow */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-size: 50%, 50%;
  background-position: center;
  transition: all 0.3s ease;
}

/* Hover effect on arrows */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--orange); /* hover color */
  transform: scale(1.1);
}

/* Optional: add white arrow icons */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.5 1 2 3.5l2.5 2.5 1-1L4 3.5l1.5-1.5L5.5 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0l1 1L6 3.5 3.5 6l-1-1L4 3.5 2.5 2 2.5 0z'/%3E%3C/svg%3E");
}


/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo-section {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    min-width: 100px;
    transition: gap .2s;
}

.logo-section img {
    height: 30%;
    max-height: calc(85px*.25);
    min-height: 100%;
    width: auto;
    aspect-ratio: 2.2;
    display: block;
    transition: transform .3s;
}

.logo-section:hover img {
    transform: scale(1.07);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav button {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(10, 10, 10, .8);
    cursor: pointer;
    padding: .5rem;
    transition: color .3s;
}

nav button:hover {
    color: var(--purple);
}
/* Active Nav Button */
nav button.active,
.mobile-nav button.active {
  color: var(--purple) !important;
  font-weight: 700;
}

/* Underline on active */
nav button::after,
.mobile-nav button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

nav button.active::after,
.mobile-nav button.active::after {
  width: 100%;
}

/* Hover stays purple */
nav button:hover,
.mobile-nav button:hover {
  color: var(--purple);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--bg);
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav button {
    display: block;
    width: 100%;
    text-align: left;
    padding: .75rem;
    margin: .25rem 0;
    background: none;
    border: none;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(10, 10, 10, .8);
    cursor: pointer;
    border-radius: .375rem;
    transition: all .3s;
}

.mobile-nav button:hover {
    color: var(--purple);
    background: var(--muted);
}

/* ==================== LAYOUT ==================== */
main {
    padding-top: 85px;
}

section {
    padding: 1.2rem;
}

.section-alt {
    background: var(--muted);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.container-md {
    max-width: 1024px;
    margin: 0 auto;
}

.container-lg {
    max-width: 1152px;
    margin: 0 auto;
}

/* ==================== HERO: IMAGE + TEXT BELOW ==================== */
.hero-section {
    padding: 0;
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text-content {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--bg);
}

.hero-text-content h1 {
    font-family: 'inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--blue);
}

.hero-text-content p {
    font-size: 1.5rem;
    color: black;
    max-width: auto;
    margin: 0 auto;
    font-weight: 500;
}

/* ==================== HEADINGS ==================== */
.vision {
    font-family: 'inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--blue);
    position: relative;
}

.vision::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--purple);
}

h3 {
    font-family: 'inter', sans-serif;
    font-size: 1.35rem;
    margin-bottom: .5rem;
    color: var(--purple);
}
.mission {
    font-family: 'inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--purple), var(--lightpurple));
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.mission::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--purple);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--lightpurple);
}


/* ==================== CARDS ==================== */
/* ==================== CARDS – DESKTOP ==================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.fut-card {
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(163, 127, 188, .3);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all .4s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fut-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(163, 127, 188, .1));
  opacity: 0;
  transition: .5s;
}

.fut-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--glow), 0 20px 40px rgba(0, 0, 0, .15);
  border-color: var(--purple);
  z-index: 1;
}

.fut-card:hover::before {
  opacity: 1;
}

/* ==================== MOBILE – CENTER ICON, STACK CONTENT ==================== */
@media (max-width: 768px) {
  .vision {
    font-size: 1.5rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fut-card {
    padding: 1.8rem;
    border-radius: 14px;
  }

  /* Center icon + stack content */
  .fut-card > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .focus-item,
  .service-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  /* Icon – Centered & Larger on Mobile */
  .focus-icon,
  .service-number {
    width: 70px !important;
    height: 70px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .focus-icon i {
    font-size: 2.2rem !important;
    background: linear-gradient(135deg, var(--purple), var(--blue)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
  }

  .service-number {
    font-size: 1.6rem !important;
    box-shadow: 0 8px 20px rgba(163, 127, 188, 0.3) !important;
  }

  /* Content – Full width, centered */
  .focus-content,
  .service-content {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .focus-content h3,
  .service-content h3 {
    text-align: center !important;
    margin-bottom: 0.8rem !important;
  }

  .focus-list,
  .service-content p {
    text-align: center !important;
    margin: 0 !important;
  }

  .focus-list li {
    list-style-type: square;
    text-align: left;
    margin-bottom: 0.5rem;
  }

  /* Hover on mobile – subtle lift */
  .fut-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
  }
}

/* ==================== SMALLER MOBILE ==================== */
@media (max-width: 480px) {
  .fut-card {
    padding: 1.5rem;
  }

  .focus-icon,
  .service-number {
    width: 60px !important;
    height: 60px !important;
  }

  .focus-icon i {
    font-size: 1.8rem !important;
  }

  .service-number {
    font-size: 1.4rem !important;
  }
}
/* ==================== SERVICES – LIST DESIGN ==================== */
.services-list {
    display: grid;
    gap: 2.5rem;
    counter-reset: service-counter;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(163, 127, 188, 0.15);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateY(-5px);
    padding-left: 0.5rem;
}

.service-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 20px rgba(163, 127, 188, 0.3);
    transition: all 0.4s ease;
}

.service-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover .service-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(163, 127, 188, 0.5);
}

.service-item:hover .service-number::before {
    opacity: 1;
}

.service-number span {
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-family: 'inter', sans-serif;
    font-size: 1.35rem;
    color: var(--purple);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-content ul {
  list-style-type: square;
  padding-left: 1.5rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.service-content ul li {
  margin-bottom: 0.4rem;
}
.focus-list li {
  position: relative;
  padding-left: 1.3rem;
   list-style: none; 
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}


/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-content {
        max-width: 100%;
    }
}

/* 2-column on large screens */
@media (min-width: 992px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        border-bottom: none;
        border-right: 1px solid rgba(163, 127, 188, 0.15);
        padding: 2rem;
    }

    .service-item:nth-child(even) {
        border-right: none;
    }
}

/* ==================== FOCUS ICONS ==================== */
/* Container setup */
.focus-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.focus-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 2rem;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hover lift effect */
.focus-item:hover .focus-icon {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Icon color themes - apply to container */
.focus-icon.bi-chat-dots       { background: var(--blue); }
.focus-icon.bi-lightbulb       { background: var(--orange); }
.focus-icon.bi-building        { background: var(--purple); }
.focus-icon.bi-star            { background: var(--gold); }
.focus-icon.bi-shield-check    { background: var(--green); }
.focus-icon.bi-mortarboard     { background: var(--pink); }
.focus-icon.bi-bar-chart-line  { background: var(--teal); }
.focus-icon.bi-globe           { background: var(--indigo); }

/* Make sure the icon inside is centered and white */
.focus-icon i {
  color: #fff !important;
  font-size: 1.9rem;
  line-height: 1;
  text-align: center;
  display: inline-block;
}

/* Optional hover pop effect */
.focus-item:hover .focus-icon i {
  transform: scale(1.1);
}
 .focus-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--purple);
  border-bottom: 1px solid var(--blue);
  display: inline-block;
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.focus-content h3:hover {
  border-color: var(--teal);
}

/* ==================== VISION & MISSION – IMAGES ==================== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.vm-item {
    background: rgba(255, 255, 255, .8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .4s;
}

.vm-item:hover {
    transform: translateY(-10px);
}

.vm-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .6s;
}

.vm-item:hover .vm-image {
    transform: scale(1.05);
}

.vm-content {
    padding: 1.8rem;
}

/* ==================== CONTACT / COLLABORATE SECTION ==================== */
.collaborate-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #f9fcff 0%, #eef4ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.collaborate-container {
  max-width: 900px;
  width: 100%;
}

.collaborate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--blue);
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* ==================== INFO CARD ==================== */
.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e90ff, #a37fbc);
  border-radius: 18px 18px 0 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(30, 144, 255, 0.15);
  transition: all 0.3s ease;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item i {
  font-size: 1.8rem;
  color: #1e90ff;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.12), rgba(163, 127, 188, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.15);
  transition: all 0.4s ease;
}

.info-item:hover i {
  background: linear-gradient(135deg, #1e90ff, #a37fbc);
  color: #fff;
  transform: scale(1.1);
}

.info-item strong {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
}

.info-item span,
.info-item a {
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.info-item a:hover {
  color: #a37fbc;
}

/* ==================== SOCIAL ICONS ==================== */
.collaborate-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.collaborate-social a {
  width: 48px;
  height: 48px;
  background: rgba(30, 144, 255, 0.1);
  color: #1e90ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s ease;
}

.collaborate-social a:hover {
  background: #1e90ff;
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
  .info-card {
    padding: 1.5rem;
  }
  .info-item {
    gap: 0.8rem;
  }
  .info-item i {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }
}

/* ==================== FOOTER – COMPACT & CLEAN ==================== */
.footer-wave {
  position: relative;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
  padding: 0rem;
  overflow: hidden;
  text-align: center;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  filter: drop-shadow(0 -5px 15px rgba(30, 144, 255, 0.2));
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  z-index: 1;
  position: relative;
}

/* Brand Name */
.footer-brand {
  display: flex;
  justify-content: center;
}

.brand-name {
  font-family: 'inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #1E90FF, #A37FBC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1.2px;
}

/* Bottom Row: Nav + Copyright */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 1.3rem;
  color: #fffdfd;
  margin: 0;
  white-space: nowrap;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-nav {
    order: 2;
    gap: 1.2rem;
  }

  .footer-copy {
    order: 1;
    font-size: 0.54rem;
  }

  .brand-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width:768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-text-content h1 {
        font-size: 1.5rem;
    }

    .hero-text-content p {
        font-size: 1.3rem;
    }

    .hero-text-content {
        padding: 3rem 1rem;
    }
}

@media (max-width:480px) {
    .hero-text-content h1 {
        font-size: 1.5rem;
    }

    .hero-text-content p {
        font-size: 1.1rem;
    }
}

@media (min-width:768px) {

    .vision-mission-grid,
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For large screens (desktops) */
@media (min-width: 1200px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 55px;
    height: 55px;
  }
}

/* For medium screens (laptops & tablets) */
@media (max-width: 992px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/* For small screens (phones) */
@media (max-width: 768px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* For very small devices (mobile portrait) */
@media (max-width: 480px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.35);
  }
}