   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}





/* =========================
GLOBAL REVEAL ANIMATION
========================= */

.reveal-up{
  opacity:0;
  transform:translateY(60px);
  transition:all .8s cubic-bezier(.2,.7,.2,1);
}

/* visible state */
.reveal-up.show{
  opacity:1;
  transform:translateY(0);
}


/* ========================
   Top Bar
======================== */
/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* 🔥 prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
    margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  width: 100%;
  background: linear-gradient(180deg, #2f63c8 0%, #1e4ea8 100%);
  padding: 70px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.about-hero-container {
  max-width: 1200px;
  width: 100%;
}

/* Title */
.about-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* Orange highlight */
.about-title span {
  color: #ff7a00;
}

/* Subtitle */
.about-subtitle {
  font-size: 18px;
  color: #e8eefc;
  font-weight: 500;
}

/* ============================= */
/* 📱 Responsive Design */
/* ============================= */

@media (max-width: 1024px) {
  .about-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 15px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 14px;
  }
}
/* ===============================
   WHO WE ARE SECTION
================================ */

.who-we {
  padding: 100px 20px;
  background: #f7faff;
  text-align: center;
}

.who-container {
  max-width: 1200px;
  margin: auto;
}

/* Badge */
.who-badge {
  display: inline-block;
  background: #e9f0ff;
  color: #2b66ff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Title */
.who-title {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  line-height: 1.25;
}

.who-title span {
  color: #ff7a00;
}

/* Description */
.who-desc {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 60px;
}


/* ===============================
   GRID (Auto Responsive)
================================ */

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}


/* ===============================
   CARD
================================ */

.who-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 20px;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 22px 60px rgba(47, 99, 200, 0.35);

  transition: 0.35s ease;
}

.who-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.10),
    0 30px 75px rgba(47, 99, 200, 0.45);
}

.who-card:hover {
  transform: translateY(-10px);
}

/* Image box */
.who-img {
  width: 90px;
  height: 90px;
  background: #eef4ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.who-img img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* Text */
.who-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #0f172a;
}

.who-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #64748b;
}



/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .who-we {
    padding: 70px 18px;
  }

  .who-title {
    font-size: 30px;
  }

  .who-desc {
    font-size: 15px;
  }

  .who-card {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {

  .who-title {
    font-size: 24px;
  }

  .who-grid {
    gap: 20px;
  }
}

/* ===============================
COMMON
=============================== */

.section-badge{
  display:inline-block;
  background:#e8f0ff;
  color:#2b66ff;
  padding:6px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:15px;
}

.highlight{
  color:#ff7a00;
  font-weight:600;
}


/* ===============================
SECTION 1 : WHO WE ARE
=============================== */

.about-info{
  padding:0px 20px;
  background:#f7faff;
}

.about-info-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:60px;
  align-items:center;
}

.about-heading{
  font-size:40px;
  font-weight:800;
  margin-bottom:20px;
}

.about-heading span{
  color:#ff7a00;
}

.about-left p{
  margin-bottom:18px;
  line-height:1.7;
  color:#64748b;
}

/* Stats grid */
.about-stats{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:22px;
}

/* stat cards */
.stat-card{
  padding:35px;
  border-radius:18px;
  text-align:left;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
  transition:.35s;
}

.stat-card:hover{
  transform:scale(1.06);
}

.stat-card h3{
  font-size:28px;
  margin-bottom:6px;
}

.blue{
  background:#2f63c8;
  color:#fff;
}

.orange{
  background:#ff7a00;
  color:#fff;
}

.white{
  background:#fff;
}


/* ===============================
SECTION 2 : PURPOSE
=============================== */

.purpose{
  padding:30px 20px;
  text-align:center;
}

.purpose-title{
  font-size:40px;
  font-weight:800;
  margin-bottom:60px;
}

.purpose-title span{
  color:#ff7a00;
}

/* top cards */
.purpose-top{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:50px;
}

.purpose-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: left;
  transition: all .35s ease;

  /* Premium layered shadow */
  box-shadow:
    0 8px 20px rgba(0,0,0,0.06),
    0 18px 50px rgba(47, 99, 200, 0.18);
}

/* Hover effect */
.purpose-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 12px 28px rgba(0,0,0,0.10),
    0 28px 70px rgba(47, 99, 200, 0.30);
}

.purpose-card:hover{
  transform:scale(1.05);
}

/* values */
.values-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.value-box {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  transition: all .35s ease;

  /* layered premium shadow */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.05),
    0 12px 30px rgba(47, 99, 200, 0.12);
}

/* hover effect */
.value-box:hover {
  transform: translateY(-8px) scale(1.04);

  box-shadow:
    0 12px 26px rgba(0,0,0,0.10),
    0 22px 50px rgba(47, 99, 200, 0.25);
}

/* ===============================
 IMAGE ICON STYLES
=============================== */

