* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  width: 90% !important;
  margin: auto;
  padding: 0 40px;
}

/* ================= TOP BAR ================= */
.topbar {
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  color: #fff;
  font-size: 14px;
  padding: 13px 0;
}

/* WRAPPER */
.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.top-left {
  font-weight: 500;
}

/* CONTACT AREA */
.top-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* EACH ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.contact-item i {
  font-size: 13px;
}

/* SOCIAL ICONS */
.top-icons {
  display: flex;
  align-items: center;
}

.top-icons a {
  color: #fff;
  margin-left: 12px;
  font-size: 14px;
  transition: 0.3s;
}

.top-icons a:hover {
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px) {

  .top-contact {
    gap: 15px;
  }

  .contact-item span {
    font-size: 12px;
  }

}

/* MOBILE */
@media(max-width:768px) {

  .topbar-wrap {
    flex-direction: column;
    text-align: center;
  }

  .top-contact {
    flex-direction: column;
    gap: 8px;
  }

  .top-icons {
    margin-top: 5px;
  }

}

/* SMALL MOBILE */
@media(max-width:480px) {

  .top-left {
    font-size: 12px;
  }

  .contact-item span {
    font-size: 11px;
  }

}

/* ================= HEADER ================= */
.header {
  height: 90px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

/* LOGO */
.logo img {
  height: 80px;
  object-fit: contain;
}

/* HOVER FIX */
.btn-outline:hover {
  background: #1246BB;
  color: #fff !important;
  /* text white */
}

.btn-outline:hover i {
  color: #fff !important;
  /* icon bhi white */
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* .nav a{
  text-decoration:none;
  color:#463F3C;
  font-weight:500;
  position:relative;
  transition:0.3s;
} */
.nav a {
  position: relative;
  display: inline-block;
  /* IMPORTANT */
  color: #333;
  text-decoration: none;
  padding: 6px 10px;
}

/* HOVER UNDERLINE */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

/* ON HOVER */
.nav a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.nav a.active {
  color: #2563eb;
}

.nav a.active::after {
  width: 100%;
}

.btn-outline1 a {
  display: flex;
  align-items: center;
  gap: 8px;
  /* icon aur text ke beech gap */
  color: #fff;
}

.nav-btns a {
  display: flex;
  align-items: center;
  gap: 8px;
  /* icon aur text ke beech gap */
  color: #fff;
}

/* HOVER UNDERLINE EFFECT */
.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1246BB;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: #1246BB;
}

/* BUTTONS */
.nav-btns {
  display: flex;
  gap: 12px;
}

.btn-outline {
  border: 1px solid #1246BB;
  padding: 10px 16px;
  border-radius: 8px;
  color: #1246BB;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #1246BB;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* MENU BUTTON */
.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= SIDEBAR ================= */
/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 270px;
  height: 100vh;
  background: #fff;
  transition: 0.3s;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}
/* SAME BUTTON DESIGN */
.call-now {
  background: #28a745; /* green for call */
  margin-top: 8px;
}
/* BOTTOM LOGO CENTER */
.sidebar-bottom-logo {
  display: flex;
  justify-content: center;
  align-items: center;
 margin-top: 40px;
  padding: 20px 0;
}

.sidebar-bottom-logo img {
  width: 250px;
  height: auto;
}
/* HOVER EFFECT SAME FEEL */
.call-now:hover {
  background: #218838;
}

/* DESIGN FOOTER FIX */
.headerdesign {
  margin-top: 15px;
  /* padding: 10px; */
  text-align: center;
  border-top: 1px solid #eee;
}

.headerdesign span {
    font-size: 12px;
    color: #666;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.headerdesign span a {
  color: #1246BB;
  font-weight: 500;
  text-decoration: underline;
}

.headerdesign a:hover {
  text-decoration: underline;
}
.sidebar.active {
  left: 0;
}

/* TOP FIXED */
.sidebar-top {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

/* SCROLLABLE AREA */
.sidebar-links {
  flex: 1;
  overflow-y: auto;
  padding: 10px 15px;
}

/* SCROLL SMOOTH */
.sidebar-links::-webkit-scrollbar {
  width: 5px;
}

.sidebar-links::-webkit-scrollbar-thumb {
  background: #1246BB;
  border-radius: 10px;
}

/* LINKS */
/* SIDEBAR LINKS */
.sidebar-links a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid #f3f3f3;
}

/* ACTIVE LINK */
.sidebar-links a.active {
  background: #FE8B0A;
  color: #fff;
  border-radius: 8px;
}

/* HOVER */
.sidebar-links a:hover {
  background: #f1f5f9;
}

/* ACTIVE hover fix */
.sidebar-links a.active:hover {
  background: #2563eb;
  color: #fff;
}

/* OVERLAY */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

.overlay.active {
  display: block;
}

/* ================= RESPONSIVE ================= */
/* @media(max-width:1024px){

  .nav{
    gap:20px;
  }

} */

@media(max-width:900px) {

  .nav {
    display: none;
  }

  .nav a {
    display: none;
  }

  .nav-btns {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .topbar-wrap {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }

}

/* SMALL MOBILE */
@media(max-width:500px) {

  .logo img {
    height: 60px;
  }

  .topbar {
    font-size: 13px;
    display: none;
  }

}













.hero {
  width: 100%;
  min-height: 575px;
  /* background: url('../assets/images/hero-bg.png') no-repeat center/cover; */
  display: flex;
  align-items: center;
}
/* HERO SLIDER BG */
.hero {
  position: relative;
  overflow: hidden;
   transition: opacity 0.8s ease-in-out;
}

/* SLIDES */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-bg.png') no-repeat center/cover;
  background: rgba(0,0,0,0.3);
  z-index: -1;
  transition: opacity 0.5s ease;
}

/* DYNAMIC BG (JS control karega) */
.hero.slide1::before {
  background: url('../assets/images/hero-bg.png') no-repeat center/cover;
}

.hero.slide2::before {
  background: url('../assets/images/herobannerslide2.png') no-repeat center/cover;
}

.hero.slide3::before {
  background: url('../assets/images/herobannerslide4.png') no-repeat center/cover;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  background: #ffffff80;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots span.active {
  background: #FE8B0A;
  transform: scale(1.2);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* TAG BOX */
.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  max-width: 420px;
  z-index: 1;
  background: #FE8B0A;
  font-size: 12px;
  color: #fff;
}


.hero-tag::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: #47403D;
  border-radius: 6px;
  z-index: -1;

}

