/* =============navbar and header css start now ==========================*/

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

img {
  max-width: 100%;
}
.contact-item {
  font-size: 15px;
}
.phone-box a {
  color: inherit;
  text-decoration: none;
}
.contact-item a {
  color: inherit;
  text-decoration: none;
}
.app-top-item a {
  color: inherit;
  text-decoration: none;
}
.main-wrapper {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;

}

/* TOP BAR */
.app-sidebar-buttons button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
}

.app-logo-link {
  text-decoration: none;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Contact Button */
.btn-contact {
  background: #0E264E;
  color: white;
}

/* Apply Button */
.btn-apply {
  background: #FCCD0E;
  color: black;
  font-weight: 400;
  text-decoration: none;
}

/* Icons */
.app-sidebar-buttons i {
  font-size: 14px;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0E264E;
  padding: 6px 20px;
  color: white;
  font-size: 14px;
}

.no-scroll {
  overflow: hidden;

}

.app-top-left {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.app-top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.highlight {
  color: #FCCD0E;
}

.app-social-icons a {
  color: white;
  margin-left: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.app-social-icons a:hover {
  color: #FCCD0E;
}


/* SOCIAL */
.app-social-icons {
  display: flex;
  gap: 10px;
}

.app-social-icons a {
  color: #fff;
}

/* HEADER */
.app-header {
  background: #ECF5FF;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0px 1px 3px 0px #2d2d2d29;
}

/* LOGO */
.app-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .app-sidebar {
  overflow-y: auto;
} */

.app-sidebar {
  -webkit-overflow-scrolling: touch;
}

.app-logo-box img {
  width: 60px;
  border-radius: 50%;
}

.app-logo-text {
  font-size: 18px;
  color: #333;
}

/* NAV LINKS */
.app-nav-links a{
  position:relative;
  text-decoration:none;
  color:#333;
  margin-right:20px;
  font-weight:400;
  padding:5px 0;
  transition:0.3s;
}

/* 🔥 HOVER UNDERLINE ANIMATION */
.app-nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:linear-gradient(139deg,#FCCD0E,#C19E0D);
  transition:0.3s;
}

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

/* ACTIVE LINK */
.app-nav-links a.active{
  color:#1E3D6B;
}

/* ACTIVE UNDERLINE ALWAYS */
.app-nav-links a.active::after{
  width:100%;
}
/* MENU BUTTON */
.app-menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* SIDEBAR */
.app-sidebar {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LINKS */
.app-nav-links {
  display: flex;
  gap: 30px;
}

/* .app-nav-links a {
  text-decoration: none;
  color: #333;
} */

/* BUTTONS */
.app-sidebar-buttons {
  display: flex;
  gap: 10px;
}

.btn-contact {
  background: #3A4597;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
}

.btn-apply {
  background: #E54044;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
}

/* MOBILE SIDEBAR */
.app-sidebar-logo {
  display: none;
}

/* OVERLAY */
.app-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.5); */
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}


/* ================= MOBILE SIDEBAR NEW ================= */

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 270px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transition: 0.4s;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  right: 0;
}

/* HEADER */
.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.mobile-sidebar-header i {
  cursor: pointer;
  font-size: 20px;
}

/* LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-links a {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

/* BUTTONS */
.mobile-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* OVERLAY */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ONLY MOBILE ACTIVE */
@media(min-width:768px) {

  .mobile-sidebar,
  .mobile-overlay {
    display: none;
  }
}

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

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

  .app-logo-text {
    font-size: 13px;
    color: #333;
  }


  .app-topbar {
    background: #3A4597;
    color: #fff;
    padding: 8px 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    display: none;
  }

  .app-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #fff;

    transform: translateX(100%);
    transition: 0.4s;

    flex-direction: column;
    padding: 20px;
    z-index: 1000;
  }

  .app-sidebar.active {
    transform: translateX(0);
  }

  .app-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* MOBILE LOGO */
  .app-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .app-sidebar-logo img {
    width: 40px;
    border-radius: 50%;
  }

  /* LINKS */
  .app-nav-links {
    flex-direction: column;
    width: 100%;
  }

  .app-nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  /* BUTTONS */
  .app-sidebar-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .app-sidebar-buttons button {
    width: 100%;
  }

  .app-header {
    padding: 10px 20px;
  }

  .app-topbar {
    padding: 8px 20px;
  }

  section {
    overflow-x: hidden;
  }

}

