
/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1565C0;
  --primary-light: #1976D2;
  --accent: #00BCD4;
  --accent2: #FF6F00;
  --green: #2E7D32;
  --bg-light: #F0F7FF;
  --bg-section: #f8fbff;
  --text-dark: #1a2340;
  --text-muted: #607D8B;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(21,101,192,0.10);
  --shadow-card: 0 4px 24px rgba(21,101,192,0.08);
}

* { box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== KEYFRAMES ===== */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-18px); }
  60%       { transform: translateY(-8px); }
}
@keyframes waveFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%       { transform: translateY(-10px) rotate(1deg); }
  75%       { transform: translateY(8px) rotate(-1deg); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-40px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform:translateX(40px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(0.85); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes waveSVG {
  0%   { d: path("M0,50 C150,80 350,20 500,50 C650,80 850,20 1000,50 L1000,100 L0,100 Z"); }
  50%  { d: path("M0,60 C150,20 350,80 500,60 C650,20 850,80 1000,60 L1000,100 L0,100 Z"); }
  100% { d: path("M0,50 C150,80 350,20 500,50 C650,80 850,20 1000,50 L1000,100 L0,100 Z"); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21,101,192,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(21,101,192,0); }
}
@keyframes slideInNav {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ===== UTILITY ANIMATIONS ===== */
.anim-bounce        { animation: bounce 2.4s ease-in-out infinite; }
.anim-wave          { animation: waveFloat 3.5s ease-in-out infinite; }
.anim-wave-delay1   { animation: waveFloat 3.5s ease-in-out 0.5s infinite; }
.anim-wave-delay2   { animation: waveFloat 3.5s ease-in-out 1s infinite; }
.anim-wave-delay3   { animation: waveFloat 3.5s ease-in-out 1.5s infinite; }
.anim-fadeup        { animation: fadeInUp 0.8s ease both; }
.anim-fadein-left   { animation: fadeInLeft 0.8s ease both; }
.anim-fadein-right  { animation: fadeInRight 0.8s ease both; }
.anim-scale         { animation: scaleIn 0.7s ease both; }
.delay-1            { animation-delay: 0.15s; }
.delay-2            { animation-delay: 0.3s; }
.delay-3            { animation-delay: 0.45s; }
.delay-4            { animation-delay: 0.6s; }
.delay-5            { animation-delay: 0.75s; }

/* ===== NAVBAR ===== */
.navbar-custom {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(21,101,192,0.08);
  animation: slideInNav 0.6s ease;
  padding: 10px 0;
}
.navbar-brand img { height: 65px; }
.navbar-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover { color: var(--primary) !important; }
.btn-primary-custom {
  background: darkcyan;
  color: #fff;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s;
}
.btn-primary-custom:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,188,212,0.3);
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #e8f4fd 0%, #daf0ff 40%, #eaf7fa 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231565C0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
  display: inline-block;
  background: rgba(21,101,192,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}
.hero-title span { color: var(--accent2); }
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-image-wrap {
  position: relative;
  padding-bottom: 30px;
}
.hero-image-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
}
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-floating-card .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.card-green  { bottom: 60px; left: -20px; }
.card-blue   { top: 40px;   right: -10px; }

/* Wave Divider */
.wave-divider {
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ===== UNIVERSITY STRIP ===== */
.uni-strip {
  background: var(--bg-section);
  padding: 50px 0 40px;
}
.uni-strip h5 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.uni-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 20px; }
.uni-logo-item {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.uni-logo-item:hover { transform: scale(1.1) rotate(3deg); }
.uni-logo-item img { width: 70px; height: 70px; object-fit: contain; }

/* ===== PLATFORMS SECTION ===== */
.platforms-section { padding: 80px 0; background: var(--white); }
.section-badge {
  display: inline-block;
  background: rgba(21,101,192,0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-subtitle { color: var(--text-muted); font-size: 0.95rem; }

.platform-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(21,101,192,0.07);
  height: 100%;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer;
}
.platform-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(21,101,192,0.15);
  border-color: var(--primary);
}
.platform-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.platform-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.platform-card p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== PURPOSEFUL SECTION ===== */
.purposeful-section {
  background: linear-gradient(120deg, darkcyan 0%, rgb(6, 189, 189) 50%, #006064 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.purposeful-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.purposeful-section h2, .purposeful-section h3, .purposeful-section p { color: var(--white); }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.feature-item:hover { background: rgba(255,255,255,0.12); transform: translateX(6px); }
.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.feature-item h6 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.feature-item p  { margin: 0; font-size: 0.82rem; opacity: 0.8; }

/* ===== STATS ===== */
.stats-section { padding: 70px 0; background: var(--bg-section); }
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.stat-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(21,101,192,0.14);
}
.stat-card .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-card .stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* ===== SPECIALIZATION ===== */
.spec-section { padding: 80px 0; background: var(--white); }
.spec-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(21,101,192,0.08);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  background: var(--white);
  cursor: pointer;
}
.spec-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 45px rgba(21,101,192,0.25);
}
.spec-card:hover .spec-icon, .spec-card:hover h6, .spec-card:hover p { color: var(--white); }
.spec-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 12px; transition: color 0.3s; }
.spec-card h6 { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; transition: color 0.3s; }
.spec-card p  { font-size: 0.78rem; color: var(--text-muted); margin: 0; transition: color 0.3s; }