.hero-span {
  color: #fff;
  font-size: 12px;
}



/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* HEADING - FIGMA MATCH */
.hero-title {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: -4px;
  text-transform: uppercase;
  /* 🔥 Clean Gradient */
  background: linear-gradient(180deg, #FF8C1A 0%, #0033A0 65%, #001F5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* ✅ Proper White Stroke */
  -webkit-text-stroke: 4px #ffffff;
  /* 🔥 Improve sharpness */
  paint-order: stroke fill;
}


.hero .btn-outline {
  background: #fff;
  border: 1px solid #1246BB;
  color: #1246BB;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn-outline:hover {
  background: #1246BB;
  color: #fff;
}

.hero .btn-primary {
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn-primary:hover {
  opacity: 0.85;
}

/* ================= RESPONSIVE ================= */

/* ================= MOBILE FIX ================= */
@media(max-width:768px) {

  .hero {
    min-height: auto;
    padding: 30px 15px;
    /* 👈 extra space remove */
    text-align: center;
  }

  .hero-content {
    gap: 15px;
    /* 👈 gap kam */
    align-items: center;
  }

  /* TAG */
  .hero-tag {
    font-size: 11px;
    padding: 6px 12px;
    max-width: 100%;
  }

  /* TITLE */
  .hero-title {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: -1px;
    -webkit-text-stroke: 2px #fff;
    /* 👈 stroke kam */
  }

  /* BUTTONS */
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-btns a {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}

/* SMALL MOBILE */
@media(max-width:480px) {

  .hero {
    padding: 25px 12px;
  }

  .hero-content {
    gap: 12px;
  }
  .hero-dots {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    gap: 8px;
}
  .hero-title {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0;
    -webkit-text-stroke: 1.5px #fff;
  }

  .hero-tag {
    font-size: 10px;
  }

  .hero-btns a {
    font-size: 13px;
    padding: 9px;
  }
  
}
@media(max-width:768px) {

  .hero::before {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('../assets/images/hero-bg.png') no-repeat center/cover;

    filter: blur(1.5px);   /* 👈 pehle 4px tha, ab halka */
    transform: scale(1.03); /* 👈 thoda hi zoom */
  }

  .hero.slide1::before {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('../assets/images/hero-bg.png') no-repeat center/cover;
  }

  .hero.slide2::before {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('../assets/images/herobannerslide2.png') no-repeat center/cover;
  }

  .hero.slide3::before {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
                url('../assets/images/herobannerslide4.png') no-repeat center/cover;
  }

}









/* SECTION */
.announcement-bar {
  width: 100%;
  background: #FF0000;
  display: flex;
  justify-content: center;
  padding: 8px 0;
  /* mobile spacing fix */
}

/* INNER */
.announcement-container {
  width: 95%;
  max-width: 1286px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  /* scroll ke liye important */
}

/* TAG */
.announcement-tag {
  background: #fff;
  border-radius: 50px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  /* important - shrink na ho */
}

.announcement-tag span {
  color: #C62928;
  font-size: 14px;
  font-weight: 600;
}

/* TEXT WRAPPER (SCROLL AREA) */
.announcement-text-wrapper {
  overflow: hidden;
  white-space: nowrap;

  color: #fff;
  padding: 10px 0;
  position: relative;
}

/* TEXT (SCROLLING) */
.announcement-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
}

/* Hover pe stop */
.announcement-text-wrapper:hover .announcement-text {
  animation-play-state: paused;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ANIMATION */


/* ================= MOBILE ================= */
@media(max-width:768px) {

  .announcement-container {
    width: 95%;
    gap: 10px;
  }

  .announcement-tag span {
    font-size: 12px;
  }

  .announcement-text {
    font-size: 13px;
    animation-duration: 10s;
    /* fast scroll mobile */
  }
}

/* SMALL MOBILE */
@media(max-width:480px) {

  .announcement-tag {
    padding: 5px 10px;
  }

  .announcement-tag span {
    font-size: 11px;
  }

  .announcement-text {
    font-size: 12px;
    animation-duration: 8s;
  }
}








/* SECTION */
.impact {
  background: #F8F8F8;
  padding: 50px 0;
}

/* TITLE */
.impact-title {
  text-align: center;
  color: #1246BB;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* CARDS WRAPPER */
.impact-cards {
  display: flex;
  gap: 15px;
}

/* CARD */
.impact-card {
  flex: 1;
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgb(254 139 10 / 31%);
  box-shadow: 0px 3px 1px 1px #fe9a00;
  transition: 0.3s ease;
}

/* TEXT */
.impact-card p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  margin-bottom: 5px;
}

.impact-card h3 {
  color: #FE8B0A;
  font-size: 26px;
  font-weight: 700;
}

/* 🔥 HOVER EFFECT (BG CHANGE) */
.impact-card:hover {
  background: #1246BB;
  /* 👈 bg change */
  transform: translateY(-6px);
}

/* TEXT CHANGE ON HOVER */
.impact-card:hover p {
  color: #ddd;
}

.impact-card:hover h3 {
  color: #fff;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:900px) {
  .impact {
    padding: 40px 0;
  }

  .impact-cards {
    flex-wrap: wrap;
    gap: 12px;
  }

  .impact-card {
    flex: 1 1 48%;
    padding: 16px;
  }

  .impact-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

/* MOBILE */
@media(max-width:600px) {

  .impact {
    padding: 30px 0;
    /* 👈 padding kam */
  }

  .impact-cards {
    flex-direction: column;
    gap: 10px;
  }

  .impact-card {
    width: 100%;
    padding: 14px;
    text-align: center;
  }

  .impact-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .impact-card p {
    font-size: 14px;
  }

  .impact-card h3 {
    font-size: 22px;
  }
}












/* SECTION */
.about {
  padding: 60px 0;
  background: url('../assets/images/bgabout.png') no-repeat center/cover;
}

/* WRAPPER */
.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left h2 {
  color: #1246BB;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-left p {
  color: #463F3C;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 15px;
}

/* POINTS */
.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  color: #FE8B0A;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

/* RIGHT */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.about-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  align-items: flex-start;
  transition: 0.3s ease;
}

/* IMAGE */
.card-img {
  width: 100px !important;
  height: 100px !important;

}

.card-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT */
.about-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.about-card p {
  font-size: 14px;
  line-height: 22px;
}

/* COLORS */
.mission {
  background: #FE8B0A;
}

.vision {
  background: #1E3D6B;
}

/* 🔥 HOVER EFFECT */
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:900px) {
  .about {
    padding: 45px 0;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-left h2 {
    font-size: 28px;
  }

  .about-left p {
    font-size: 14px;
  }

  .about-card {
    padding: 16px;
  }
}

/* MOBILE */
@media(max-width:600px) {

  .about {
    padding: 30px 0;
  }

  .about-wrapper {
    gap: 20px;
  }

  .about-left {
    text-align: center;
  }

  .about-left h2 {
    font-size: 24px;
  }

  .about-left p {
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
  }

  .about-points li {
    font-size: 13px;
    text-align: left;
  }

  /* CARD STACK */
  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px;
    gap: 10px;
  }

  .card-img {
    width: 70px;
    height: 70px;
  }

  .about-card h3 {
    font-size: 16px;
  }

  .about-card p {
    font-size: 13px;
    text-align: justify;
  }
}








/* SECTION */
.help {
  padding: 60px 0;
  background: url('../assets/images/bgimageorange.png') no-repeat center/cover;
}

/* WRAPPER */
.help-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
}

/* LEFT */
.help-left {
  max-width: 470px;
}

.help-left h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-left p {
  color: #fff;
  font-size: 15px;
}

/* RIGHT GRID */
.help-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 520px;
  width: 100%;
}

