@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hind Siliguri", sans-serif;
}

body {
  background-color: #f5f5f5;
  padding-top: 60px;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styles */
.header {
  background-color: #1c2e58;
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 60px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.bangla-bkash {
  color: white;
  font-size: 24px;
  margin-right: 5px;
  letter-spacing: -0.5px;
}

.logo {
  height: 74px;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: -50px;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.nav-item.dropdown {
  display: inline-block;
  position: relative;
  padding: 5px 15px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 400;
}

.nav-item.dropdown.active {
  border: 1px dotted #fff;
  border-radius: 20px;
  padding: 4px 14px;
}

.dropdown::after {
  content: "▼";
  font-size: 8px;
  margin-left: 3px;
  vertical-align: middle;
}

.right-nav {
  display: flex;
  align-items: center;
}

/* Login Button Style - Updated to fully transparent */
.login-btn {
  background-color: transparent;
  color: white;
  padding: 6px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-right: 10px; /* Added margin to move it more to the right */
}

.login-btn:hover {
  border-color: rgba(255, 255, 255, 1);
}

.app-btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 6px 14px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 10px;
}

/* Menu Toggle Button - Moved to the right side */
.menu-toggle {
  display: none; /* Hide by default on desktop */
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-left: 15px; /* Changed from margin-right to margin-left */
  order: 3; /* Ensure it appears at the end */
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex; /* Show on mobile/tablet */
  }
}

/* Dropdown Menu Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1001;
  padding: 35px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-grid {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px 100px;
  padding: 0 10%;
}

.service-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #444;
  /* padding: 2px; */
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-item:hover {
  color: #ff008a;
}

.service-item:active {
  opacity: 0.9;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-name {
  font-size: 16px;
  font-weight: normal;
  color: #444;
}

/* Show class for toggling dropdown with JavaScript */
.show {
  display: block;
}

/* Hero Slider Styles */
.hero-slider {
  margin-top: 0;
  position: relative;
}

.swiper {
  width: 100%;
  height: 500px;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.banner-image {
  flex-grow: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.banner-text-wrapper {
  width: 100%;
  padding: 0 15%;
  margin-top: 20px;
}

.banner-text-container {
  /* background-color: white; */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.banner-text-container .banner-headline {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.4;
}

.banner-text-container .btn-details {
  background-color: #ff008a;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.banner-text-container .btn-details:hover {
  /* background-color: #cf0072; */
}

/* Custom navigation */
.swiper-custom-navigation {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.swiper-custom-prev,
.swiper-custom-next {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.swiper-custom-prev:hover,
.swiper-custom-next:hover,
.swiper-pause:hover {
  color: #ffcc00;
}

.swiper-pagination-bullets {
  display: flex;
  gap: 8px;
}

.swiper-pagination-bullet {
  margin-top: 90px;
  width: 15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper-pause {
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

/* Hide default swiper controls as we're using custom ones */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  display: none;
}

/* Services Section Styles */
.services-section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-category {
  background-color: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}

.service-category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-category-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.more-link {
  background-color: #f9f9f9;
  border: 1px dashed #ddd;
}

.more-icon {
  width: 30px;
  height: 30px;
  background-color: #ff008a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.more-icon i {
  color: white;
  font-size: 12px;
}

/* Features Section Styles */
.features-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-image {
  height: 200px;
  overflow: hidden;
}

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

.feature-content {
  padding: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-text {
  color: #666;
  line-height: 1.5;
}

/* Download App Section Styles */
.download-app {
  padding: 80px 0;
}

.download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-text {
  max-width: 50%;
}

.download-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.download-description {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.app-download-btn {
  display: block;
  max-width: 180px;
}

.app-download-btn img {
  width: 100%;
}

.app-image {
  max-width: 40%;
}

.app-image img {
  width: 100%;
  display: block;
}

/* Live Chat Button */
.live-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1c2e58;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  z-index: 100;
}

.live-chat:hover {
  transform: translateY(-3px);
}

.live-chat i {
  font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .service-grid {
    padding: 0 5%;
  }

  .banner-text-wrapper {
    padding: 0 3%;
  }

  .banner-text-container .banner-headline {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-content {
    flex-direction: column;
    gap: 40px;
  }

  .download-text,
  .app-image {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .swiper {
    height: 450px;
  }

  .banner-text-wrapper {
    padding: 0 5%;
  }

  .banner-text-container .banner-headline {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 8px 3%;
  }

  .nav {
    display: none;
  }

  .nav.show-mobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ff008a;
    padding: 20px;
    z-index: 1000;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .swiper {
    height: 400px;
  }

  .banner-text-wrapper {
    padding: 0 3%;
  }

  .banner-text-container .banner-headline {
    font-size: 18px;
  }

  .btn-details {
    padding: 8px 25px;
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .swiper-custom-navigation {
    bottom: 15px;
  }
}

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

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

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }

  .live-chat {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
  }

  .swiper {
    height: 350px;
  }

  .banner-text-container .banner-headline {
    font-size: 16px;
  }

  .banner-text-container .btn-details {
    padding: 6px 20px;
    font-size: 12px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Footer Styles */
.bkash-footer {
  background-color: #1f1f1f;
  color: white;
  padding: 40px 0 20px;
  font-family: "Hind Siliguri", sans-serif;
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Logo and Tagline */
.footer-logo-section {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 60px;
}

.footer-tagline {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
}

/* App Download Section */
.footer-app-download {
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}

.app-store-buttons {
  display: flex;
  gap: 10px;
}

.app-button {
  display: block;
  max-width: 180px;
}

.app-button img {
  width: 100%;
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-column-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #e6146c;
}

.certification-logos {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.certification-logos img {
  height: 50px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.copyright-text {
  color: #999;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.social-icon i {
  color: #222;
  font-size: 16px;
}

.social-icon:hover {
  background-color: #e6146c;
}

.social-icon:hover i {
  color: #fff;
}

/* Responsive styles */
@media (max-width: 992px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .app-store-buttons {
    flex-direction: column;
  }
}

.surepay-footer {
  position: relative;
  background-color: #0a58ca;
  color: white;
  font-family: "Hind Siliguri", sans-serif;
  margin-top: 100px;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg path {
  fill: #0a58ca;
}

/* Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo Section */
.footer-logo-section {
  padding-right: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.logo-glow {
  position: absolute;
  width: 130px; /* Increased from 100px */
  height: 130px; /* Increased from 100px */
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.6); /* Adjusted brightness */
  filter: blur(30px); /* Increased blur effect */
  opacity: 0.85;
  z-index: -1;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.9;
  }
}

.footer-logo img {
  height: 90px; /* Increased from 70px to 90px */
  filter: drop-shadow(0 0 20px rgba(13, 110, 253, 0.9));
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.08);
}

.logo-text {
  font-size: 36px; /* Increased from 32px to 36px */
  font-weight: 900; /* Made font weight bolder */
  font-family: "Hind Siliguri", sans-serif; /* Ensuring non-serif font */
  margin-left: 18px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 20%, #3d8bfd 70%, #0a58ca 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(13, 110, 253, 0.5);
  text-transform: uppercase; /* Kept uppercase styling */
  font-style: normal; /* Removed italic style */
  position: relative;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  padding-left: 5px;
  border-left: 3px solid #3d8bfd;
  max-width: 100%;
}

/* App Download Section */
.footer-app-download {
  margin-top: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3d8bfd, transparent);
  border-radius: 3px;
}

.app-store-buttons {
  display: flex;
  gap: 15px;
}

.app-button {
  display: block;
  max-width: 120px;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.app-button img {
  width: 100%;
  display: block;
}

/* Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-links-column {
  padding: 0 10px;
}

.footer-column-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
}

.title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #0d6efd;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 3px 8px rgba(13, 110, 253, 0.5);
}

.title-icon i {
  font-size: 12px;
  color: white;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.footer-menu li:hover {
  transform: translateX(5px);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.menu-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #3d8bfd;
  border-radius: 50%;
  margin-right: 8px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-menu a:hover .menu-dot {
  opacity: 1;
  transform: scale(1);
}

.certification-logos {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: rgba(13, 110, 253, 0.1);
  border-color: rgba(13, 110, 253, 0.3);
  transform: translateY(-3px);
}

.cert-badge i {
  color: #3d8bfd;
  font-size: 14px;
  margin-right: 6px;
}

.cert-badge span {
  font-size: 12px;
  font-weight: 500;
}

/* Contact Info */
.footer-contact {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 5px 10px rgba(13, 110, 253, 0.3);
}

.contact-icon i {
  color: white;
  font-size: 16px;
}

.contact-info h5 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 3px;
  font-weight: 400;
}

.contact-info p {
  font-size: 16px;
  color: white;
  margin: 0;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  position: relative;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.copyright-text i {
  margin-right: 5px;
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.social-icon i {
  color: white;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* Solid brand colors for each platform */
.social-icon.facebook {
  background-color: #1877f2; /* Facebook blue */
}

.social-icon.youtube {
  background-color: #ff0000; /* YouTube red */
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #f77737
  ); /* Instagram gradient */
}

.social-icon.linkedin {
  background-color: #0a66c2; /* LinkedIn blue */
}

.social-icon.twitter {
  background-color: #1da1f2; /* Twitter blue */
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

/* Decorative Elements */
.footer-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.2), transparent 70%);
  z-index: 0;
  opacity: 0.5;
}

.footer-decoration.left {
  top: -50px;
  left: -50px;
}

.footer-decoration.right {
  bottom: -50px;
  right: -50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-section {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #3d8bfd;
    padding-left: 0;
    padding-bottom: 10px;
  }

  .footer-heading {
    display: block;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }

  .app-store-buttons {
    justify-content: center;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column-title {
    justify-content: center;
  }

  .footer-menu li:hover {
    transform: none;
  }

  .footer-menu a {
    justify-content: center;
  }

  .certification-logos {
    justify-content: center;
  }

  .copyright-text {
    justify-content: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-icon {
    margin-right: 0;
  }
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none; /* Hide on desktop by default */
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-left: 15px; /* Changed from margin-right to position it on the right */
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  background-color: white;
  z-index: 1100;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  background-color: #e2146c;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar-user {
  margin-right: 15px;
}

.sidebar-user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  flex-grow: 1;
}

.sidebar-close {
  font-size: 20px;
  cursor: pointer;
}

.sidebar-language {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.language-btn {
  background-color: transparent;
  border: 1px solid #e2146c;
  color: #e2146c;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.language-btn.active {
  background-color: #e2146c;
  color: white;
}

.sidebar-menu {
  flex: 1;
}

.sidebar-menu-item {
  padding: 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: #333;
}

.sidebar-menu-item:hover {
  background-color: #f9f9f9;
}

.sidebar-menu-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2146c;
  margin-right: 15px;
  font-size: 18px;
}

.sidebar-menu-text {
  font-size: 16px;
  flex-grow: 1;
}

.sidebar-notification {
  width: 8px;
  height: 8px;
  background-color: #e2146c;
  border-radius: 50%;
}

.menu-toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-right: 15px;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}

.menu-toggle-button:hover {
  opacity: 0.9;
}

.menu-toggle-button:active {
  transform: scale(0.95);
}

/* Responsive adjustments for header elements */
@media (max-width: 768px) {
  .header {
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .login-btn {
    padding: 5px 15px;
    font-size: 14px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #0d6efd;
  --primary-light: #3d8bfd;
  --primary-dark: #0a58ca;
  --primary-gradient: linear-gradient(135deg, #0d6efd, #0a58ca);
  --secondary: #6c757d;
  --secondary-light: #adb5bd;
  --accent: #0dcaf0;
  --light: #f8f9fa;
  --dark: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  color: var(--dark);
  background-color: #f8f9fa;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f9ff, #eaf3ff);
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--dark);
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1),
    rgba(13, 110, 253, 0.02)
  );
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
}

.section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-gradient);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.text-primary-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Custom Button */
.btn-primary-custom {
  background: var(--primary-gradient);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-primary-custom:hover {
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
  transform: translateY(-3px);
}

.btn-primary-custom:hover::before {
  left: 100%;
}

/* Business Cards */
.business-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.08);
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.business-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), transparent);
  z-index: -1;
  border-radius: 1.5rem;
  transform: translateZ(-10px);
  opacity: 0;
  transition: all 0.5s ease;
}

.business-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
  opacity: 0;
  transition: all 0.5s ease;
}

.business-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(13, 110, 253, 0.2);
}

.business-card:hover::before {
  opacity: 1;
  transform: translateZ(-5px);
}

.business-card:hover::after {
  opacity: 1;
}

.icon-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  transform: translateZ(20px);
}

.icon-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(13, 110, 253, 0.15),
    transparent 70%
  );
  opacity: 0.3;
  transition: all 0.5s ease;
}

.business-card:hover .icon-box {
  transform: translateZ(30px) scale(1.1);
  background: transparent;
}

.business-card:hover .icon-box::before {
  opacity: 0.6;
}

.icon-box img {
  max-width: 80px;
  max-height: 80px;
  filter: none;
  transition: all 0.5s ease;
  transform: translateZ(25px);
}

.business-card:hover .icon-box img {
  transform: translateZ(35px) scale(1.1) rotate(5deg);
}

.business-card .card-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.business-card .card-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all 0.5s ease;
}

.business-card:hover .card-title {
  color: var(--primary);
  transform: translateZ(10px);
}

.business-card:hover .card-title::after {
  width: 100%;
}

.business-card .card-text {
  color: var(--secondary);
  transition: all 0.3s ease;
}

.business-card:hover .card-text {
  color: var(--dark);
  transform: translateZ(5px);
}

/* Financial Solutions Cards */
.financial-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  background: white;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.financial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--primary-gradient);
  z-index: 1;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.financial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(13, 110, 253, 0.05),
    transparent 70%
  );
  opacity: 0;
  transition: all 0.5s ease;
}