/* =============navbar and header css  end  ==========================*/


/* ==============hero section start. now  ==========================*/


/* HERO SECTION */
.hero-section {
  width: 100%;
  background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
  padding: 60px 170px;

}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.hero-subtitle {
  color: #FFB6B8;
  font-size: 16px;
}

/* HERO BUTTON */
.hero-buttons {
  display: flex;
  gap: 12px;
}

.hero-buttons .btn {
  width: 240px;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.btn-outline {
  border: 1px solid #fff !important;
  color: #fff !important;
}

.btn-primary {
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  color: #fff;
}

/* SLIDER */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.hero-slide.active {
  left: 0;
  opacity: 1;
  position: relative;
}

/* RIGHT */
.hero-right {
  flex: 1;
  height: 400px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .topbar {
    padding: 8px 15px;
    display: none;
  }


  .header {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 22px;
    font-weight: 500;
    color: #48496C;
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ECF5FF;
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .hero-section {
    padding: 40px 20px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 28px;
  }


}


/* ==============hero section css. end   ==========================*/






/* ============= success center css start  now ==========================*/

/* SUCCESS SECTION */
/* .success-section {
  width: 100%;
  padding: 60px 170px;

} */
/* CARD */
.card1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 10px;
  background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);

  /* 🔥 smooth animation */
  transition: all 0.4s ease;
  cursor: pointer;
}

/* 🔥 HOVER EFFECT */
.card1:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* ✨ TEXT ANIMATION */
.card1:hover .card-text h3 {
  letter-spacing: 1px;
  transition: 0.3s;
}

/* ✨ IMAGE ANIMATION */
.card1 img {
  transition: 0.4s;
}

.card1:hover img {
  transform: scale(1.1) rotate(5deg);
}

.success-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.success-header {
  text-align: center;
  margin-bottom: 60px;
}

.success-header h2 {
  color: #1E3D6B;
  font-size: 40px;
  font-weight: 700;
}

.success-header p {
  color: #E64044;
  font-size: 16px;
  margin-top: 10px;
}

/* CARDS */
.success-cards {
  display: flex;
  gap: 20px;
}

/* CARD
.card1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 6px;
  background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
} */

.card-text span {
  color: #fff;
  font-size: 16px;
}

.card-text h3 {
  color: #FFC700;
  font-size: 28px;
  margin-top: 5px;
}

.card1 img {
  width: 80px;
  height: 80px;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .success-section {
    padding: 40px 30px;
  }

  .success-cards {
    flex-wrap: wrap;
  }

  .card {
    width: 48%;
  }
}

@media(max-width:600px) {
  .success-header h2 {
    font-size: 28px;
  }

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

  .card {
    width: 100%;
  }

  .card img {
    width: 60px;
    height: 60px;
  }
}


/* ============= success center css  end ==========================*/

/* ============= about section css start   ==========================*/


/* ABOUT SECTION */
.about {
  padding: 60px 170px;
  text-align: center;

  /* 🔥 animation base */
  transition: all 0.4s ease;
  cursor: pointer;
}

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

/* ✨ IMAGE ANIMATION */
.about-card:hover .about-img img {
  transform: rotate(5deg) scale(1.1);
  transition: 0.4s;
}

/* ✨ TEXT ANIMATION */
.about-card:hover .about-text h3 {
  letter-spacing: 1px;
  transition: 0.3s;
}

/* HEADER */
.about-header h2 {
  font-size: 40px;
  color: #1E3D6B;
  margin-bottom: 10px;
}