/* big image box (vision + mission) */
.img-icon{
  width:60px;
  height:60px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.img-icon img{
  width:28px;
  height:28px;
  object-fit:contain;
}

/* background colors */
.img-icon.blue{
  background:#2f63c8;
}

.img-icon.orange{
  background:#ff7a00;
}


/* small value icons */
.small-img{
  width:45px;
  height:45px;
  background:#eaf1ff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;
}

.small-img img{
  width:22px;
  height:22px;
  object-fit:contain;
}


/* keep your zoom hover */
.purpose-card:hover,
.value-box:hover{
  transform:scale(1.06);
}



/* ===============================
RESPONSIVE
=============================== */

@media(max-width:992px){
  .about-info-wrapper{
    grid-template-columns:1fr;
  }

  .purpose-top{
    grid-template-columns:1fr;
  }
}

@media(max-width:480px){
  .about-heading,
  .purpose-title{
    font-size:26px;
  }
}

/* =========================
SOLUTIONS SECTION
========================= */

.solutions{
  padding:90px 20px;
  background:#f9fbff;
  text-align:center;
  font-family:'Poppins',sans-serif;
}

.section-badge{
  display:inline-block;
  background:#e8f0ff;
  color:#2d5bff;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
  margin-bottom:15px;
}

.solutions-title{
  font-size:40px;
  font-weight:800;
  margin-bottom:10px;
}

.solutions-title span{
  color:#ff7a00;
}

.solutions-sub{
  color:#667085;
  margin-bottom:50px;
  font-size:16px;
}


/* GRID */
.solutions-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}


/* CARD */
.solution-card{
  display:flex;
  align-items:flex-start;
  gap:18px;
  background:#fff;
  padding:28px;
  border-radius:18px;
  text-align:left;

  /* premium shadow */
  box-shadow:
    0 10px 30px rgba(37,99,235,0.10),
    0 4px 12px rgba(0,0,0,0.05);

  transition:.35s ease;
}


/* HOVER EFFECT */
.solution-card:hover{
  transform:scale(1.05);
  box-shadow:
    0 20px 60px rgba(37,99,235,0.25),
    0 10px 25px rgba(0,0,0,0.08);
}

/* TEXT COLOR CHANGE */
.solution-card:hover h3{
  color:#2d5bff;
}

.solution-card:hover p{
  color:#444;
}


/* NUMBER BADGE */
.solution-number{
  min-width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,#2d5bff,#ff7a00);
  font-size:16px;
}


/* TEXT */
.solution-content h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
  transition:.3s;
}

.solution-content p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
  transition:.3s;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){
  .solutions-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .solutions-title{
    font-size:28px;
  }

  .solution-card{
    padding:20px;
  }
}

/* =========================
TEAM SECTION
========================= */

.team{
  padding:0px 20px;
  background:#ffffff;
  text-align:center;
  font-family:'Poppins',sans-serif;
}

/* title */
.team-title{
  font-size:40px;
  font-weight:800;
  margin-bottom:10px;
}

.team-title span{
  color:#2d5bff;
}

.team-sub{
  max-width:750px;
  margin:auto;
  color:#667085;
  font-size:15px;
  margin-bottom:60px;
  line-height:1.6;
}


/* GRID */
.team-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}


/* CARD */
.team-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  padding-bottom:20px;
  transition:.35s ease;

  box-shadow:
    0 10px 30px rgba(37,99,235,0.08),
    0 6px 15px rgba(0,0,0,0.05);
}

.team-card:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:
    0 20px 50px rgba(37,99,235,0.22),
    0 10px 25px rgba(0,0,0,0.08);
}


/* IMAGE AREA */
/* IMAGE AREA */
.team-img{
  position:relative;
  overflow:hidden;
  width:100%;
  aspect-ratio: 3/4;   /* keeps portrait shape */
  border-radius:16px 16px 0 0;
}

.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;   /* keeps image proportional */
  object-position: top; /* keeps face visible */
  display:block;
  transition:.5s;
}


/* image zoom */
.team-card:hover img{
  transform:scale(1.08);
}


/* TRANSPARENT OVERLAY */
.team-overlay{
  position:absolute;
  bottom:-100%;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
      to top,
      rgba(45,91,255,0.35),
      rgba(45,91,255,0.05),
      transparent
  );
  transition:.45s ease;
}

.team-card:hover .team-overlay{
  bottom:0;
}


/* TEXT */
.team-card h3{
  font-size:16px;
  font-weight:700;
  margin-top:18px;
  transition:.3s;
}

.team-card p{
  font-size:13px;
  color:#6b7280;
  margin-top:4px;
}

/* NAME COLOR CHANGE */
.team-card:hover h3{
  color:#2d5bff;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:1024px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .team-grid{
    grid-template-columns:1fr;
  }

  .team-title{
    font-size:28px;
  }

  @media(max-width:600px){

  .team-img{
    aspect-ratio: 4/5;   /* slightly taller for mobile */
  }

  .team-img img{
    object-position: center top; /* better face alignment */
  }

}

}

/* =========================
CERTIFICATIONS SECTION
========================= */