.financial-card:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 30px 60px rgba(13, 110, 253, 0.2);
}

.financial-card:hover::after {
  opacity: 1;
}

.financial-image {
  padding: 2.5rem;
  background: linear-gradient(135deg, #f5faff, white);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  z-index: 1;
}

.financial-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
  opacity: 0;
  transition: all 0.8s ease;
  transform: rotate(0deg);
  z-index: -1;
}

.financial-card:hover .financial-image::before {
  opacity: 1;
  transform: rotate(180deg);
}

.financial-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  filter: blur(60px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.financial-card:hover .financial-image::after {
  opacity: 0.2;
}

.financial-image img {
  max-width: 80%;
  max-height: 140px;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 10px 20px rgba(13, 110, 253, 0.2));
  transform: translateZ(0);
}

.financial-card:hover .financial-image img {
  transform: translateZ(30px) scale(1.1) rotate(5deg);
  filter: drop-shadow(0 15px 35px rgba(13, 110, 253, 0.3));
}

.financial-content {
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: white;
}

.financial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all 0.5s ease;
  z-index: -1;
}

.financial-card:hover .financial-content::before {
  width: 80%;
}

.financial-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.financial-card:hover .financial-content h3 {
  color: var(--primary);
  transform: translateZ(20px);
}

.financial-content p {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.financial-card:hover .financial-content p {
  color: var(--dark);
  transform: translateZ(10px);
}

.details-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1),
    rgba(13, 110, 253, 0.02)
  );
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}