.about-header p {
  color: #E64044;
  font-size: 16px;
}

/* CARDS WRAPPER */
.about-cards {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

/* CARD */
.about-card {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  background: radial-gradient(circle, #1E3D6B 0%, #0E264E 100%);
  color: #fff;
  align-items: center;
}

/* IMAGE */
.about-img img {
  width: 100px;
  height: 100px;
}

/* TEXT */
.about-text h3 {
  color: #FFC700;
  margin-bottom: 5px;
}

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

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .about {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .about {
    padding: 40px 20px;
  }

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

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

  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 80px;
    height: 80px;
  }
}

/* ============= about section css start  end ==========================*/


/* ============= SERVICES SECTION css start   ==========================*/

/* SERVICES SECTION */
.services {
  padding: 60px 170px;
  text-align: center;
}

/* HEADER */
.services-header h2 {
  font-size: 40px;
  color: #1E3D6B;
  margin-bottom: 10px;
}

.services-header p {
  color: #E64044;
  font-size: 16px;
}

/* GRID */
.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  align-items: flex-start;
  text-align: left;
  background: #fff;
  transition: 0.3s;
  align-items: center;
}

/* HOVER */
.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* IMAGE BOX */
.service-img {
  width: 100px;
  height: 100px;
  /* background: rgba(216,216,216,0.5); */
  border-radius: 6px;
}

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

.service-text p {
  font-size: 14px;
  color: #555;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .services {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .services {
    padding: 40px 20px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-img {
    width: 80px;
    height: 80px;
  }
}

/* ============= SERVICES SECTION css end   ==========================*/




/* ============= Top Colleges Section css start   ==========================*/

/* SECTION */
.colleges {
  padding: 80px 160px;
  background: url("../assets/images/Products.png") no-repeat center/cover;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  color: #1E3D6B;
  margin-bottom: 40px;
}