.certifications{
  padding:30px 20px;
  background:#f9fbff;
  text-align:center;
  font-family:'Poppins',sans-serif;
}

/* Title */
.cert-title{
  font-size:36px;
  font-weight:800;
  margin-bottom:60px;
}

.cert-title span{
  color:#2d5bff;
}


/* GRID */
.cert-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}


/* CARD */
.cert-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:.35s ease;

  box-shadow:
    0 10px 30px rgba(37,99,235,0.10),
    0 6px 15px rgba(0,0,0,0.05);
}

.cert-card:hover{
  transform:translateY(-8px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(37,99,235,0.25),
    0 10px 25px rgba(0,0,0,0.08);
}


/* IMAGE */
.cert-img{
  padding:20px;
}

.cert-img img{
  width:100%;
  border-radius:12px;
  transition:.45s;
}

/* image zoom */
.cert-card:hover img{
  transform:scale(1.05);
}


/* TEXT */
.cert-content{
  padding:20px 25px 30px;
}

.cert-content h3{
  font-size:16px;
  font-weight:700;
  margin-bottom:6px;
  transition:.3s;
}

.cert-content p{
  font-size:13px;
  color:#6b7280;
}

/* text color change */
.cert-card:hover h3{
  color:#2d5bff;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){
  .cert-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .cert-title{
    font-size:26px;
  }

  .cert-img{
    padding:15px;
  }
}

/* =========================
ASSOCIATIONS SECTION
========================= */

.associations{
  background:#2f63c8;
  padding:100px 20px;
  text-align:center;
  font-family:'Poppins',sans-serif;
  color:#fff;
}

/* container */
.assoc-container{
  max-width:1200px;
  margin:auto;
}


/* badge */
.assoc-badge{
  display:inline-block;
  background:#ffffff22;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}


/* title */
.assoc-title{
  font-size:38px;
  font-weight:800;
  margin-bottom:10px;
}

.assoc-title span{
  color:#ff7a00;
}


/* subtitle */
.assoc-sub{
  max-width:650px;
  margin:0 auto 60px;
  font-size:15px;
  opacity:.9;
}


/* grid */
.assoc-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}


/* card */
.assoc-card{
  background:#fff;
  border-radius:14px;
  padding:28px 20px;
  transition:.35s ease;
  color:#0f172a;

  box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

/* image */
.assoc-card img{
  height:100px;
  object-fit:contain;
  margin-bottom:14px;
  transition:.35s;
  margin-left: 40px;
}
@media(max-width:768px){
  .assoc-card img{
    transform: translateX(50px); /* shift right */
  }
}


/* text */
.assoc-card p{
  font-size:13px;
  font-weight:600;
  margin:0;
}


/* hover effects */
.assoc-card:hover{
  transform:translateY(-8px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(0,0,0,.18);
}

.assoc-card:hover img{
  transform:scale(1.08);
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){
  .assoc-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .assoc-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .assoc-title{
    font-size:28px;
  }
}

@media(max-width:480px){
  .assoc-grid{
    grid-template-columns:1fr;
  }
}
/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

/* SECTION WRAPPER */
.imt-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(180deg, #2b64d4, #3268db);
    color: white;
    overflow: hidden;
}

/* TOP BADGE */
.imt-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 18px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    animation: fadeIn 1.2s ease-in;
}

/* TITLE */
.imt-title {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 10px 0;
    animation: popIn 1s ease-out;
}

.imt-subtext {
    font-size: 20px;
    margin: 10px 0 25px;
}

.imt-subtext span {
    color: #ffd45b;
    font-weight: 700;
}

/* STAR RATING */
.imt-stars {
    font-size: 40px;
    margin-bottom: 30px;
    animation: fadeInUp 1.3s ease-out;
}

/* SCROLL INDICATOR */
.scroll-down {
    font-size: 16px;
    opacity: 0.8;
    animation: fadeInUp 1.5s ease-out;
}

.scroll-down .arrow {
    font-size: 28px;
    display: block;
    margin-top: 5px;
    animation: bounce 1.4s infinite ease-in-out;
}

/* FLOATING CONFETTI EFFECT */
.confetti::before,
.confetti::after {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://i.ibb.co/5LRhhZb/confetti.png");
    background-size: 300px;
    animation: fall 10s linear infinite;
    opacity: 0.45;
}

.confetti::after {
    animation-delay: 4s;
    opacity: 0.25;
}

/* ANIMATIONS */
@keyframes fall {
    0% { transform: translateY(-100px) rotate(0deg); }
    100% { transform: translateY(120vh) rotate(360deg); }
}

@keyframes popIn {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .imt-title {
        font-size: 40px;
    }

    .imt-badge {
        font-size: 15px;
        padding: 8px 18px;
    }

    .imt-stars {
        font-size: 32px;
    }
}

@media(max-width: 480px) {
    .imt-title {
        font-size: 32px;
    }

    .imt-subtext {
        font-size: 16px;
    }
}