.details-link i {
  transition: all 0.3s ease;
  position: relative;
  left: 0;
}

.details-link:hover {
  color: white;
  background: var(--primary-gradient);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
  transform: translateZ(20px);
}

.details-link:hover i {
  left: 5px;
}

/* Point Cards */
.point-card {
  border-radius: 1.5rem;
  background: white;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08);
  border: none;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.point-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-gradient);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
  z-index: 1;
}

.point-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), transparent);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.point-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 30px 60px rgba(13, 110, 253, 0.15);
}

.point-card:hover::after {
  opacity: 1;
}

.point-card .card-body {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.point-card .card-title {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.point-card .card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary-gradient);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
  transition: all 0.3s ease;
}

.point-card:hover .card-title {
  transform: translateZ(20px);
}

.point-card:hover .card-title::before {
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.7);
}

.point-card .card-text {
  color: var(--secondary);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.point-card:hover .card-text {
  color: var(--dark);
  transform: translateZ(10px);
}

.point-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
  transform: translateZ(0);
}

.point-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.point-card:hover .point-image {
  transform: translateZ(30px) scale(1.05);
}

.point-card:hover .point-image::before {
  opacity: 1;
}

.point-image img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 10px 20px rgba(13, 110, 253, 0.2));
  transition: all 0.5s ease;
}