/* CARD */
.help-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.help-card .icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: 0.3s;
}

.help-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT */
.help-card p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  transition: 0.3s;
}

/* 🔥 HOVER ANIMATION */
.help-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #1246BB, #0B70CF);
}

.help-card:hover p {
  color: #fff;
}

.help-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:900px) {
  .help {
    padding: 45px 0;
  }

  .help-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .help-left h2 {
    font-size: 30px;
  }

  .help-left p {
    font-size: 14px;
  }

  .help-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* MOBILE */
@media(max-width:600px) {

  .help {
    padding: 30px 0;
    /* 👈 padding kam */
  }

  .help-wrapper {
    gap: 20px;
  }

  .help-left h2 {
    font-size: 24px;
  }

  .help-left p {
    font-size: 13px;
  }

  .help-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 13px;
  }

  .help-card {
    padding: 14px;
    gap: 12px;
  }

  .help-card .icon {
    width: 70px;
    height: 70px;
  }

  .help-card p {
    font-size: 14px;
    line-height: 20px;
  }
}














/* SECTION */
.stack-section {
  background: url('../assets/images/bgstiky.png') no-repeat center/cover;
  padding: 60px 0;
  background-attachment: fixed;
}

/* CONTAINER */
.stack-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* CARD BASE */
.stack-card {
  position: sticky;
  top: 120px;
  margin-bottom: 5px;
  border-radius: 24px;
  padding: 48px 44px;
  z-index: 1;
  transition: 0.4s ease;
}

