/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #ffffff;
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  background: #00296b;   /* solid color */
  padding: 12px 0;

  position: relative;   /* IMPORTANT: no overlap */
  z-index: 1;
}

/* CONTAINER */
.nav-container {
  width: 90%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-img {
  height: 60px;
  object-fit: contain;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
}

/* CALL BUTTON */
.call-pill {
  background: #ffc107;
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.call-pill:hover {
  background: #ffb300;
}

.hero-banner {
  width: 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;     /* keeps full image */
  display: block;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .logo-img {
    height: 50px;
  }

  .call-pill {
    font-size: 13px;
    padding: 6px 15px;
  }
}
/* ================= ABOUT SECTION ================= */
.about-section {
  background: #ffffff;
  padding: 100px 0;
}
.about-description li {
  margin-bottom: 8px;
}
/* CONTAINER */
/* CONTAINER (FLUID + CENTERED SPACE) */
.about-container {
  width: 100%;
  max-width: 1400px;   /* 🔥 control content width */
  margin: 0 auto;      /* center */
  padding: 0 60px;     /* 🔥 left-right space */

  display: flex;
  align-items: stretch;
  gap: 50px;
}
/* LEFT CONTENT */
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITLE */
.about-title {
  font-size:2rem;
  font-weight: 600;
  color: #00296b;
  margin-bottom: 20px;
}

.hotel-name {
  color: #00296b;
}

/* TEXT (JUSTIFY FIX) */
.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 18px;

  text-align: justify;
  text-justify: inter-word;
  word-spacing: -0.5px;   /* removes extra gaps */
  letter-spacing: 0.2px;
  hyphens: auto;
}

/* BUTTON */
.about-button {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #00296b;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.about-button:hover {
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.about-visual {
  flex: 1;
  display: flex;
}

/* IMAGE CONTAINER (MATCH HEIGHT) */
.image-container {
  width: 100%;
  height: 100%;              /* MATCH CONTENT HEIGHT */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* IMAGE */
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 25px;
  }

  .about-content {
    text-align: left; /* better readability */
  }

  .about-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-description {
    text-align: justify;
    text-justify: inter-word;
    word-spacing: -0.3px;
    line-height: 1.7;
  }

  /* IMAGE FIX */
  .about-visual {
    width: 100%;
  }

  .image-container {
  width: 100%;
  height: 450px;
  max-height: 500px; /* prevents too large on big screens */
  border-radius: 15px;
}
}

/* MOBILE (SMALL DEVICES) */
@media (max-width: 576px) {

  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 15px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;   /* IMPORTANT → avoids gaps */
  }

  /* IMAGE FULL VISIBILITY */
  .image-container {
    height: 260px;   /* balanced height */
  }

  .about-image {
    object-fit: cover; /* keeps full visible without stretch */
  }
}
.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;

  text-align: justify;
  text-justify: inter-word;

  word-spacing: -0.5px;     /* 🔥 reduces extra gaps */
  letter-spacing: 0.2px;    /* smooth text */
  hyphens: auto;            /* 🔥 breaks long words properly */
}
/* ================= PROGRAMS SECTION ================= */
.programs-section {
  padding: 100px 0;
  background:  linear-gradient(135deg,  #00296b 0%,  #00296b 50%,  #00296b 100%); /* CLEAN LIGHT BACKGROUND */
}

.programs-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.programs-header {
  text-align: center;
  margin-bottom: 70px;
}

.programs-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
}

.programs-title span {
  color: #ffffff;
}

.programs-subtitle {
  color: #555;
  margin-top: 10px;
}

/* GRID */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ================= CARD ================= */
.program-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  transition: 0.4s ease;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #eee;
}

/* GRADIENT BORDER EFFECT */
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #FFD700, #00296b);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER EFFECT */
.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* BADGE */
.program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
}

.badge-text {
  background: #FFD700;
  color: #00296b;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* CONTENT */
.program-content {
  text-align: center;
}

/* ICON */
.program-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #00296b, #00509d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.program-card:hover .program-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, #FFD700, #ffcc00);
  color: #00296b;
}

