@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8f9fc;
  color: #2c2c2c;
  text-align: center;
  line-height: 1.7;
  overflow-x: hidden;
}


.search-icon-btn {
  position: fixed;
  top: 120%;
  left: calc(100vw - 160px);
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2.5px solid #1f3b93;
  color: #1f3b93;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* inner circular glow */
.search-icon-btn::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  z-index: -1;
  opacity: 0.12;
}

/* Premium Label - Always Visible */
.search-icon-btn::after {
  content: "Search Services e.g. Aadhaar, PAN etc...";
  position: absolute;
  right: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #000;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #000;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
  text-align: left;
}

/* floating effect */
@keyframes floatSearch {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

.search-icon-btn {
  animation: floatSearch 3s ease-in-out infinite;
}

/* hover */
.search-icon-btn:hover {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  color: #fff;
  box-shadow: 0 12px 35px rgba(31, 59, 147, 0.45);
  animation: none;
}

/* click */
.search-icon-btn:active {
  transform: translateY(-50%) scale(0.95);
}

  /* Search Modal */
  .search-modal {
    position: fixed;
    margin-top: 15%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
  }

  .search-modal.active {
    display: flex;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
  }

  .search-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 20px 60px rgba(31, 59, 147, 0.3);
    animation: slideUp 0.4s ease-out;
    z-index: 1;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(50px) scale(0.9);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .search-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(31, 59, 147, 0.1);
    color: #1f3b93;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-close-btn:hover {
    background: #1f3b93;
    color: white;
    transform: rotate(90deg);
  }

  .search-box {
    display: flex;
    align-items: center;
    background: #f8f9fc;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 5px 15px rgba(31, 59, 147, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    margin-bottom: 20px;
  }

  .search-box:focus-within {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(31, 59, 147, 0.15);
    border-color: rgba(31, 59, 147, 0.2);
  }

  .search-icon {
    color: #1f3b93;
    font-size: 10px;
    margin-right: 15px;
    transition: all 0.3s ease;
  }

  .search-box:focus-within .search-icon {
    transform: scale(1.1);
    color: #4b6cb7;
  }

  .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: transparent;
    padding: 10px 0;
  }

  .search-input::placeholder {
    color: #999;
  }

  .search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #1f3b93, #4b6cb7);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(31, 59, 147, 0.3);
    flex-shrink: 0;
  }

  .search-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(31, 59, 147, 0.5);
  }

  .search-btn:active {
    transform: scale(0.95);
  }

  /* Search Results */
  .search-results {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    display: none;
  }

  .search-results.show {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .search-result-item {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fc;
  }

  .search-result-item:hover {
    background: linear-gradient(135deg, rgba(31, 59, 147, 0.08), rgba(75, 108, 183, 0.05));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(31, 59, 147, 0.1);
  }

  .result-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e9fc, #d4e1ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f3b93;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .search-result-item:hover .result-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #1f3b93, #4b6cb7);
    color: white;
  }

  .result-content {
    flex: 1;
  }

  .result-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f3b93;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 3px;
  }

  .result-desc {
    font-size: 13px;
    color: #666;
    font-family: 'Poppins', sans-serif;
  }

  .no-results {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-family: 'Poppins', sans-serif;
  }

  .no-results i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
  }

  /* Scrollbar */
  .search-results::-webkit-scrollbar {
    width: 6px;
  }

  .search-results::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
  }

  .search-results::-webkit-scrollbar-thumb {
    background: #1f3b93;
    border-radius: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .search-icon-btn {
      width: 55px;
      height: 55px;
      right: 20px;
      font-size: 22px;
    }

    .search-modal-content {
      width: 95%;
      padding: 30px 20px;
    }

    .search-box {
      padding: 6px 6px 6px 20px;
    }

    .search-input {
      font-size: 14px;
    }

    .search-btn {
      width: 45px;
      height: 45px;
      font-size: 16px;
    }

    .search-results {
      max-height: 300px;
    }
  }