/* SLIDER CONTAINER */
.slider-container {
  position: relative;
  overflow: hidden;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.college-card {
  min-width: 260px;
  background: #fff;
  /* border-radius: 8px; */
  flex-shrink: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.college-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.college-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a{
  text-decoration: none !important;
}
.college-img span {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  font-size: 12px;
}

.college-card p {
  padding: 12px;
  font-size: 18px;
  background: aliceblue;
  padding: 11px;
  color: #E64044;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.left {
  left: -10px;
}

.right {
  right: -10px;
}

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

  .colleges {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .college-card {
    min-width: 80%;
  }

  .arrow {
    display: none;
  }
}

/* ============= Top Colleges Section css end   ==========================*/




/* ============= Mission Section css start   ==========================*/

/* SECTION */

.topborder {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mission-section {
  padding: 60px 170px;
}

/* CONTAINER */
.mission-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

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

.mission-left h2 {
  font-size: 40px;
  color: #1E3D6B;
  margin-bottom: 10px;
}

.mission-left .subtitle {
  color: #E64044;
  font-size: 16px;
}

/* RIGHT */
.mission-right {
  flex: 1;
}

/* CARD */
.mission-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 6px;

  background: radial-gradient(circle, #1E3D6B 0%, #0E264E 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.mission-img {
  width: 100px;
  height: 100px;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.mission-text h3 {
  color: #FFC700;
  font-size: 20px;
  margin-bottom: 5px;
}

.mission-text p {
  color: #fff;
  font-size: 14px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .mission-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .mission-section {
    padding: 40px 20px;
  }

  .mission-container {
    flex-direction: column;
    gap: 30px;
  }

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

  .mission-card {
    flex-direction: column;
    text-align: center;
  }

  .mission-img {
    width: 80px;
    height: 80px;
  }
}

/* ============= 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;
}

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

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

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

.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;
}

/* BUTTONS */
.btn-outline {
  background: #eef2f7;
  color: #1E3D6B !important;
}

.btn-primary {
  background: linear-gradient(135deg, #FCCD0E, #C19E0D);
  color: #000;
  font-weight: 600;
}

/* BUTTON HOVER */
.btn-primary:hover {
  transform: scale(1.05);
}

/* 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: 26px;
  }
}










/* SECTION */
.testimonials {
  padding: 60px 170px;
  background: #fff;
}

/* LAYOUT */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.left h2 {
  font-size: 40px;
  color: #1E3D6B;
  margin-bottom: 20px;
}

/* RATING */
.rating-box {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}

.stars i {
  color: #FFC700;
  font-size: 18px;
}

.rating-box h3 {
  font-size: 22px;
  color: #1E3D6B;
}

.feedback-text {
  margin-top: 0px;
  font-size: 14px;
  color: #555;
}

/* RIGHT WRAPPER */
.right-wrapper {
  width: 540px;
  /* 👈 2 cards visible */
  overflow: hidden;
}

/* SCROLL AREA */
.right {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

/* HIDE SCROLLBAR */
.right::-webkit-scrollbar {
  display: none;
}

/* CARD */
.testimonial-card {
  width: 260px;
  height: 160px;
  background: radial-gradient(circle, #1E3D6B, #0E264E);
  border-radius: 8px;
  padding: 16px;
  color: #FFC700;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

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

.user h4 {
  color: #fff;
  font-size: 14px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  line-height: 20px;
}

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

.dots span.active {
  background: #1E3D6B;
}

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

  .testimonials {
    padding: 40px 20px;
  }

  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .left h2 {
    font-size: 26px;
  }

  .right-wrapper {
    width: 100%;
  }

  .rating-box {
    display: flex;
    /* align-items: center; */
    gap: 6px;
  }
}

/* ============= testimonials Section css end   ==========================*/


/* ============= CTA SECTION css start   ==========================*/

/* CTA SECTION */
.cta-section {
  padding: 60px 170px;
  background: radial-gradient(circle, #1E3D6B 0%, #0E264E 100%);
}

/* CONTAINER */
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

/* TEXT */
.cta-text h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

/* BUTTON */
.cta-btn {
  padding: 12px 20px;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .cta-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .cta-section {
    padding: 40px 20px;
  }

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

  .cta-text h2 {
    font-size: 20px;
  }

  .cta-img img {
    width: 80px;
    height: 80px;
  }
}

/* ============= CTA SECTION css end   ==========================*/

/* ============= enquiry SECTION css start   ==========================*/


/* SECTION */
.enquiry {
  padding: 60px 170px;
  background: #fff;
}

/* CONTAINER */
.enquiry-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.enquiry-left h2 {
  font-size: 40px;
  color: #1E3D6B;
  margin-bottom: 10px;
  font-weight: 700;
}

.enquiry-left p {
  color: #E64044;
  font-size: 16px;
}

/* HOVER */
.enquiry-right:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* SELECT (Dropdown same as input) */
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

/* SELECT FOCUS */
.form-group select:focus {
  border-color: #3A4597;
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 69, 151, 0.1);
}

/* RIGHT FORM */
.enquiry-right {
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
    gap: 0px !important;
  /* 🔥 Shadow effect */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* FORM GROUP */
.form-group {
  margin-bottom: 22px;
   gap: 0px !important;
}

/* LABEL */
.form-group label {
  display: block;
  font-size: 14px;
  color: #3A4597;
  margin-bottom: 6px;
  font-weight: 500;
}

/* INPUT */
.form-group input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
}

/* INPUT FOCUS */
.form-group input:focus {
  border-color: #3A4597;
  outline: none;
  box-shadow: 0 0 0 2px rgba(58, 69, 151, 0.1);
}

/* TAG */
.tag {
  background: rgba(0, 0, 0, 0.05);
  padding: 10px 12px;
  border-radius: 6px;
  color: #3A4597;
  display: inline-block;
  font-size: 14px;
  width: 100%;
}

/* SMALL TEXT */
.form-group small {
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 6px;
}

/* BUTTON */
.submit-btn {
  width: 240px;
  padding: 12px;
  background: linear-gradient(139deg, #FCCD0E, #C19E0D);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* BUTTON HOVER */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .enquiry {
    padding: 40px 20px;
  }

  .enquiry-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .enquiry-left h2 {
    font-size: 26px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* ============= enquiry SECTION css end   ==========================*/

/* ============= why-cac SECTION css start   ==========================*/

/* SECTION */
.why-cac {
  padding: 60px 170px;
  background: radial-gradient(circle, #1E3D6B, #0E264E);
}

/* CONTAINER */
.cac-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

/* IMAGE */
.cac-container img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.cac-left {
  display: flex;
  align-items: center;
}

.cacdic img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

/* BUTTON RIGHT SIDE */
.cac-btn button {
  padding: 10px 20px;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.cac-btn button:hover {
  background: #e04d00;
}

.cac-content h3 {
  margin: 0;
  font-size: 20px;
}

.cac-content p {
  margin: 5px 0 0;
  color: #555;
}

.cacdic {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* TEXT */
.cac-content {
  flex: 1;
  text-align: center;

}

.cacdic {
  gap: 12px;
  display: flex;
  align-items: center;
}


.cac-content h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 5px;
}

.cac-content p {
  color: #fff;
  font-size: 16px;
}



/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .why-cac {
    padding: 40px 20px;
  }

  .cac-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
        padding: 0px !important;
  }

  .cac-content {
    text-align: center;
  }

  .cac-btn button {
    width: 100%;
  }
}

/* ============= why-cac SECTION css end   ==========================*/

/* ============= features SECTION css start   ==========================*/


/* SECTION */
.features-section {
  padding: 60px 170px;
}

/* GRID CONTAINER */
.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.feature-card {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover img {
  transform: scale(1.1);
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-10px);
  /* upar uthta hai */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.feature-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* TITLE */
.feature-card h3 {
  color: #1E3D6B;
  font-size: 20px;
  margin-bottom: 8px;
}

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

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .features-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .features-section {
    padding: 40px 20px;
  }

  .features-container {
    grid-template-columns: 1fr;
    /* mobile 1 column */
    gap: 25px;
  }

  .feature-card img {
    width: 80px;
    height: 80px;
  }
}

/* ============= features SECTION css end   ==========================*/

/* ============= faq SECTION css start   ==========================*/

/* SECTION */
.faq-section {
  padding: 60px 170px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* CONTAINER */
.faq-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

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

.faq-left h2 {
  font-size: 40px;
  color: #1E3D6B;
}

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

/* ITEM */
.faq-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

/* ICON */
.faq-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

/* QUESTION */
.faq-question {
  flex: 1;
  font-size: 18px;
  color: #3A4597;
}

/* ANSWER */
.faq-answer {
  flex: 1;
  text-align: right;
  font-size: 16px;
  color: #333;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .faq-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .faq-section {
    padding: 40px 20px;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-left h2 {
    font-size: 28px;
    text-align: center;
  }

  .faq-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-answer {
    text-align: left;
  }

  .faq-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* ============= faq SECTION css end   ==========================*/

/* ============= FOOTER SECTION css start   ==========================*/


.footer-section {
  background: linear-gradient(135deg, #1E3D6B, #0E264E);
  color: white;
  padding: 60px 0;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.title {
  color: #f4c400;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.services-list1 {
  list-style: none;
  padding: 0;
}

.list-group-item1 {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-box {
  font-size: 22px;
  font-weight: bold;
  color: #f4c400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-box i {
  font-size: 30px;
  color: #25D366;
}
.social a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social a:hover {
  color: #f4c400;
  transform: scale(1.2);
}
.services-list1 {
  list-style: none;
  padding: 0;
}

/* .list-group-item1 {
  margin-bottom: 8px;
} */

.list-group-item1 a {
  text-decoration: none;
  color: white;
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
  transition: 0.3s;
}

.list-group-item1 a:hover {
  color: #f4c400;
  transform: translateX(5px);
}
.map {
  width: 100%;
  height: 180px;
  border-radius: 6px;
  border: none;
}

.social i {
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.social i:hover {
  color: #f4c400;
}

.map {
  width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

.associated {
  font-size: 12px;
  line-height: 1.6;
  max-width: 420px;
}

.footer-bottom {
  background: #e5e5e5;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .footer-bottom span {
    width: 100%;
    margin-top: 5px;
  }

  .phone-box {
    font-size: 18px;
  }

  .associated {
    text-align: center;
  }
}

/* ============= FOOTER SECTION css end   ==========================*/




/* ===== CONTACT WIDGETS ===== */
.contact-widgets {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.contact-widgets a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* WHATSAPP */
.whatsapp-widget {
  background: #25d366;
}

/* PHONE */
.phone-widget {
  background: #992728;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #350000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 9999;
}

/* HOVER */
.contact-widgets a:hover,
.scroll-top:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.fade-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: 0.6s ease;
}

.fade-top.show {
  opacity: 1;
  transform: translateY(0);
}


.fade-up,
.fade-left,
.fade-right,
.fade-top {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-top {
  transform: translateY(-40px);
}

.show {
  opacity: 1;
  transform: translate(0);
}



/* OVERLAY (UPDATED BG) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* 👇 transparent + blur */
  background: rgba(14, 38, 78, 0.65);
  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: flex-start; /* 👈 important */
  
  overflow-y: auto; /* 👈 scroll enable */
  padding: 40px 15px;
  z-index: 9999;
}

/* BOX */
.popup-box {
  width: 100%;
  max-width: 850px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative; /* 👈 IMPORTANT FIX */
  /* 👇 important */
  margin: auto;
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 22px;
  right: 19px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  z-index: 2;
}

/* FLEX */
.popup-content {
  display: flex;
  flex-wrap: wrap; /* 👈 important */
}

/* LEFT SIDE */
.popup-left {
  width: 45%;
  background: linear-gradient(135deg, #1E3D6B, #0E264E);
  color: #fff;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-badge {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
  display: inline-block;
}

.popup-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-left p {
  font-size: 14px;
  opacity: 0.9;
}

.popup-features {
  margin-top: 20px;
}

.popup-features div {
  margin-bottom: 8px;
  font-size: 14px;
}

/* RIGHT SIDE */
.popup-right {
  width: 55%;
  padding: 30px;
}

.popup-right h3 {
  margin-bottom: 20px;
  color: #1E3D6B;
}

/* INPUT GROUP (IMPROVED) */
.input-group {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #e5e5e5;
  padding: 10px 5px;
  margin-bottom: 15px;
  transition: 0.3s;
  flex-wrap: nowrap !important;
}

.input-group:hover {
  border-color: #1E3D6B;
}

.input-group i {
  margin-right: 10px;
  color: #1E3D6B;
  font-size: 14px;
}

/* INPUT */
.input-group input,
.input-group select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background: transparent;
}

/* BUTTON (UPDATED GRADIENT) */
.popup-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  color: #000;
  margin-top: 10px;
  transition: 0.3s;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* ANIMATION */
@keyframes popupFade {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 🔥 RESPONSIVE FIX */
@media(max-width:768px){

  .popup-overlay {
    align-items: flex-start;
    padding: 20px 10px;
  }

  .popup-content {
    flex-direction: column;
  }

  .popup-left,
  .popup-right {
    width: 100%;
  }

}

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

  .popup-left h2 {
    font-size: 20px;
  }

  .popup-right h3 {
    font-size: 18px;
  }

  .popup-btn {
    padding: 12px;
    font-size: 14px;
  }
}


.captcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Error text */
.captcha-error {
  color: red;
  font-size: 14px;
  margin: 0;
  display: none;
}

/* Center captcha on small screens */
@media (max-width: 768px) {
  .captcha-wrapper {
    align-items: center;
    text-align: center;
  }

  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
  }
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.8);
  }
}