/* STACK EFFECT */
.card1 {
  top: 120px;
  background: #E5F4FF;
  z-index: 1;
}

.card2 {
  top: 160px;
  background: #FEFAE8;
  z-index: 2;
}

.card3 {
  top: 200px;
  background: #C7FFD1;
  z-index: 3;
}

/* INNER */
.stack-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* IMAGE */
.stack-img img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

/* CONTENT */
.stack-content {
  flex: 1;
}

/* TAG */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.blue {
  background: #cfe9ff;
  color: #2891F1;
  border: 1px solid #2891F1;
}

.yellow {
  background: #fff1cc;
  color: #FE9A00;
  border: 1px solid #FE9A00;
}

.green {
  background: #d9ffe5;
  color: #007830;
  border: 1px solid #007830;
}

/* HEADING */
/* .stack-content h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:12px;
   
} */
.bluewhite1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #043177, #075BDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bluewhite2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #FE9A00, #FE9A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bluewhite3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #043177, #075BDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.paragraptag {
  color: #002D47;
}

.Expert {
  color: #463F3C;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.Expert2 {
  color: #B16D05;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.Expert3 {
  color: #007830;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.Expertp {
  color: #463F3C;
  font-size: 14px;
  font-weight: 600;
}

.Expertp2 {
  color: #B16D05;
  font-size: 14px;
  font-weight: 600;
}

.Expertp3 {
  font-size: 14px;
  font-weight: 600;
  color: #007830;

}

/* TEXT */
.stack-content p {
  font-size: 16px;
  line-height: 24px;

  margin-bottom: 20px;
}

/* POINTS */
.points {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.points div {
  max-width: 200px;
  text-align: left;
}

/* .points h4{
  font-size:20px;
  font-weight:800;
  margin-bottom:5px;
}

.points p{
  font-size:14px;
  font-weight:600;
} */

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:900px) {

  .stack-inner {
    flex-direction: column;
    text-align: center;
  }

  .stack-img img {
    width: 100%;
    height: auto;
  }

  .points {
    justify-content: left;
  }

}