/* ========== Enhanced Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 15px rgba(31, 59, 147, 0.12);
  z-index: 1000;
  border-bottom: 3px solid #1f3b93;
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 5px 20px rgba(31, 59, 147, 0.18);
}

.logo img {
  height: 55px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #1f3b93;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #1f3b93, #4b6cb7);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #162c6d;
  transform: translateY(-2px);
}

.btn-login {
  background: linear-gradient(135deg, #4b6cb7, #1f3b93);
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(31, 59, 147, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
  width: 300px;
  height: 300px;
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(31, 59, 147, 0.5);
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: #1f3b93;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    width: 100%;
    flex-direction: column;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    height: auto;
    padding: 15px 0;
  }

  .nav-links li {
    padding: 12px;
    border-bottom: 1px solid rgba(31, 59, 147, 0.1);
  }
}

#userEmail {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  padding: 0 12px;
  color: #1f3b93;
}

.nav-gap {
  height: 65px;
}

/* ========== Premium Hero Banner ========== */
.hero-banner-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 59, 147, 0.85) 0%, rgba(75, 108, 183, 0.65) 50%, rgba(31, 59, 147, 0.85) 100%);
  z-index: 1;
}

.hero-banner-section .hero-image-block {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-banner-section img {
  width: 100%;
  min-height: 500px;
  max-height: 550px;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 10s ease-out;
  filter: brightness(0.9);
}

.hero-banner-section:hover img {
  transform: scale(1.02);
  filter: brightness(1);
}

.overlay-content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 2;
  opacity: 0;
  animation: fadeInHero 1.8s ease-in-out forwards;
}

@keyframes fadeInHero {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline-text {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  animation: slideInText 1.2s ease-out 0.3s both;
  position: relative;
  font-weight: 800;
  letter-spacing: 1px;
}

@keyframes slideInText {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline-text::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  animation: lineGrow 1.2s ease-out 1s both;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes lineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 120px;
  }
}

.subtext-description {
  font-size: 1.2rem;
  max-width: 750px;
  margin-bottom: 25px;
  text-align: center;
  color: #f0f0f0;
  animation: fadeInDelay 1.8s ease-out 0.8s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
  font-weight: 400;
}

@keyframes fadeInDelay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cta-link-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideInButtons 1.2s ease-out 1.2s both;
}

@keyframes slideInButtons {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-link-group a {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  color: #ffffff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(31, 59, 147, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-link-group a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.cta-link-group a:hover::before {
  left: 100%;
}

.cta-link-group a:hover {
  background: linear-gradient(135deg, #162c6d, #1f3b93);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(31, 59, 147, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Animated Background Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatAround 8s infinite ease-in-out;
  filter: blur(1px);
}

.floating-element:nth-child(1) {
  top: 15%;
  left: 8%;
  width: 25px;
  height: 25px;
  animation-delay: 0s;
  animation-duration: 10s;
}

.floating-element:nth-child(2) {
  top: 65%;
  left: 85%;
  width: 18px;
  height: 18px;
  animation-delay: 1.5s;
  animation-duration: 12s;
}

.floating-element:nth-child(3) {
  top: 35%;
  left: 12%;
  width: 30px;
  height: 30px;
  animation-delay: 3s;
  animation-duration: 11s;
}

@keyframes floatAround {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-15px, -50px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translate(30px, -25px) rotate(270deg);
    opacity: 0.5;
  }
}

/* ========== Premium Offer Cards ========== */
.print-offers {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8f9fc, #e8eef9);
  position: relative;
  overflow: hidden;
}

.print-offers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='%234b6cb7' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 35px 35px;
  z-index: 0;
  animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}

.offer-tile {
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  max-width: 320px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  animation: tileSlideIn 0.9s ease-out;
}

@keyframes tileSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.offer-tile:nth-child(2) { animation-delay: 0.15s; }
.offer-tile:nth-child(3) { animation-delay: 0.25s; }
.offer-tile:nth-child(4) { animation-delay: 0.35s; }

.offer-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 59, 147, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.offer-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(to right, #4b6cb7, #1f3b93);
  transition: width 0.5s ease;
}

.offer-tile:hover::before {
  opacity: 1;
}

.offer-tile:hover::after {
  width: 100%;
}

.offer-tile:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(31, 59, 147, 0.2);
  border-color: rgba(31, 59, 147, 0.3);
}

.tile-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1f3b93;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(31, 59, 147, 0.2));
}

