@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0%;
}

/* Custom Header Style */
/* Default navbar — glass look over hero */
.navbar-logo {
  height: 70px;
}

@media screen and (max-width: 768px) {
  .navbar-logo {
    height: 50px;
  }

  .dual-btn a {
    font-size: 12px;
  }
}

.custom-navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  padding: 0px 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.1s ease-out;
}

/* On scroll — full width sticky */
.custom-navbar.scrolled-navbar {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100% !important;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0px 30px;
}


/* Navbar Links */
.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ff6b35 !important;
}

/* Smooth dropdown animation */
.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-in-out;
  border-radius: 8px;
  padding: 10px 0;
}

/* Show on hover */
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.dropdown-menu .dropdown-item {
  padding: 15px 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Links styling inside dropdown */
.dropdown-menu .dropdown-item:hover {
  background-color: #f39c12;
  color: white !important;
}

/**************************
   YOUR ORIGINAL BUTTON STYLE
**************************/
.dual-btn {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  background-color: #f39c11;
  position: relative;
}

.admission-btn,
.result-btn {
  position: relative;
  z-index: 2;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  transition: .35s ease;
}

.admission-btn {
  background-color: #f39c11;
  color: #12125d;
}

.result-btn {
  background-color: #12125d;
  color: #fff;
  border-radius: 50px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/**************************
   HOVER LIFT + GLOW
**************************/
.admission-btn:hover,
.result-btn:hover {
  transform: translateY(-0px);
}

.admission-btn:hover {
  box-shadow: 0 0 15px #f39c1199;
}

.result-btn:hover {
  box-shadow: 0 0 15px #12125d99;
}

/**************************
   HOLOGRAPHIC EFFECT FOR BUTTONS
**************************/

/* Shared shine base */
.holo-btn-1::before,
.holo-btn-2::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  transform: rotate(-45deg);
  opacity: 0;
  transition: .5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* Holo Shine For Left Button (Golden Glow) */
.holo-btn-1::before {
  background: linear-gradient(0deg,
      transparent,
      #ffe68a,
      transparent 90%);
}

/* Holo Shine For Right Button (Blue/Cyan Glow) */
.holo-btn-2::before {
  background: linear-gradient(0deg,
      transparent,
      #84bdffcd,
      transparent 70%);
}

/* On Hover run animation */
.holo-btn-1:hover::before,
.holo-btn-2:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(120%);
}

/* Responsive */
@media (max-width: 991px) {
  .custom-navbar {
    border-radius: 20px;
  }
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
  position: sticky;
  top: 0;
  z-index: 999;
}

.hero-slider {
  position: relative;
  height: 92vh;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
}

.carousel-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: opacity 1s ease-in-out;
}

/* Fade transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}

.carousel-caption {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 700px;
}

@media screen and (max-width: 768px) {
  .carousel-caption {
    top: 55%;
    padding: 0 15px;
  }
}

/* Fade effect for carousel */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}

/* Remove slide transform (no sliding motion) */
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active.carousel-item-end,
.carousel-fade .carousel-item.active.carousel-item-start {
  transform: none;
}

/* ===== Search Bar Design ===== */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  padding: 2.5px;
  background: transparent;
  background-size: 400% 400%;
  transition: all 0.3s ease;
}