.point-card:hover .point-image img {
  filter: drop-shadow(0 20px 40px rgba(13, 110, 253, 0.3));
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.05),
    rgba(13, 110, 253, 0.02)
  );
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.1);
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
  top: -250px;
  right: -250px;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
  bottom: -150px;
  left: -150px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.hero-description {
  color: var(--secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.feature-item {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.08);
  transition: all 0.3s ease;
  transform: translateZ(0);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1),
    rgba(13, 110, 253, 0.05)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.3), transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  transform: rotate(0deg);
}

.feature-item:hover .feature-icon {
  background: var(--primary-gradient);
  color: white;
  transform: rotate(5deg);
}

.feature-item:hover .feature-icon::before {
  opacity: 1;
  transform: rotate(180deg);
}

.feature-text h6 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-text h6 {
  color: var(--primary);
}

/* Arrow Button */
.arrow-button {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: pulse 2s infinite;
}

.arrow-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  z-index: -1;
}

.arrow-button::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3),
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.arrow-button:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.4);
  animation: none;
}

.arrow-button:hover::before {
  left: 100%;
}

.arrow-button:hover::after {
  opacity: 1;
}

.arrow-button i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.arrow-button:hover i {
  transform: rotate(-10deg) scale(1.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.3);
  }
}