.offer-tile:hover .tile-icon {
  transform: scale(1.15) rotate(10deg);
  color: #4b6cb7;
  filter: drop-shadow(0 6px 12px rgba(31, 59, 147, 0.3));
}

.tile-heading {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1f3b93;
  font-weight: 700;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.offer-tile:hover .tile-heading {
  color: #162c6d;
  transform: translateY(-3px);
}

.tile-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.offer-tile:hover .tile-description {
  color: #333;
}

.section-heading {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
  color: #1f3b93;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
  animation: headingBounce 1s ease-out;
}

@keyframes headingBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #4b6cb7, #1f3b93, #4b6cb7);
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(31, 59, 147, 0.3);
}

/* ========== Premium Services Section ========== */
.services {
  padding: 70px 12%;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #e8eef9);
  border-bottom: 6px solid #1f3b93;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.services h2 {
  font-size: 26px;
  margin-bottom: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f3b93, #4b6cb7, #1f3b93);
  background-size: 200% 200%;
  padding: 14px 35px;
  display: inline-block;
  border-radius: 35px;
  box-shadow: 0 8px 20px rgba(31, 59, 147, 0.5);
  font-weight: 800;
  position: relative;
  z-index: 1;
  animation: gradientShift 3s ease infinite, pulseGlow 2.5s infinite ease-in-out;
  letter-spacing: 0.5px;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(31, 59, 147, 0.5);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(31, 59, 147, 0.7);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  justify-items: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.9) translateY(70px);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.service-card.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 45px rgba(31, 59, 147, 0.2);
  border-color: rgba(31, 59, 147, 0.3);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(31, 59, 147, 0.3) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .card-image::before {
  opacity: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.95);
}

.service-card:hover .card-image img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.05);
}