.search-bar:hover,
.search-bar:focus-within {
  background: linear-gradient(90deg, #f39c12, #ff512f, #9e0d67, #1d9447, #f39c12);
  background-size: 400% 400%;
  animation: borderMove 2.5s linear infinite;
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
}

.search-bar input {
  width: 100%;
  padding: 15px 50px 15px 25px;
  border-radius: 50px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #ffffff;
  outline: none;
  background: #6060606f;
  position: relative;
  z-index: 1;
  transition: border 0.3s ease;
}

.search-bar:hover input,
.search-bar:focus-within input {
  border-color: transparent;
  background-color: #ffffff;
  /* Solid white background as requested */
  color: #000000;
  /* Dark text to be readable on the white background */
}

.search-bar input::placeholder {
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.search-bar:hover input::placeholder,
.search-bar:focus-within input::placeholder {
  color: #666666;
  /* Darker placeholder when background is white */
}

.search-bar button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

/* 🌈 Animated Border */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ===== BREAKING NEWS ===== */
.breaking-bar {
  display: flex;
  align-items: center;
  background: #002060;
  color: #fff;
  font-weight: 500;
  overflow: hidden;
  border-bottom: 0px solid #f39c12;
  user-select: none;
  margin: 0;
  padding: 0;
}

.breaking-label {
  position: relative;
  background: linear-gradient(90deg, #f39c12, #ff512f);
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  flex-shrink: 0;
}

.breaking-label::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #ff512f;
}

.breaking-label i {
  animation: blink 1.2s infinite alternate;
}

.breaking-text {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 15px;
  cursor: grab;
  scroll-behavior: smooth;
}

.breaking-text:active {
  cursor: grabbing;
}

.breaking-text::-webkit-scrollbar {
  display: none;
}

.breaking-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breaking-text a:hover {
  color: #ffcc00;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

.breaking-text.active-drag {
  cursor: grabbing;
}




/* ===== SECTION STYLES ===== */
.section-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #12125d;
  text-align: center;
  margin-bottom: 10px;
  /* Reduced from 1rem to strictly control the gap */
}

.intro-text {
  text-align: center;
  max-width: 1024px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

.highlight {
  width: 200px;
  height: 6px;
  margin: 0 auto 20px auto;
  /* Set exactly 0 top margin to keep it tight and rely on header's bottom margin */
  display: block;
  /* changed to block so margin auto centers it consistently */
  background-image: linear-gradient(90deg, rgb(244 198 25) 0%, rgb(243 107 52) 31%, rgb(237 19 124) 64%, rgb(40 143 209) 100%);
  transform: skewX(45deg);
}

.news-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  /* Matched section-title margin */
  color: #12125d;
}

.process-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #12125d;
  text-align: center;
  margin-bottom: 10px;
  /* Matched section-title margin */
}

.media-header h2 {
  margin-bottom: 10px !important;
}



.service-box {
  border-radius: 6px;
  margin: 0 auto;
}

.service-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.service-box strong {
  color: #1a1ab2;
}

@media only screen and (max-width: 600px) {
  .service-box {
    padding: 0%;
  }

  .service-box p {
    text-align: justify;
  }
}

.news-section {
  padding: 50px 20px !important;
  background-color: #e8f3ff;
}



@media screen and (max-width: 768px) {
  .news-section h2 {
    font-size: 1.6rem;
  }
}

.card-box {
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-header {
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: orange;
}

.card-body {
  padding: 10px 15px;
}



/* Scroll Effect */
.news-scroll {
  height: 250px;
  /* Fixed height for scroll */
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scroll-up 30s linear infinite;
}

.news-scroll:hover .scroll-content {
  animation-play-state: paused;
  /* Hover → Pause */
}

/* Animation Keyframes */
@keyframes scroll-up {
  0% {
    transform: translateY(10%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.news-item {
  text-align: left;
  padding: 0px;
}

@media screen and (max-width: 768px) {
  .news-item {
    font-size: 11px;
  }

  .date {
    font-size: 10px;
  }

}

.date {
  font-size: 12px;
  color: #777;
}

.badge-new {
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  background: red;
  animation: blinkFade 0.5s infinite;
}

@keyframes blinkFade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}


.view-all {
  font-size: 12px;
  color: white;
  text-decoration: none;
  background-color: orange;
  padding: 10px 15px;
  width: 20%;
  transition: all 0.3s ease-in-out;
}

.view-all:hover {
  color: #fff;
  transform: scale(1.1);
  text-decoration: none;
}

.card-hafe {
  background-color: #12125d;
  /* Changed from #0a66c2 to #12125d as requested */
  padding: 10px 15px;
  min-width: 50%;
}

@media screen and (max-width: 768px) {
  .card-hafe {
    font-size: 9px;
  }

  .view-all {
    font-size: 10px;
    padding: 8px 12px;
    width: 30%;
  }
}



/* ===== FOOTER ===== */
.process-section {
  text-align: center;
  margin: 60px auto;
  max-width: 1400px;
}

.process-heading-badge {
  display: inline-block;
  background: linear-gradient(90deg, #1d113e, #0a66c2);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
  border-left: 5px solid #ff9800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.processbox {
  padding: 0 15px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

/* 6 boxes ek line me — without scroll */
.lpNew_process {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* equal spacing */
  gap: 18px;
  flex-wrap: nowrap;
}

/* Each box — auto fitted width */
.lpNew_processCol {
  flex: 1;
  /* Auto width */
  min-width: 0;
  /* Prevent overflow */
  max-width: 16%;
  /* 6 boxes = 100/6 = 16.6% */
}

.lpNew_processColwrapper {
  background: linear-gradient(180deg, #e8f3ff, #fff);
  padding: 25px 15px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.processIcn {
  height: 55px;
  margin-bottom: 15px;
}

.processIcn img {
  height: 100%;
}

.lpNew_processCol h4 {
  color: #2d3079;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.lpNew_processCol p {
  color: #4c5f74;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Arrow between boxes */
.arrow-box {
  font-size: 26px;
  color: #2d3079;
  font-weight: bold;
  opacity: 0.8;
}

.arrow-box i {
  animation: arrowBounce 1.5s infinite ease-in-out;
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .lpNew_process {
    flex-direction: column;
  }

  .lpNew_processCol {
    max-width: 100%;
  }

  .arrow-box {
    transform: rotate(90deg);
  }
}

/* ===== Scroll Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0px);
}



/* ===== You Are Looking For ===== */
.youarelookingfor_section {
  padding: 60px 0;
  background: #fff;
  /* e8f3ff */
  position: relative;
}

.imgoverflow {
  position: absolute;
  top: 30%;
  left: 45%;
  z-index: 1;
}

.service-slider {
  background-color: #fefefe;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: calc(400px * 10);
  padding: 50px 0;
  animation: scrollInfinite 25s linear infinite;
}

.service-card2 {
  position: relative;
  flex: 0 0 400px;
  border-radius: 15px;
  color: #000;
  background-color: #ffffff;
  text-align: left;
  padding: 40px 25px;
  margin: 0 15px;
  box-shadow: 1px 1px 6px 3px #dddddd inset, 20px 10px 25px #0000003c;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card2 p {
  flex-grow: 1;
  margin-bottom: 25px;
  /* Add some space above the buttons */
}

.service-card2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f4f6ff78, #f1f2ff5b);
  transition: all 0.5s ease-in-out;
  z-index: 0;
  border-radius: 10px;
}

.service-card2:hover::before {
  left: 0;
}

.welcome-btn {
  background: #1e5feb;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.welcome-btn:hover {
  background: transparent;
  border: 1px solid #2b4aff;
  color: #000000;
}

.readmore {
  transition: all 0.3s ease;
  text-decoration: none;
}

.readmore:hover {
  transform: scale(1.04);
}

.service-card2 * {
  position: relative;
  z-index: 1;
}

.service-card2:hover {
  transform: translateY(-8px);
}

.service-card2 img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-card2 h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card2 p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-service {
  background: #fff;
  color: #111827;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #111827;
}

.btn-service:hover {
  background: #111827;
  color: #fff;
}

.btn-lookingfor {
  background: #12125d;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #12125d;
}


/* Infinite scroll animation */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-card2 {
    flex: 0 0 85%;
    padding: 25px 15px;
  }

  .service-card2 img {
    width: 150px;
    height: 150px;
  }

  .slider-track {
    animation-duration: 35s;
  }
}

.slider-track:hover {
  animation-play-state: paused;
}

/* ===== Top Services ===== */
.top-service {
  text-align: center;
  padding: 60px 0;
}

.top-service h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #12125d;
  margin-bottom: 10px;
}

.underline {
  width: 80px;
  height: 4px;
  background-color: #fcbf49;
  margin: 0 auto 30px auto;
  border-radius: 5px;
}

.top-service p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 16px;
}

.service-card {
  position: relative;
  background-color: #f8f6ff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Sliding background layer */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f4f6ff, #f1f2ffcb);
  transition: all 0.5s ease-in-out;
  z-index: 0;
  border-radius: 10px;
}

/* Hover animation – background slides left ➜ right */
.service-card:hover::before {
  left: 0;
}

/* Lift & shadow on hover */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Keep content above animated background */
.service-card * {
  position: relative;
  z-index: 1;
}

/* Image styling */
.service-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

/* Slight zoom on hover */
.service-card:hover img {
  transform: scale(1.1);
}

/* Text styling */
.service-card h5 {
  font-weight: 700;
  color: #0a0a3c;
  margin-bottom: 5px;
}

.service-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}


.arrow-btn {
  background-color: white;
  border: none;
  font-weight: 600;
  border-radius: 10%;
  color: #ff9800;
  padding: 5px 35px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.arrow-btn:hover {
  background-color: #ffaa00;
  color: white;
  transform: scale(1.1);
}

/* ===== MEDIA QUERIES ===== */
.recharge-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
}

.recharge-box {
  width: 300px;
  background: #fff;
  padding: 40px 30px;
  text-align: left;
  border-radius: 16px;
  box-shadow: 1px 1px 6px 3px #b1b1b1 inset;
  transition: all 0.3s ease;
  cursor: pointer;
}

.recharge-box:hover {
  transform: translateY(-4px);
}

.icon {
  font-size: 42px;
  color: #0066ff;
  margin-bottom: 20px;
  display: inline-block;
}

.recharge-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.3px;
  margin: 0;
}



/* About Section (Welcome to Digital Info Solutions) */
.about-section {
  padding: 80px 0;
  background: #e8f3ff;
}

.about-section h2 {
  color: #12125d;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section .lead {
  font-size: 1rem;
  color: black;
  max-width: 950px;
  margin: 0 auto 50px;
}

.about-service-box {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 1px 1px 6px 3px #b1b1b1 inset, 10px 10px 15px #0000003c;
  transition: all 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.about-service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: blue;
}

.about-service-box i {
  color: blue;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.about-service-box h5 {
  color: Black;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-service-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.about-service-box a {
  color: #f8bb06;
  font-weight: 500;
  margin-top: 15px;
}



.benefits-section {
  padding: 60px 20px;
  background: #fff;
}

.benefits-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #12125d;
}

.benefits-desc {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

.benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 7px 1px #ff8400b5;
  border-color: blue;
  border: 1px solid #ff8400b5;
  color: rgb(255, 255, 255);
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.benefit-card h5 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.bgwelcome {
  background-color: #ffffff !important;
}

/* Icon Colors */
.blue {
  color: #004aad;
}

.green {
  color: #008f39;
}

.orange {
  color: #ff6600;
}




/* ===== Testimonial Section ===== */
.testimonial-section {
  text-align: center;
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonial-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.testimonial-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #12125d;
  margin-bottom: 10px;
  /* Reduced to match other sections */
  position: relative;
  display: inline-block;
}



.testimonial-header p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider Container */
.testimonial-slider-container {
  position: relative;
  margin: 0 auto;
  padding: 0 40px;
}

/* Slider Wrapper */
.testimonial-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

/* Slider track */
.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  padding: 20px 10px;
}

/* Card Style */
.testimonial-card {
  flex: 0 0 calc(100% / 3 - 20px);
  margin: 0 10px;
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.client-rating {
  color: #ff9800;
  font-size: 1.2rem;
  margin: 10px 0;
  letter-spacing: 2px;
}

.testimonial-text {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
  position: relative;
  padding: 0 10px;
}

.testimonial-text:before {
  content: "\201C";
  font-size: 3rem;
  color: #ff9800;
  position: absolute;
  left: -5px;
  top: -20px;
  opacity: 0.3;
  font-family: serif;
}

.client-designation {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: #ff9800;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Dots Navigation */
.testimonial-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots .dot {
  height: 12px;
  width: 12px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
  background-color: #aaa;
}

.testimonial-dots .dot.active {
  background-color: #ff9800;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 2 - 20px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
  }

  .testimonial-header h2 {
    font-size: 2.2rem;
  }

  .testimonial-slider-container {
    padding: 0 20px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

/* Animation for cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: fadeIn 0.5s ease forwards;
}

/* === Counter Section === */
.counter-section {
  background: linear-gradient(270deg, #0f172a, #1e3a8a, #052c6c, #230440, #0d204d);
  background-size: 600% 600%;
  animation: gradientMove 12s ease infinite;
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Background Gradient Animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Counter Box Styling */
.counter-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Counter Number */
.counter {
  font-size: 36px !important;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

/* Counter Title */
.counter-box p {
  font-size: 15px;
  color: #e0e0e0;
  margin: 0;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .counter {
    font-size: 28px !important;
  }

  .counter-box {
    padding: 25px 15px;
  }
}

/* ===== Partner Section ===== */
.partner-area {
  background-color: #e9f3fb;
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
}

.partner-area .partner-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #12125d;
}

.partner-area .partner-desc {
  font-size: 1rem;
  color: #444;
  max-width: 700px;
}

.partner-area .partner-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.partner-area .partner-stat-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.partner-area .partner-stat-box span {
  display: block;
  font-size: 1rem;
  color: #666;
}

/* ===== Logo Slider ===== */
.partner-area .partner-logo-slider {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.partner-area .partner-logo-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: partnerSlideUp 20s linear infinite;
}

.partner-area .partner-logo-slide img {
  width: 180px;
  height: auto;
  margin: 15px 0;
  border-radius: 10px;
  padding: 10px;
  background: white;
  box-shadow: 2px 2px 7px #0000001a inset;
}

@keyframes partnerSlideUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .partner-area .partner-stats {
    flex-direction: row;
    gap: 20px;
  }

  .partner-area .partner-logo-slider {
    height: 250px;
  }
}

/* FAQ Section Minimal CSS */
.faq-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.text-center h2 {
  color: #12125d;
  font-weight: 700;
  margin-bottom: 10px;
  /* Matched to everything else */
}



/* Tab Wrapper */
.tab-wrapper {
  margin: 40px auto;
  max-width: 1100px;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  background: #e8f1f4;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #0a3b4a;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  background: #c5e1e9;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #0a3b4a;
  color: #fff;
  box-shadow: 0 5px 15px rgba(10, 59, 74, 0.2);
}

.tab-btn i {
  font-size: 14px;
}

/* Tab Icons Color */
.tab-btn[data-tab="tab1"] i {
  color: #0a3b4a;
}

.tab-btn[data-tab="tab2"] i {
  color: #1e88e5;
}

.tab-btn[data-tab="tab3"] i {
  color: #43a047;
}

.tab-btn[data-tab="tab4"] i {
  color: #e53935;
}

.tab-btn.active[data-tab="tab1"] i,
.tab-btn.active[data-tab="tab2"] i,
.tab-btn.active[data-tab="tab3"] i,
.tab-btn.active[data-tab="tab4"] i {
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* FAQ Items */
.faq-item {
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #0a3b4a;
  box-shadow: 0 5px 15px rgba(10, 59, 74, 0.08);
}

.faq-item.active {
  border-color: #0a3b4a;
  box-shadow: 0 8px 20px rgba(10, 59, 74, 0.12);
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a3b4a;
  font-size: 16px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e8f1f4;
}

.faq-question i {
  color: #0a3b4a;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-item.active .faq-question i.fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px;
  background: #fff;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
  padding: 20px;
  border-top: 1px solid #e8f1f4;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 15px;
  }
}


/* ==== Footer ==== */
.footer {
  background-color: #1d113e;
  /* background-image: url(../images/footerbg.png); */
  background-repeat: repeat-x;
  position: relative;
  z-index: 5;
  background-size: cover;
}

.footer:after {
  content: "";
  position: absolute;
  left: -300px;
  top: -51px;
  width: 57%;
  height: 370px;
  transform: skewX(-20deg);
  border-radius: 0px 50px 30px 0px;
  z-index: -10;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
  background: linear-gradient(90deg, #aa66ed 0%, #3b43da 100%);
}

.foot-head {
  display: flex;
}

.foot-head .f-logo {
  width: 280px;
}

.foot-head .f-logo img {
  width: 100%;
}

.foot-head .f-text {
  padding-left: 10px;
  color: #fff;
}

.footer .sec-2 {
  padding-left: 50px;
  padding-top: 30px;
}

.footer .sec-2 .footlink {
  list-style: none;
  margin: 0px;
  padding: 0px;
  column-count: 3;
}

.footer .sec-2 .footlink li a {
  padding: 5px;
  color: #fff;
  text-decoration: none;
  display: block;
}

.footer .sec-2 .visitor {
  padding: 20px 3px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  text-align: center;
  margin-top: 19px;
  position: relative;
  min-height: 110px;
}

.footer .copyright {
  /* border-top: 1px solid rgba(255, 255, 255, .3); */
  color: #fff;
  padding-top: 15px;
  text-align: right;
}

.footer .sec-1 ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.footer .sec-1 ul li {
  color: #fff;
  padding: 5px 15px 5px 50px;
  position: relative;
}

.footer .sec-1 ul li.email:before {
  content: "\f003";
  font-size: 1.4em;
}

.footer .sec-1 ul li:before {
  font-family: FontAwesome;
  /* color: #ff8236; */
  font-size: 3.2em;
  position: absolute;
  left: 0px;
  top: 2px;
}

.footer .sec-1 ul li.call:before {
  content: "\f095";
  font-size: 1.4em;
}

.footer .sec-1 ul li:before {
  font-family: FontAwesome;
  /* color: #ff8236; */
  font-size: 3.2em;
  position: absolute;
  left: 0px;
  top: 2px;
}

.footer .sec-1 ul li.address:before {
  content: "\f041";
  font-size: 1.7em;
}

.footer .sec-1 ul li:before {
  font-family: FontAwesome;
  /* color: #ff8236; */
  font-size: 2.2em;
  position: absolute;
  left: 0px;
  top: 2px;
}

@media only screen and (max-width: 1200px) {
  .footer:after {
    left: -300px;
    top: -51px;
    width: 58%;
    height: 371px;
    background: linear-gradient(90deg, #6a0c2b 0%, rgba(27, 30, 111, 1) 100%);
  }
}



/* ===== Floating Call & WhatsApp Buttons ===== */
/* ===== Floating Buttons Wrapper ===== */
.floating-buttons {
  position: fixed;
  right: 25px;
  bottom: 100px;
  width: 50px;
  /* 🔒 fixed width */
  height: 140px;
  z-index: 9999;
}

/* ===== Base Button ===== */
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
}

/* ===== WhatsApp Wrapper ===== */
.whatsapp-container {
  position: absolute;
  bottom: 180px;
  /* WhatsApp upar */
  right: 0;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  width: 50px;
  height: 50px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 15px;
  border-radius: 50px;
  overflow: hidden;
  transition: width 0.35s ease;
}

/* 🔥 Hover Expand */
.whatsapp-container:hover .whatsapp-btn {
  width: 160px;
}

/* ===== Text ===== */
.qr-text {
  margin-left: 10px;
  font-size: 15px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-container:hover .qr-text {
  opacity: 1;
}

/* ===== QR Popup ===== */
.qr-popup {
  position: absolute;
  bottom: 65px;
  right: 0;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-container:hover .qr-popup {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qr-popup img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
}


/* ===== Google Translator Widget ===== */
.translator-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999;
}

.translator-select {
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  width: 70px;
}


/* ===================================================Contact Us=================================================== */
/* CONTACT PAGE */
.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-box .icon {
  font-size: 30px;
  color: #12125D;
  margin-bottom: 10px;
}

.contact-form .form-control {
  border-radius: 0;
  padding: 10px;
}

.send-btn {
  background: #12125D;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
}

.send-btn:hover {
  background: #1d1d77;
  color: #fff;
}

/* ============================================================================== Contact Us ============================================================================== */