/* Mobile */
@media(max-width:600px) {

  .stack-section {
    padding: 60px 0;
  }

  .stack-card {
    padding: 20px;
    top: 80px;
  }

  .stack-content h2 {
    font-size: 22px;
  }

  .stack-content p {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: justify;
  }

  .points {

    gap: 1px;
  }

}












.placement-section {
  background: #FE8B0A;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* .container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
} */

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #fff;
  font-size: 16px;
}

/* Cards */
.placement-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1;
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  padding: 25px 30px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card span {
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

/* Shapes */
.shape {
  position: absolute;
  z-index: 1;
}

.shape1 {
  left: 32%;
  bottom: 0px;
}

.shape2 {
  right: 132px;
  bottom: 0px;
}



/* 📱 Responsive */
@media (max-width: 768px) {

  .placement-cards {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .card {
    text-align: center;
  }

  .shape1 {
    left: 20%;
    width: 100px;
    display: none;
  }

  .shape2 {
    width: 100px;
    display: none;
  }

  .placement-section {
    background: #FE8B0A;
    padding: 30px 4px;
    position: relative;
    overflow: hidden;
  }

  .card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  }
}











.review-section {
  padding: 80px 20px;
  background: #fff;
}

.review-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.review-left h2 {
  color: #1246BB;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-score {
  font-size: 18px;
  font-weight: 600;
  color: #57585A;
}

.review-text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

/* RIGHT */
.review-right {
  display: flex;
  gap: 20px;
}

/* REVIEW WRAPPER */
.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* SCORE */
.review-score {
  font-size: 22px;
  font-weight: 700;
  color: #1246BB;
  display: flex;
  gap: 5px;
  align-items: center;
}

/* STARS */
.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars i {
  color: #FFC107;
  /* gold star */
  font-size: 14px;
}

/* TEXT */
.review-text {
  font-size: 13px;
  color: #666;
}

/* CARD */
.review-card {
  width: 240px;
  background: linear-gradient(180deg, #463F3C, #000);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.review-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.review-user h4 {
  font-size: 14px;
  font-weight: 500;
}

.review-card p {
  font-size: 14px;
  line-height: 20px;
}

/* 📱 Responsive */
@media (max-width: 768px) {

  .review-container {
    flex-direction: column;
    text-align: center;
  }

  .review-right {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 100%;
    max-width: 300px;
  }

  .review-section {
    padding: 30px 20px;
    background: #fff;
  }

  .review-left h2 {
    color: #1246BB;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}








/* CTA SECTION */
.apply-cta-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.apply-cta {
  background: linear-gradient(rgba(0, 39, 77, 0.8), rgba(0, 39, 77, 0.8)),
    url('../assets/images/whychoosebg.png') no-repeat center/cover;
  padding: 60px 20px;
}

.apply-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT GROUP */
.cta-left-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* IMAGE */
.cta-left img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* TEXT */
.cta-center h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0px;
}

/* BUTTON */
.apply-btn {
  padding: 12px 20px;
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media(max-width:768px) {
  .apply-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  
  .cta-left-group {
  display: flex;
  align-items: center;
  gap: 1px;
  justify-content: center;
}
}










.apply-form-section {
  position: relative;
  padding: 20px 20px;
  font-family: 'Poppins', sans-serif;
  background: url('../assets/images/placementbg.png') center/cover no-repeat;
}

/* Overlay (image clear dikhe + text readable) */
.apply-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
 background: rgb(0 0 0 / 41%);
}

.container {
  position: relative;
  z-index: 2;
}

/* BOX (bada kar diya) */
/* .apply-form-box {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
} */
.apply-form-box {
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
/* TITLE */
.apply-form-box h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* FULL WIDTH */
.full-width {
  grid-column: span 2;
}

/* FORM GROUP */
.form-group label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

/* INPUT */
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  outline: none;
}

/* CAPTCHA */
.captcha-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.captcha-row button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

/* BUTTON */
.submit-btn {
  padding: 14px;
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
}
.captcha-flex {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Captcha box (left side) */
.captcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  min-width: 140px;
}

/* Input (right side) */
.captcha-input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* Button */
.captcha-row button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}

/* Mobile responsive */
@media(max-width: 480px) {
  .captcha-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-row {
    width: 100%;
  }
}
/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .apply-form-box {
    padding: 25px;
  }
}

/* Mobile */
@media(max-width: 480px) {
  .apply-form-box h3 {
    font-size: 20px;
  }
  .cta-center h2 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.apply-form-section {
    position: relative;
    padding: 30px 0px;
    font-family: 'Poppins', sans-serif;
    background: url(../assets/images/placementbg.png) center / cover no-repeat;
}
}













/* SECTION */
.next-step-section {
  width: 100%;
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CONTAINER */
.next-step-section .container {
  max-width: 700px;
  width: 100%;
}

/* HEADING */
.next-step-section h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 24px;
}

/* BUTTON */
.next-step-btn {
  display: inline-block;
  background: #fff;
  color: #1246BB;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.next-step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px) {
  .next-step-section h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

/* MOBILE */
@media(max-width:768px) {
  .next-step-section {
    padding: 50px 15px;
  }

  .next-step-section h2 {
    font-size: 17px;
    line-height: 34px;
  }

  .next-step-btn {
    width: 100%;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media(max-width:480px) {
  .next-step-section h2 {
    font-size: 17px;
    line-height: 30px;
  }

  .next-step-btn {
    font-size: 14px;
    padding: 10px;
  }
}










/* SECTION */
.stats-section {
  width: 100%;
  background: linear-gradient(90deg, #1246BB, #0B70CF);
  padding: 15px 20px;
  /* 👈 thoda balanced */
}

/* WRAPPER */
.stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ITEM */
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  min-width: 180px;
}

/* 🔥 ICON (BIGGER) */
.stat-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1246BB;
  flex-shrink: 0;
  transition: 0.3s;
}

/* TEXT */
.stat-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px;
}

.stat-text p {
  font-size: 14px;
  opacity: 0.9;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

/* 🔥 HOVER */
.stat-item:hover .stat-icon {
  transform: scale(1.1);
  background: #FE8B0A;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px) {

  .stats-section {
    padding: 30px 15px;
  }

  .stats-wrapper {
    gap: 25px;
  }

  .divider {
    display: none;
  }

}

/* MOBILE */
@media(max-width:768px) {

  .stats-wrapper {
    justify-content: center;
  }

  .stat-item {
    width: 45%;
    gap: 12px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .stat-text h3 {
    font-size: 18px;
  }

  .stat-text p {
    font-size: 13px;
  }
}

/* SMALL MOBILE */
@media(max-width:480px) {

  .stats-section {
    padding: 25px 12px;
  }

  .stat-item {
    width: 100%;
    justify-content: flex-start;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stat-text h3 {
    font-size: 16px;
  }

  .stat-text p {
    font-size: 12px;
  }
}














/* ============= Mission Section css end   ==========================*/
/* HERO SECTION */
/* SECTION */
.uni-section {
  /* background: linear-gradient(135deg, #FCCD0E 0%, #C19E0D 100%); */
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ddd;
}

/* CONTAINER */
.uni-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.uni-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
}

.uni-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1E3D6B;
  margin-top: 30px;
}

.uni-header p {
  color: #444;
  font-size: 15px;
  margin-top: 8px;
}

/* GRID */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.uni-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.uni-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* TOP BORDER */
.uni-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(135deg, #0e2ffc, #e3bc1a);
}

/* TOP */
.uni-card-top {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.uni-card-top img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  object-fit: cover;
}

.uni-card-top h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1E3D6B;
  margin-bottom: 5px;
}

/* LOCATION */
.uni-card-top p {
  font-size: 13px;
  color: #777;
}

/* TAG */
.uni-tag {
  background: #fff3c4;
  color: #a87d00;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px 0;
  font-weight: 500;
}

/* BODY */
.uni-card-body {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.uni-card-body div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin: 6px 0;
}

.uni-card-body span {
  color: #777;
}

.uni-card-body b {
  color: #1E3D6B;
  font-weight: 600;
}

/* FOOTER BUTTONS */
.uni-card-footer {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.uni-card-footer button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}



/* VIEW BUTTON */
.uni-view-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1E3D6B;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 30px;
}

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

@media (max-width: 600px) {
  .uni-grid {
    grid-template-columns: 1fr;
  }

  .uni-header h2 {
    font-size: 16px;
  }
}







.captcha-box {
  margin-top: 10px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.captcha-text {
  background: #f1f5f9;
  padding: 8px 14px;
  font-weight: bold;
  letter-spacing: 3px;
  border-radius: 6px;
}

.captcha-row button {
  border: none;
  background: #2563eb;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}