.card-content {
  padding: 25px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #1f1f1f;
  font-weight: 700;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card:hover h3 {
  color: #1f3b93;
  transform: translateX(5px);
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  line-height: 1.7;
}

.service-card:hover p {
  color: #444;
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: #1f3b93;
  background: linear-gradient(135deg, #e2e9fc, #d4e1ff);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(31, 59, 147, 0.15);
}

.service-card:hover .price-tag {
  background: linear-gradient(135deg, #d4e1ff, #c0d5ff);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 5px 15px rgba(31, 59, 147, 0.25);
}

.btn-order {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(31, 59, 147, 0.3);
}

.btn-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-order:hover::before {
  left: 100%;
}

.btn-order:hover {
  background: linear-gradient(135deg, #162c6d, #1f3b93);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 59, 147, 0.5);
}

.highlight-deal {
  font-size: 15px;
  font-weight: 700;
  color: #1f3b93 !important;
  background: linear-gradient(135deg, #e2e9fc, #f0f5ff);
  padding: 8px 14px;
  border-left: 5px solid #4b6cb7;
  margin-bottom: 16px;
  border-radius: 6px;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(31, 59, 147, 0.1);
}

.service-card:hover .highlight-deal {
  background: linear-gradient(135deg, #d4e1ff, #e8eef9);
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(31, 59, 147, 0.2);
}

.gift-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1f1f3f;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: giftBounce 2s infinite;
  z-index: 2;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover .gift-tag {
  animation: giftBounce 1s infinite;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.gift-icon {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.service-card:hover .gift-icon {
  transform: rotate(20deg) scale(1.2);
}

@keyframes giftBounce {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  50% { 
    transform: translateY(-6px) rotate(-3deg); 
  }
}

/* ========== Premium Service Process ========== */
.service-process {
  text-align: center;
  padding: 90px 5%;
  background: linear-gradient(to bottom, #f8f9fc, #e2e9fc);
  position: relative;
  overflow: hidden;
}

.service-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.service-process h2 {
  font-size: 38px;
  margin-bottom: 18px;
  font-weight: 900;
  color: #1f3b93;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: fadeInBounce 1.2s ease-out;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  60% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-process p {
  font-size: 18px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 70px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out 0.4s both;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
  position: relative;
  z-index: 1;
}

.process-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 190px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: relative;
}

.process-box.show {
  opacity: 1;
  transform: translateY(0);
}

.process-box::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(31, 59, 147, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.process-box:hover::before {
  opacity: 1;
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(31, 59, 147, 0.25);
  margin-bottom: 25px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.circle::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.circle:hover::after {
  opacity: 1;
  animation: shimmerEffect 2s linear infinite;
}

@keyframes shimmerEffect {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.circle img {
  width: 50px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.circle:hover img {
  transform: scale(1.2) rotate(5deg);
}

.purple {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  border: 4px solid #ffffff;
  box-shadow: 0 10px 35px rgba(31, 59, 147, 0.4);
}

.white {
  background: #ffffff;
  border: 4px solid #1f3b93;
}

.white-border {
  background: #ffffff;
  border: 4px solid #1f3b93;
}

.circle:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(31, 59, 147, 0.5);
}

.process-box h3 {
  font-size: 18px;
  color: #1f3b93;
  margin-bottom: 10px;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-box:hover h3 {
  color: #162c6d;
  transform: translateY(-3px);
}

.process-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.arrow {
  font-size: 40px;
  font-weight: 900;
  color: #4b6cb7;
  animation: arrowPulse 2.5s infinite ease-in-out;
  position: relative;
  filter: drop-shadow(0 3px 6px rgba(31, 59, 147, 0.2));
}

@keyframes arrowPulse {
  0%, 100% { 
    transform: translateX(0) scale(1); 
    color: #4b6cb7;
  }
  50% { 
    transform: translateX(8px) scale(1.1); 
    color: #1f3b93;
  }
}

.arrow::before {
  content: '→';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  animation: arrowTrail 2.5s infinite ease-in-out;
}

@keyframes arrowTrail {
  0%, 100% { 
    transform: translateX(0) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translateX(15px) scale(0.7);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .headline-text {
    font-size: 2.5rem;
  }
  
  .subtext-description {
    font-size: 1rem;
  }
  
  .cta-link-group {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-link-group a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .arrow {
    font-size: 30px;
    transform: rotate(90deg);
  }
}

/* Scroll Animation Trigger */
@keyframes fadeInUpScroll {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Enhanced Testimonials Section ========== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8f9fc;
  color: #2c2c2c;
  text-align: center;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== Enhanced Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 15px rgba(31, 59, 147, 0.12);
  z-index: 1000;
  border-bottom: 3px solid #1f3b93;
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 5px 20px rgba(31, 59, 147, 0.18);
}

.logo img {
  height: 55px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #1f3b93;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #1f3b93, #4b6cb7);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #162c6d;
  transform: translateY(-2px);
}

.btn-login {
  background: linear-gradient(135deg, #4b6cb7, #1f3b93);
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(31, 59, 147, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
  width: 300px;
  height: 300px;
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(31, 59, 147, 0.5);
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: #1f3b93;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    width: 100%;
    flex-direction: column;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    height: auto;
    padding: 15px 0;
  }

  .nav-links li {
    padding: 12px;
    border-bottom: 1px solid rgba(31, 59, 147, 0.1);
  }
}

#userEmail {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  padding: 0 12px;
  color: #1f3b93;
}

.nav-gap {
  height: 65px;
}

/* ========== Premium Hero Banner ========== */
.hero-banner-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.hero-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 59, 147, 0.85) 0%, rgba(75, 108, 183, 0.65) 50%, rgba(31, 59, 147, 0.85) 100%);
  z-index: 1;
}

.hero-banner-section .hero-image-block {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-banner-section img {
  width: 100%;
  min-height: 500px;
  max-height: 550px;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 10s ease-out;
  filter: brightness(0.9);
}

.hero-banner-section:hover img {
  transform: scale(1.02);
  filter: brightness(1);
}

.overlay-content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 2;
  opacity: 0;
  animation: fadeInHero 1.8s ease-in-out forwards;
}

@keyframes fadeInHero {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline-text {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  animation: slideInText 1.2s ease-out 0.3s both;
  position: relative;
  font-weight: 800;
  letter-spacing: 1px;
}

@keyframes slideInText {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline-text::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  animation: lineGrow 1.2s ease-out 1s both;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes lineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 120px;
  }
}

.subtext-description {
  font-size: 1.2rem;
  max-width: 750px;
  margin-bottom: 25px;
  text-align: center;
  color: #f0f0f0;
  animation: fadeInDelay 1.8s ease-out 0.8s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
  font-weight: 400;
}

@keyframes fadeInDelay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cta-link-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideInButtons 1.2s ease-out 1.2s both;
}

@keyframes slideInButtons {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-link-group a {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  color: #ffffff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(31, 59, 147, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-link-group a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.cta-link-group a:hover::before {
  left: 100%;
}

.cta-link-group a:hover {
  background: linear-gradient(135deg, #162c6d, #1f3b93);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(31, 59, 147, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Animated Background Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: floatAround 8s infinite ease-in-out;
  filter: blur(1px);
}

.floating-element:nth-child(1) {
  top: 15%;
  left: 8%;
  width: 25px;
  height: 25px;
  animation-delay: 0s;
  animation-duration: 10s;
}

.floating-element:nth-child(2) {
  top: 65%;
  left: 85%;
  width: 18px;
  height: 18px;
  animation-delay: 1.5s;
  animation-duration: 12s;
}

.floating-element:nth-child(3) {
  top: 35%;
  left: 12%;
  width: 30px;
  height: 30px;
  animation-delay: 3s;
  animation-duration: 11s;
}

@keyframes floatAround {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-15px, -50px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translate(30px, -25px) rotate(270deg);
    opacity: 0.5;
  }
}

/* ========== Premium Offer Cards ========== */
.print-offers {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8f9fc, #e8eef9);
  position: relative;
  overflow: hidden;
}

.print-offers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='%234b6cb7' fill-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 35px 35px;
  z-index: 0;
  animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}

.offer-tile {
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  max-width: 320px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  animation: tileSlideIn 0.9s ease-out;
}

@keyframes tileSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.offer-tile:nth-child(2) { animation-delay: 0.15s; }
.offer-tile:nth-child(3) { animation-delay: 0.25s; }
.offer-tile:nth-child(4) { animation-delay: 0.35s; }

.offer-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 59, 147, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.offer-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(to right, #4b6cb7, #1f3b93);
  transition: width 0.5s ease;
}

.offer-tile:hover::before {
  opacity: 1;
}

.offer-tile:hover::after {
  width: 100%;
}

.offer-tile:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(31, 59, 147, 0.2);
  border-color: rgba(31, 59, 147, 0.3);
}

.tile-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #1f3b93;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(31, 59, 147, 0.2));
}

.offer-tile:hover .tile-icon {
  transform: scale(1.15) rotate(10deg);
  color: #4b6cb7;
  filter: drop-shadow(0 6px 12px rgba(31, 59, 147, 0.3));
}

.tile-heading {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1f3b93;
  font-weight: 700;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.offer-tile:hover .tile-heading {
  color: #162c6d;
  transform: translateY(-3px);
}

.tile-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.offer-tile:hover .tile-description {
  color: #333;
}

.section-heading {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
  color: #1f3b93;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
  animation: headingBounce 1s ease-out;
}

@keyframes headingBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #4b6cb7, #1f3b93, #4b6cb7);
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(31, 59, 147, 0.3);
}

/* ========== Premium Services Section ========== */
.services {
  padding: 70px 12%;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #e8eef9);
  border-bottom: 6px solid #1f3b93;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.services h2 {
  font-size: 26px;
  margin-bottom: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f3b93, #4b6cb7, #1f3b93);
  background-size: 200% 200%;
  padding: 14px 35px;
  display: inline-block;
  border-radius: 35px;
  box-shadow: 0 8px 20px rgba(31, 59, 147, 0.5);
  font-weight: 800;
  position: relative;
  z-index: 1;
  animation: gradientShift 3s ease infinite, pulseGlow 2.5s infinite ease-in-out;
  letter-spacing: 0.5px;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(31, 59, 147, 0.5);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(31, 59, 147, 0.7);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.9) translateY(70px);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.service-card.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 45px rgba(31, 59, 147, 0.2);
  border-color: rgba(31, 59, 147, 0.3);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(31, 59, 147, 0.3) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .card-image::before {
  opacity: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.95);
}

.service-card:hover .card-image img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.05);
}

.card-content {
  padding: 25px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #1f1f1f;
  font-weight: 700;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card:hover h3 {
  color: #1f3b93;
  transform: translateX(5px);
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  line-height: 1.7;
}

.service-card:hover p {
  color: #444;
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: #1f3b93;
  background: linear-gradient(135deg, #e2e9fc, #d4e1ff);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(31, 59, 147, 0.15);
}

.service-card:hover .price-tag {
  background: linear-gradient(135deg, #d4e1ff, #c0d5ff);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 5px 15px rgba(31, 59, 147, 0.25);
}

.btn-order {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(31, 59, 147, 0.3);
}

.btn-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-order:hover::before {
  left: 100%;
}

.btn-order:hover {
  background: linear-gradient(135deg, #162c6d, #1f3b93);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 59, 147, 0.5);
}

.highlight-deal {
  font-size: 15px;
  font-weight: 700;
  color: #1f3b93 !important;
  background: linear-gradient(135deg, #e2e9fc, #f0f5ff);
  padding: 8px 14px;
  border-left: 5px solid #4b6cb7;
  margin-bottom: 16px;
  border-radius: 6px;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(31, 59, 147, 0.1);
}

.service-card:hover .highlight-deal {
  background: linear-gradient(135deg, #d4e1ff, #e8eef9);
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(31, 59, 147, 0.2);
}

.gift-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1f1f3f;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: giftBounce 2s infinite;
  z-index: 2;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover .gift-tag {
  animation: giftBounce 1s infinite;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.gift-icon {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.service-card:hover .gift-icon {
  transform: rotate(20deg) scale(1.2);
}

@keyframes giftBounce {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  50% { 
    transform: translateY(-6px) rotate(-3deg); 
  }
}

/* ========== Premium Service Process ========== */
.service-process {
  text-align: center;
  padding: 90px 5%;
  background: linear-gradient(to bottom, #f8f9fc, #e2e9fc);
  position: relative;
  overflow: hidden;
}

.service-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.service-process h2 {
  font-size: 38px;
  margin-bottom: 18px;
  font-weight: 900;
  color: #1f3b93;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  animation: fadeInBounce 1.2s ease-out;
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  60% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-process p {
  font-size: 18px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 70px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-out 0.4s both;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
  position: relative;
  z-index: 1;
}

.process-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 190px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: relative;
}

.process-box.show {
  opacity: 1;
  transform: translateY(0);
}

.process-box::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(31, 59, 147, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.process-box:hover::before {
  opacity: 1;
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(31, 59, 147, 0.25);
  margin-bottom: 25px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.circle::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(30deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.circle:hover::after {
  opacity: 1;
  animation: shimmerEffect 2s linear infinite;
}

@keyframes shimmerEffect {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.circle img {
  width: 50px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.circle:hover img {
  transform: scale(1.2) rotate(5deg);
}

.purple {
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  border: 4px solid #ffffff;
  box-shadow: 0 10px 35px rgba(31, 59, 147, 0.4);
}

.white {
  background: #ffffff;
  border: 4px solid #1f3b93;
}

.white-border {
  background: #ffffff;
  border: 4px solid #1f3b93;
}

.circle:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(31, 59, 147, 0.5);
}

.process-box h3 {
  font-size: 18px;
  color: #1f3b93;
  margin-bottom: 10px;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-box:hover h3 {
  color: #162c6d;
  transform: translateY(-3px);
}

.process-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.arrow {
  font-size: 40px;
  font-weight: 900;
  color: #4b6cb7;
  animation: arrowPulse 2.5s infinite ease-in-out;
  position: relative;
  filter: drop-shadow(0 3px 6px rgba(31, 59, 147, 0.2));
}

@keyframes arrowPulse {
  0%, 100% { 
    transform: translateX(0) scale(1); 
    color: #4b6cb7;
  }
  50% { 
    transform: translateX(8px) scale(1.1); 
    color: #1f3b93;
  }
}

.arrow::before {
  content: '→';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  animation: arrowTrail 2.5s infinite ease-in-out;
}

@keyframes arrowTrail {
  0%, 100% { 
    transform: translateX(0) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translateX(15px) scale(0.7);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .headline-text {
    font-size: 2.5rem;
  }
  
  .subtext-description {
    font-size: 1rem;
  }
  
  .cta-link-group {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-link-group a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .arrow {
    font-size: 30px;
    transform: rotate(90deg);
  }
}

/* Scroll Animation Trigger */
@keyframes fadeInUpScroll {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Premium Testimonials Header ========== */
.testimonials-header {
  padding: 90px 30px;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f8f9fc 0%, #e2e9fc 100%);
  border-bottom: 4px solid #1f3b93;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(31, 59, 147, 0.12);
  position: relative;
  overflow: hidden;
}

.testimonials-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  animation: bgSlide 25s linear infinite;
}

@keyframes bgSlide {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.smiley-icon {
  position: relative;
  z-index: 1;
  animation: floatBounce 5s infinite ease-in-out;
}

@keyframes floatBounce {
  0%, 100% { 
    transform: translateY(0) scale(1); 
  }
  50% { 
    transform: translateY(-15px) scale(1.05); 
  }
}

.smiley-icon img {
  width: 130px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(31, 59, 147, 0.25));
  transition: transform 0.4s ease;
}

.smiley-icon:hover img {
  transform: rotate(10deg) scale(1.1);
}

.testimonial-text {
  flex: 1;
  min-width: 320px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.testimonial-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #2c2c2c;
  margin: 0 0 18px 0;
  line-height: 1.2;
  animation: slideInFromLeft 1.2s ease-out;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-text .highlight {
  color: #1f3b93;
  display: block;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.testimonial-text .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1f3b93, #4b6cb7, #1f3b93);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.testimonial-text p {
  font-size: 1.35rem;
  color: #555;
  margin-top: 25px;
  line-height: 1.8;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

.testimonials-section {
  width: 100%;
  max-width: 1300px;
  margin: 70px auto;
  padding: 0 30px;
}

.testimonial-form {
  width: 100%;
  max-width: 1300px;
  margin: 90px auto;
  padding: 50px 30px;
  border-top: 4px solid #d0d8f0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fc);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(31, 59, 147, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* ========== Premium FAQs Section ========== */
.faqs {
  padding: 70px 12%;
  background: linear-gradient(to bottom, #e8eef9, #ffffff);
  text-align: center;
  border-top: 5px solid #1f3b93;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  position: relative;
  overflow: hidden;
}

.faqs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.faqs h2 {
  font-size: 36px;
  color: #1f3b93;
  margin-bottom: 40px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  animation: fadeInDown 1s ease-out;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(31, 59, 147, 0.1);
  padding: 22px 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 59, 147, 0.05), transparent);
  transition: width 0.4s ease;
  z-index: -1;
}

.faq-item:hover::before {
  width: 100%;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(31, 59, 147, 0.15);
  border-left: 5px solid #4b6cb7;
  transform: translateX(5px);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: #1f3b93;
}

.faq-answer {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
  display: none;
  line-height: 1.8;
  padding-left: 10px;
  border-left: 3px solid #e2e9fc;
  animation: fadeInAnswer 0.4s ease-out;
}

@keyframes fadeInAnswer {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.arrow {
  font-size: 24px;
  color: #1f3b93;
  transition: all 0.4s ease;
  font-weight: 700;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
  color: #4b6cb7;
}

/* ========== Premium Contact Section ========== */
#reach {
  background: linear-gradient(135deg, #f4f6fb 0%, #e2e9fc 100%);
  padding: 90px 30px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#reach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

#reach h2 {
  font-size: 42px;
  color: #1f3b93;
  font-weight: 900;
  margin-bottom: 60px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  animation: fadeInDown 1.2s ease-out;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  position: relative;
  z-index: 1;
}

.contact-box {
  background: linear-gradient(145deg, #ffffff, #f8f9fc);
  border-radius: 18px;
  padding: 35px 30px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(31, 59, 147, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: contactSlideUp 1s ease-out forwards;
  border: 2px solid transparent;
}

.contact-box:nth-child(1) { animation-delay: 0.15s; }
.contact-box:nth-child(2) { animation-delay: 0.3s; }
.contact-box:nth-child(3) { animation-delay: 0.45s; }

@keyframes contactSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #1f3b93, #4b6cb7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.contact-box:hover::before {
  transform: scaleX(1);
}

.contact-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 59, 147, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.contact-box:hover::after {
  opacity: 1;
}

.contact-box:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 18px 45px rgba(31, 59, 147, 0.25);
  border-color: rgba(31, 59, 147, 0.2);
}

.contact-box img {
  width: 50px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 4px 10px rgba(31, 59, 147, 0.2));
}

.contact-box:hover img {
  transform: scale(1.15) rotate(10deg);
}

.contact-box h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #1f3b93;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-box:hover h3 {
  color: #162c6d;
  transform: translateY(-3px);
}

.contact-box p {
  color: #444;
  font-size: 17px;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-box:hover p {
  color: #333;
}

/* ========== Premium Footer ========== */
footer {
  position: relative;
  background: linear-gradient(135deg, #dce5f8 0%, #e8eef9 100%);
  color: #2c2c2c;
  padding: 90px 12% 50px;
  overflow: hidden;
  border-top: 6px solid #1f3b93;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f3b93' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.footer-intro {
  max-width: 850px;
  text-align: left;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-intro h2 {
  font-size: 36px;
  color: #1f3b93;
  margin-bottom: 18px;
  font-weight: 900;
  animation: slideInFromLeft 1.2s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.underline {
  width: 500px;
  max-width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1f3b93, #4b6cb7, #1f3b93);
  background-size: 200% 100%;
  margin-bottom: 25px;
  border-radius: 2px;
  animation: expandLineFooter 1.8s ease-out, gradientMove 3s ease infinite;
}

@keyframes expandLineFooter {
  0% { width: 0; }
  100% { width: 500px; }
}

.footer-intro p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/circles-light.png');
  opacity: 0.1;
  animation: bgDrift 20s infinite alternate;
  z-index: 0;
}

@keyframes bgDrift {
  0% { background-position: 0 0; }
  100% { background-position: 120px 120px; }
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.footer-section {
  flex: 1;
  min-width: 280px;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.15s; }
.footer-section:nth-child(2) { animation-delay: 0.3s; }
.footer-section:nth-child(3) { animation-delay: 0.45s; }

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 800;
  color: #1f3b93;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #1f3b93, #4b6cb7);
  border-radius: 2px;
  animation: lineExpand 1s ease-out;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 14px 0;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.4s ease;
}

.footer-section ul li::before {
  content: '→';
  position: absolute;
  left: -25px;
  opacity: 0;
  color: #1f3b93;
  font-weight: 700;
  transition: all 0.4s ease;
}

.footer-section ul li:hover {
  padding-left: 25px;
}

.footer-section ul li:hover::before {
  opacity: 1;
  left: 0;
}

.footer-section ul li a {
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1f3b93;
  transition: width 0.4s ease;
}

.footer-section ul li a:hover {
  color: #1f3b93;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section p a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-section p a:hover {
  color: #1f3b93;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(31, 59, 147, 0.12);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f3b93, #4b6cb7);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover {
  transform: translateY(-8px) rotate(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(31, 59, 147, 0.4);
}

.social-icons img {
  width: 26px;
  z-index: 1;
  transition: all 0.4s ease;
}

.social-icons a:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.15);
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 25px;
  border-top: 2px solid rgba(31, 59, 147, 0.2);
  text-align: center;
  font-size: 16px;
  color: #444;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 10px 0;
  font-weight: 500;
}

.policy-link {
  color: #1f3b93 !important;
  text-decoration: none !important;
  font-weight: 700;
  position: relative !important;
  z-index: 9999 !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.policy-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1f3b93;
  transition: width 0.4s ease;
}

.policy-link:hover {
  transform: translateY(-3px);
}

.policy-link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header {
    text-align: center;
    padding: 60px 20px;
  }
  
  .testimonial-text {
    text-align: center;
  }
  
  .testimonial-text h2 {
    font-size: 2.4rem;
  }
  
  .smiley-icon img {
    width: 100px;
  }
  
  .faqs {
    padding: 60px 5%;
  }
  
  .faqs h2 {
    font-size: 28px;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .faq-answer {
    font-size: 14px;
  }
  
  #reach h2 {
    font-size: 32px;
  }
  
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-box {
    width: 100%;
    max-width: 350px;
  }
  
  footer {
    padding: 70px 5% 40px;
  }
  
  .footer-intro h2 {
    font-size: 28px;
  }
  
  .underline {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 35px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Animation Keyframes */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}