/* Background decorative elements */
.bg-decoration {
  position: fixed;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.03;
  z-index: -1;
}

.decoration-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  left: -300px;
  animation: floatAnimation 15s ease-in-out infinite alternate;
}

.decoration-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -200px;
  animation: floatAnimation 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(10deg);
  }
}

/* Custom Bootstrap Classes */
.col-lg-1-5 {
  flex: 0 0 auto;
  width: 20%;
}

.section-spacing {
  padding: 5rem 0;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .col-lg-1-5 {
    width: 33.333%;
  }
}

@media (max-width: 992px) {
  .section-spacing {
    padding: 4rem 0;
  }

  .hero-section {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .col-lg-1-5 {
    width: 50%;
  }

  .section-spacing {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .arrow-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .col-lg-1-5 {
    width: 100%;
  }

  .section-spacing {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
  }
}

/* Service Popup Styles */
.service-popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.service-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 2100;
  animation: popupFadeIn 0.3s ease forwards;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.service-popup-header {
  background: linear-gradient(135deg, #1c2e58, #23386a);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.service-popup-back,
.service-popup-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.service-popup-back:hover,
.service-popup-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.service-popup-title {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.service-popup-content {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(90vh - 60px);
  scrollbar-width: thin;
  scrollbar-color: #1c2e58 #f5f5f5;
}

.service-popup-content::-webkit-scrollbar {
  width: 6px;
}

.service-popup-content::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.service-popup-content::-webkit-scrollbar-thumb {
  background-color: #1c2e58;
  border-radius: 6px;
}

.service-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.service-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(13, 110, 253, 0.2));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-popup-subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c2e58;
}

.service-popup-description {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.service-steps {
  margin-bottom: 30px;
}

.service-step {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}

.service-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, #1c2e58, rgba(13, 110, 253, 0.2));
  z-index: 0;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1c2e58, #23386a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-right: 15px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.step-content {
  flex-grow: 1;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.step-content p {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.step-content ul {
  margin: 0;
  padding-left: 20px;
}

.step-content ul li {
  margin-bottom: 6px;
  color: #666;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 0 !important;
  list-style: none;
  margin-top: 10px !important;
}

.payment-options li {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.payment-options li:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.payment-options li i {
  margin-right: 8px;
  color: #1c2e58;
}

.operator-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.operator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.operator-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.operator-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
}

.operator-item span {
  font-size: 12px;
  text-align: center;
  color: #666;
}

.service-note {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 30px;
  display: flex;
  border-left: 4px solid #1c2e58;
}

.note-icon {
  margin-right: 15px;
  font-size: 24px;
  color: #1c2e58;
  display: flex;
  align-items: center;
}

.note-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.note-content ul {
  margin: 0;
  padding-left: 20px;
}

.note-content ul li {
  margin-bottom: 6px;
  color: #666;
}

.service-locate {
  background-color: #f0f7ff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.service-locate h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.service-locate p {
  color: #666;
  margin-bottom: 15px;
}

.service-actions {
  text-align: center;
  margin-top: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #1c2e58, #23386a);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-outline-primary {
  background: transparent;
  color: #1c2e58;
  border: 1px solid #1c2e58;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1c2e58;
  color: white;
  transform: translateY(-2px);
}

.service-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 2050;
  animation: overlayFadeIn 0.3s ease forwards;
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .service-popup {
    width: 95%;
    max-height: 85vh;
  }

  .service-popup-content {
    padding: 15px;
  }

  .service-popup-subtitle {
    font-size: 20px;
  }

  .step-content h4 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .service-popup-title {
    font-size: 18px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .service-step:not(:last-child)::after {
    left: 17px;
  }

  .payment-options {
    gap: 8px;
  }

  .payment-options li {
    padding: 6px 12px;
    font-size: 14px;
  }

  .operator-item {
    width: 70px;
    padding: 8px;
  }

  .operator-item img {
    width: 35px;
    height: 35px;
  }
}