/* ===== SERVICES ===== */
.services-section { padding: 80px 0; background: var(--bg-section); }
.service-row {
  padding: 40px 0;
  border-bottom: 1px solid rgba(21,101,192,0.07);
}
.service-row:last-child { border-bottom: none; }
.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-img img { width: 100%; object-fit: cover; transition: transform 0.5s; }
.service-img:hover img { transform: scale(1.04); }
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.tag-blue   { background: rgba(21,101,192,0.1);  color: var(--primary); }
.tag-green  { background: rgba(46,125,50,0.1);   color: var(--green); }
.tag-orange { background: rgba(255,111,0,0.1);   color: var(--accent2); }
.tag-cyan   { background: rgba(0,188,212,0.1);   color: var(--accent); }
.tag-purple { background: rgba(103,58,183,0.1);  color: #673AB7; }

.service-content h4 { font-weight: 800; font-size: 1.3rem; margin-bottom: 12px; }
.service-content p  { color: var(--text-muted); font-size: 0.9rem; }
.service-content ul  { padding-left: 18px; }
.service-content ul li { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; }
.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  margin-top: 12px;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== PARTNERS ===== */
.partners-section { padding: 60px 0; background: var(--white); }
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 20px;
  border: 1.5px solid rgba(21,101,192,0.1);
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
  background: var(--white);
}
.partner-logo:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(21,101,192,0.12);
  transform: translateY(-4px);
}
.partner-logo img { max-height: 50px; object-fit: contain; filter: grayscale(1); transition: filter 0.3s; }
.partner-logo:hover img { filter: grayscale(0); }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(135deg, #e8f4fd 0%, #daf0ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.contact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(21,101,192,0.15);
}
.form-control-custom {
  border: 1.5px solid rgba(21,101,192,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  transition: all 0.25s;
  background: #f8fbff;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
  outline: none;
  background: var(--white);
}
.btn-submit {
  background: darkcyan;
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 13px 36px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  animation: pulse 2s ease-in-out infinite;
}
.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,188,212,0.35);
}

/* ===== FOOTER ===== */
.footer {
  background: darkcyan;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer h6 {
  color: white;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.footer a {
  color: white;
  text-decoration: none;
  font-size: 0.83rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.8rem;
  text-align: center;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.25s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85);         transition: all 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

/* ===== WAVE BG ===== */
.wave-bg {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0;
}
.wave-animated path {
  animation: waveAnim 4s ease-in-out infinite;
}
@keyframes waveAnim {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-30px); }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  padding: 80px 0;
  position: relative;
}
.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21,101,192,0.2);
  position: relative;
}
.video-wrapper img { width: 100%; display: block; }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  animation: pulse 2s ease-in-out infinite;
  transition: transform 0.3s;
  z-index: 2;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.15); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: darkcyan;
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}
.ticker-track span {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}
.ticker-track span i { margin-right: 8px; color: var(--accent); }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}








/* LOGO GRID */
.uni-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  /* EACH LOGO */
  .uni-logo-item {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden; /* 🔥 important */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
  
  /* IMAGE */
  .uni-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
  }
  /* CARD */
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #27C0EF;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.stat-icon {
  margin-bottom: 10px;
}

.stat-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* NUMBER */
.stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #27C0EF;
}

/* LABEL */
.stat-label {
  font-size: 14px;
  color: #555;
}

/* LOGO BOX */
.partner-logo {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* IMAGE */
.partner-logo img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* HOVER */
.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* WRAPPER */
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE */
.video-thumbnail {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(39,192,239,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-btn i {
  color: #fff;
  font-size: 30px;
}

/* HOVER EFFECT */
.video-wrapper:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s;
}

/* CARD */
.spec-card {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON IMAGE */
.spec-icon {
  margin-bottom: 10px;
}

.spec-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* TEXT */
.spec-card h6 {
  font-size: 14px;
  font-weight: 600;
}

.spec-card p {
  font-size: 12px;
  color: #666;
}

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE BOX */
.service-img-box {
  width: 100%;
  height: 300px; /* control height here */
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

/* IMAGE */
.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 key fix */
}

/* OPTIONAL: ALIGN WITH TEXT */
.service-row {
  align-items: center;
}


.service-img-box {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fbff; /* soft background */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* 🔥 THIS CREATES SPACE */
}

.service-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* 🔥 KEY CHANGE */
}
.video-section {
  padding: 60px 20px;
  background: #f8fbff;
}

/* TABS */
.media-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
  border-bottom: 2px solid #e5f3f8;
}

.tab-item {
  text-align: center;
  cursor: pointer;
  padding-bottom: 10px;
  color: #888;
  transition: 0.3s;
}

.tab-item i {
  font-size: 28px;
  display: block;
  margin-bottom: 5px;
}

.tab-item.active {
  color: #27C0EF;
  border-bottom: 3px solid #27C0EF;
}

/* VIDEO */
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(39,192,239,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  color: #fff;
  font-size: 28px;
}

.dropdown-menu {
  border-radius: 10px;
}

.dropdown-item:hover {
  background: #f0fbff;
  color: #27C0EF;
}
.dropdown-menu {
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.btn-submit:active {
  transform: scale(0.98);
}

.logo-img {
  height: 400px;
  width: auto;
  object-fit: contain;
}

/* CONTAINER */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* BUTTON BASE */
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* COLORS */
.phone {
  background: #007bff;
}

.whatsapp {
  background: #25D366;
}

.insta {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

/* HOVER */
.float-btn:hover {
  transform: scale(1.1);
}

/*Pages2- Details*/

/* Highlight selected dropdown item */
.navbar-kwin .dropdown-item.mesc-highlight {
  color: var(--teal);
  font-weight: 600;
}

/* Optional: better dropdown spacing */
.navbar-kwin .dropdown-menu li {
  list-style: none;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

/* Optional: center image */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}