/* TITLE */
.program-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 15px;
}

/* FEATURES */
.program-features {
  margin-bottom: 20px;
}

.feature-item {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

/* BUTTON */
.program-button {
  display: inline-block;
  padding: 10px 22px;
  background: #00296b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.program-button:hover {
  background: #FFD700;
  color: #00296b;
}

/* ================= STATS ================= */
.programs-stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.stat-item {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0066cc;
}

.stat-label {
  color: #666;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .programs-title{
    font-size:2rem;
  }
}
/*recruiters*/
/* SECTION */
.partners-section {
  background: linear-gradient(135deg,  #00296b 0%,  #00296b 50%,  #00296b 100%);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

/* HEADER */
.section-header {
  margin-bottom: 40px;
}

.section-header.mt {
  margin-top: 60px;
}

.small-title {
  color: #ccc;
  font-size: 14px;
  letter-spacing: 2px;
}

.section-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
}

.section-header span {
  color: #FFD700;
}

/* SLIDER */
.slider {
  overflow: hidden;
  position: relative;
  margin: 30px 0;
}

/* TRACK */
.slide-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

/* REVERSE */
.slider.reverse .slide-track {
  animation: scrollRight 25s linear infinite;
}

/* LOGO CARD */
.logo-card {
  min-width: 180px;
  height: 100px;
  background: #f4f4f4;
  border-radius: 15px;
  border: 2px solid #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: 0.3s;
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* HOVER */
.logo-card:hover {
  transform: scale(1.08);
  background: #fff;
}

/* ANIMATION */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* FADE EDGES */
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.slider::before {
  left: 0;
  background: linear-gradient(to right, #0b1f5b, transparent);
}

.slider::after {
  right: 0;
  background: linear-gradient(to left, #0b1f5b, transparent);
}
/* TECH SECTION */
.technical-section {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* GRID */
.tech-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* SAME CARD STYLE */
.logo-card {
  width: 180px;
  height: 100px;
  background: #f4f4f4;
  border-radius: 15px;
  border: 2px solid #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: 0.3s;
}

/* IMAGE */
.logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* HOVER */
.logo-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* SECTION */ .stats-section { background: #00296b; padding: 80px 20px; color: #fff; } /* HEADER */ .stats-header { text-align: center; margin-bottom: 60px; } .small-title { font-size: 14px; color: #ccc; letter-spacing: 2px; } .stats-header h2 { font-size: 2.5rem; font-weight: 800; } .stats-header span { color: #FFD700; } /* ROW */ .stats-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; } /* BOX */ .stat-box { flex: 1; min-width: 200px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 30px 20px; text-align: center; transition: 0.3s; position: relative; } /* HOVER EFFECT */ .stat-box:hover { transform: translateY(-10px); border-color: #FFD700; box-shadow: 0 10px 30px rgba(0,0,0,0.4); } /* ICON */ .stat-icon { width: 70px; height: 70px; background: #FFD700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: auto; font-size: 24px; color: #00296b; margin-bottom: 15px; box-shadow: 0 0 25px rgba(255, 215, 0, 0.7); } /* NUMBER */ .stat-box h3 { font-size: 2rem; font-weight: 800; color: #FFD700; } /* TITLE */ .stat-box h4 { font-size: 1.1rem; margin-bottom: 8px; } /* DESC */ .stat-box p { font-size: 0.85rem; opacity: 0.8; } /* RESPONSIVE */ @media(max-width: 992px) { .stats-row { justify-content: center; } .stat-box { flex: 0 0 45%; } } @media(max-width: 576px) { .stat-box { flex: 0 0 100%; } .stats-header h2 { font-size: 1.8rem; } }
/* SECTION */
.gallery-section {
  background: #ffffff;
  padding: 80px 20px;
}

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: 800;
}

.gallery-header span {
  color: #00296b;
}

.gallery-header p {
  color: #ddd;
}

/* MASONRY LAYOUT */
.gallery-collage {
  column-count: 4;
  column-gap: 15px;
}

/* ITEMS */
.item {
  margin-bottom: 15px;
  break-inside: avoid;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.item img {
  width: 100%;
  height: auto;   /* FULL IMAGE VISIBLE */
  display: block;
  transition: 0.4s;
}

/* HOVER (ONLY ZOOM) */
.item:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .gallery-collage {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-collage {
    column-count: 1;
  }
}
/* FOOTER */
.footer-section {
  background: #001f4d;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;   /* CENTER EVERYTHING */
}

/* TEXT */
.copyright {
  color: #ccc;
  font-size: 0.9rem;
}
/* SECTION */
.skills-section {
  background: #ffffff;
  padding: 80px 20px;
}

/* HEADER */
.skills-header {
  text-align: center;
  margin-bottom: 50px;
}

.skills-header h2 {
  font-size: 2.5rem;
  color: #00296b;
  font-weight: 800;
}

.skills-header span {
  color: #00296b;
}

.skills-header p {
  color: #000;
}

/* GRID */
/* GRID - FIXED 3 CARDS */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 30px;
}

/* CARD */
.skill-card {
  background: #00296b;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  
}

/* ICON */
.skill-card i {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 20px;
}

/* TITLE */
.skill-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* TEXT */
.skill-card p {
  color: #ddd;
  font-size: 0.95rem;
}


/* GLOW BORDER ANIMATION */
.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, transparent, transparent);
  opacity: 0;
  transition: 0.4s;
}

.skill-card:hover::before {
  opacity: 1;
}
/* TABLET */
@media (max-width: 992px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .skills-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
}
/* =========================
   SCHOLARSHIP STICKY BUTTON - ATTRACTIVE & RESPONSIVE
========================= */

/* Desktop - Right Bottom Corner */
.scholarship-sticky {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 9999;
    text-decoration: none;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ff9500 100%);
    width: 160px;
    padding: 15px 12px;
    text-align: center;
    border-radius: 20px;
    border: 4px solid #fff;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.4),
        0 0 0 4px rgba(255, 215, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: floatBadge 2s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes floatBadge {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 0 4px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4); }
}

/* Hover Effect - Scale up */
.badge:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
}

/* Icon */
.badge-icon {
    font-size: 24px;
    margin-bottom: 5px;
    color: #071952;
}

/* Text Styling */
.small-text {
    font-size: 11px;
    font-weight: 700;
    color: #071952;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.percent {
    font-size: 38px;
    font-weight: 900;
    color: #cb0404;
    line-height: 1.1;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.early {
    font-size: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, #071952, #0a2875);
    color: #ffd700;
    padding: 4px 8px;
    margin-top: 5px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.title {
    font-size: 12px;
    font-weight: 800;
    color: #071952;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   TABLET (768px - 1024px)
========================= */
@media (max-width: 1024px) {
    .scholarship-sticky {
        right: 20px;
        bottom: 20px;
    }

    .badge {
        width: 140px;
        padding: 12px 10px;
    }

    .percent {
        font-size: 32px;
    }
    
    .badge-icon {
        font-size: 20px;
    }
}

/* =========================
   MOBILE (Below 768px)
========================= */
@media (max-width: 768px) {
    .scholarship-sticky {
        right: 15px;
        bottom: 15px;
        left: auto;
        top: auto;
    }

    .badge {
        width: 120px;
        padding: 10px 8px;
        border-width: 3px;
    }

    .percent {
        font-size: 26px;
    }

    .small-text {
        font-size: 9px;
    }

    .title {
        font-size: 10px;
    }
    
    .early {
        font-size: 8px;
        padding: 3px 5px;
    }
    
    .badge-icon {
        font-size: 18px;
    }
}

/* =========================
   EXTRA SMALL MOBILE (Below 480px)
========================= */
@media (max-width: 480px) {
    .scholarship-sticky {
        right: 10px;
        bottom: 10px;
    }

    .badge {
        width: 100px;
        padding: 8px 6px;
        border-width: 2px;
    }

    .percent {
        font-size: 22px;
    }

    .small-text {
        font-size: 8px;
    }

    .title {
        font-size: 9px;
    }
    
    .early {
        font-size: 7px;
    }
    
    .badge-icon {
        font-size: 16px;
    }
}