@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "GeorgiaCustom";
  src: url("/fonts/Georgia.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

body {
  font-family: "OpenSans", sans-serif !important;
}

.font-opensans {
  font-family: "OpenSans", sans-serif !important;
}

.font-georgia {
  /* font-family: "GeorgiaCustom", serif !important; */
  font-family: Georgia, serif !important;
}

.color-primary {
  color: #18354f !important;
}

.text-theme {
  color: #18354f !important;
}

.color-secondary {
  color: #b1810b !important;
}

.brand-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-radius: 8px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  font-size: 20px;
  color: white;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1px 40px !important;
  background-color: #1f3f5b !important;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: rgba(24, 53, 79, 0.75);

  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 40px !important;
}

.brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-text {
  color: white;
  font-size: 18px;
}

.nav-center {
  position: static;
  display: flex;
  gap: 40px;
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  line-height: 85px;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #12304b;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.get-started-btn {
  background-color: #b1810b !important;
  color: #12304b;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.mega-dropdown {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f3f4f6;
  padding: 28px 0;
  display: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

.mega-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mega-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #12304b;
}

.mega-column a {
  display: block;
  margin-bottom: 7px;
  text-decoration: none;
  color: #4a5568;
  font-size: 15px;
  transition: all 0.2s ease;
}

.mega-column a:hover {
  color: #b1810b;
  transform: translateX(4px);
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

.mega-footer {
  width: auto;
  margin: 20px auto 0;
  padding: 0 20px;
}

.mega-footer hr {
  border: none;
  border-top: 1px solid black;
  margin-bottom: 30px;
}

.mega-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.mega-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.browse-wrapper {
  display: flex;
  justify-content: flex-start;
}

.browse-btn {
  background-color: #b1810b;
  color: #12304b;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.browse-btn:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.tab-section {
  background: #173a56;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.tab-wrapper {
  background: rgba(255, 255, 255, 0.08);
  padding: 5px;
  border-radius: 40px;
  display: inline-flex;
  gap: 6px;
}

.tab-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 30px;
  background: transparent;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #b1810b;
  color: #12304b;
}

.tab-btn:hover:not(.active) {
  color: white;
}

.hero-section {
  background: #1f3f5b;
  padding: 60px 0 20px;
}

.tab-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 40px;
  width: fit-content;
  margin: 0 auto 60px;
}

.tab-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 30px;
  background: transparent;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #b1810b;
  color: #12304b;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-title {
  font-size: 59px;
  font-weight: 800;
  color: #e5e7eb;
  line-height: 1.1;
}

.hero-title span {
  color: #b1810b;
}

.hero-desc {
  margin-top: 25px;
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  width: 100%;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: #b1810b;
  color: #12304b;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.secondary-btn {
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid #b1810b;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
}

.video-box {
  height: 320px;
  border-radius: 20px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.hero-highlights {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #cbd5e1;
  font-weight: 500;
}

.tick-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-trust {
  margin-top: 35px;
  text-align: left;
  font-size: 16px;
  color: #cbd5e1;
  font-weight: 500;
}

.trust-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.trust-card {
  background: #0d2846;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: #2f3b3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.trust-card h5 {
  color: #e5e7eb;
  font-size: 15px;
  margin: 0;
}

.video-box {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 70px;
  height: 70px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ff4d4d, #ff0000);
  color: white;
  font-size: 28px;
  font-weight: bold;

  cursor: pointer;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.odr-section {
  background: #f3f4f6;
}

.odr-title {
  font-size: 48px;
  font-weight: 700;
  color: #12304b;
  font-family: Georgia, serif;
}

.odr-subtitle {
  color: #b1810b;
  font-size: 20px;
  margin-bottom: 30px;
}

.pricing-box {
  background: #e8e2d8;
  border-left: 5px solid #b1810b;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rupee {
  font-size: 40px;
  color: #b1810b;
}

.pricing-header h4 {
  margin: 0;
  font-weight: 700;
}

.pricing-header p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.pricing-points {
  margin-top: 15px;
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.odr-desc {
  color: #334155;
  line-height: 1.8;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #b1810b;
  border-radius: 14px;
  padding: 20px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #b1810b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.feature-card h5 {
  margin: 0;
  font-weight: 600;
  color: #12304b;
}

.feature-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #64748b;
}

.solutions-section {
  background: repeating-linear-gradient(
    45deg,
    #f5f5f5,
    #f5f5f5 10px,
    #eeeeee 10px,
    #eeeeee 20px
  );
}

.solutions-title {
  font-size: 48px;
  font-weight: 700;
  font-family: Georgia, serif;
  color: #12304b;
}

.solutions-desc {
  max-width: 900px;
  margin: 20px auto 0;
  color: #334155;
  line-height: 1.8;
}

.solution-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-6px);
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: #12304b;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #b1810b;
}

.solution-card h5 {
  font-weight: 600;
  color: #12304b;
  margin-bottom: 10px;
}

.solution-card h6 {
  color: #b1810b;
  font-weight: 700;
  margin-bottom: 8px;
}

.solution-card p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.browse-services {
  margin-top: 70px;
}

.browse-btn {
  display: inline-block;
  background: #1f3f5b;
  color: #ffffff;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 20px;
  border: 6px solid #b1810b;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.browse-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.browse-subtext {
  margin-top: 20px;
  font-size: 20px;
  color: #334155;
}

.subscription-section {
  background: #f3f4f6;
}

.sub-title {
  font-size: 48px;
  font-family: Georgia, serif;
  font-weight: 700;
  color: #12304b;
}

.sub-subtitle {
  color: #b1810b;
  font-size: 20px;
  margin-bottom: 30px;
}

.sub-pricing-box {
  background: #f9f6f0;
  border: 2px solid #b1810b;
  border-radius: 16px;
  padding: 30px;
}

.plan-name {
  color: #334155;
  margin-bottom: 5px;
}

.sub-pricing-box h4 {
  color: #b1810b;
  font-weight: 700;
}

.sub-description {
  color: #334155;
  line-height: 1.8;
}

.shield-wrapper {
  width: 260px;
  height: 300px;
  margin: 0 auto;
  background: #e9e2cf;
  clip-path: polygon(50% 0%, 85% 15%, 85% 60%, 50% 100%, 15% 60%, 15% 15%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-inner h2 {
  font-size: 48px;
  color: #12304b;
  font-weight: 700;
}

.shield-inner p {
  margin: 0;
  color: #334155;
}

.plans-section {
  background: #f8f9fb;
}

.plan-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  height: 100%;
  position: relative;
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-title {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #1d3557;
  font-family: "OpenSans", sans-serif !important;
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "OpenSans", sans-serif !important;
}

.plan-price small {
  font-size: 14px;
  color: #777;
}

.plan-price span {
  font-size: 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.plan-features img {
  width: 16px;
  margin-right: 10px;
}

.plan-btn {
  display: block;
  text-align: center;
  background: #1d3557;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #0b2545;
  color: #fff;
}

.best-value {
  border: 2px solid #c69214;
}

.best-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #c69214;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.highlight-btn {
  background: #c69214;
}

.highlight-btn:hover {
  background: #a6780f;
}

.view-all-btn {
  background: #c69214;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.view-all-btn:hover {
  background: #a6780f;
  color: #fff;
}

.plan-card {
  position: relative;
  text-align: left;
}

.plan-icon {
  margin-bottom: 15px;
}

.plan-icon img {
  width: 28px;
}

.plan-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d3557;
}

.plan-icon i {
  font-size: 28px;
  color: #b1810b;
  margin-bottom: 10px;
}

.join-section {
  background: linear-gradient(135deg, #1c3c52, #102d3f);
  color: #ffffff;
}

.join-title {
  font-size: 42px;
  font-weight: 700;
}

.join-title span {
  color: #d39c1a;
}

.join-subtitle {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.join-description {
  max-width: 900px;
  margin: 0 auto 15px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.feature-box p {
  margin-top: 15px;
  font-size: 14px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.blue {
  background: #3b82f6;
}
.purple {
  background: #8b5cf6;
}
.green {
  background: #22c55e;
}
.orange {
  background: #f97316;
}
.red {
  background: #ef4444;
}
.pink {
  background: #ec4899;
}

.brown {
  background: #d39c1a;
}

.apply-btn {
  background: #d39c1a;
  color: #000;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.apply-btn:hover {
  background: #b1810b;
  color: #000;
}

.join-footer {
  font-size: 13px;
  opacity: 0.7;
}

.join-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
}

.join-title span {
  color: #d39c1a;
}

.join-subtitle {
  font-size: 20px;
  font-weight: 500;
}

.join-description {
  font-size: 14px;
  line-height: 1.9;
}

.main-footer {
  background: #18354f;
  color: #d7e2ea;
  font-size: 14px;
}

.footer-logo {
  color: #d39c1a;
  font-size: 20px;
  font-weight: 700;
}

.footer-small {
  font-size: 13px;
  opacity: 0.8;
}

.footer-text {
  margin: 15px 0;
  line-height: 1.8;
}

.bci-badge {
  background: #d39c1a;
  color: #000;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  font-size: 13px;
}

.footer-heading {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #c7d4dd;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d39c1a;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #d39c1a;
}

.newsletter-box {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-box button {
  background: #d39c1a;
  border: none;
  padding: 8px 15px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
}

.newsletter-box button:hover {
  background: #b1810b;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #d39c1a;
  color: #000;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-bottom {
  font-size: 13px;
}

.footer-badges span {
  margin-left: 15px;
}

.footer-badges i {
  color: #d39c1a;
  margin-right: 5px;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.underline-none {
  text-decoration: none !important;
  color: inherit !important;
}

.orange-blur {
  background: rgba(177, 129, 11, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 1px solid #d39c1a !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 1px solid #d39c1a !important;
  box-shadow: 0 6px 20px rgba(211, 156, 26, 0.15);
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

.accordion-button:not(.collapsed) {
  background-color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #d39c1a !important;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(69%) sepia(54%) saturate(505%)
    hue-rotate(8deg) brightness(92%) contrast(89%);
}

.selection-card:hover {
  border: 1px solid #b1810b !important;
  box-shadow: 0 8px 20px rgba(177, 129, 11, 0.1);
}

/* Step Indicator */
.step-item {
  position: relative;
  flex: 1;
}

.step-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 14px;
  color: #777;
}

.step-item.active .step-circle {
  background: #b1810b;
  color: #fff;
}

.step-item small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

.step-line {
  height: 2px;
  background: #e5e5e5;
  flex: 1;
  margin: 0 5px;
}

/* Selection Cards */
.selection-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.selection-card:hover {
  border: 1px solid #b1810b !important;
  box-shadow: 0 8px 20px rgba(177, 129, 11, 0.1);
}

.selection-card.selected {
  border: 2px solid #b1810b !important;
  box-shadow: 0 10px 25px rgba(177, 129, 11, 0.2);
  position: relative;
}

.selection-card.selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 15px;
  color: #b1810b;
  font-size: 16px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #f3f3f3;
}

.selection-card {
  cursor: pointer;
  transition: 0.3s ease;
}

.selection-card.active {
  border: 2px solid #b1810b !important;
  background: #fff8e6;
}

.selection-card:hover {
  transform: translateY(-3px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
}

.selection-card.active .icon-circle {
  background: #b1810b;
  color: #fff;
}

.selection-card {
  cursor: pointer;
  transition: 0.3s ease;
}

.selection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.selection-card.active {
  border: 2px solid #b1810b !important;
  background: #fff8e6;
}

.icon-circle {
  width: 65px;
  height: 65px;
  background: #f8f9fa;
}

.selection-card.active .icon-circle {
  background: #b1810b;
  color: #fff;
}

.category-card {
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: -14px;
  overflow: hidden;
  background: #fff;
  transition: 0.25s ease;
}

.category-header {
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
  font-size: 15px;
}

.category-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.category-body.open {
  max-height: 400px;
  padding: 12px 15px;
}

.dropdown-option {
  padding: 8px 10px;
  border-radius: 6px;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s ease;
  text-align: center;
}

.dropdown-option:hover {
  background: #f1e3c4;
}

.dropdown-option.active {
  background: #b1810b;
  color: #fff;
}

.toggle-icon {
  transition: 0.25s ease;
}

.toggle-icon.rotate {
  transform: rotate(180deg);
}

.form-control:focus {
  border-color: #b1810b;
  box-shadow: 0 0 0 0.15rem rgba(177, 129, 11, 0.15);
}

.upload-box {
  border: 2px dashed #d6b15c;
  background: #fcfaf3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.upload-box:hover {
  background: #f5edd8;
  transform: translateY(-2px);
}

.resolution-option {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.resolution-option:hover {
  transform: translateY(-2px);
  border-color: #b1810b;
}

.resolution-option.active {
  border: 2px solid #b1810b;
  background: #fffaf0;
}

.radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #bbb;
  margin-top: 4px;
}

.resolution-option.active .radio-circle {
  border: 6px solid #b1810b;
}

.step-item .step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6c27a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-item small {
  font-size: 13px;
  color: #999;
  transition: 0.3s;
}

.step-item.active .step-circle {
  background: #b1810b;
  transform: scale(1.1);
}

.step-item.active small {
  color: #b1810b;
  font-weight: 600;
}

.step-item.completed .step-circle {
  background: #28a745;
}

.blue-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease;
}

.blue-glass-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tab-custom {
  color: #1a3a52 !important;
  font-weight: 500;
}

.tab-custom i {
  color: #1a3a52;
  font-size: 16px;
}

.nav-pills .nav-link.active {
  background-color: #b8860b !important;
  color: #fff !important;
}

.nav-pills .nav-link.active i {
  color: #fff;
}

.cost-tab {
  color: #1a3a52 !important;
  border-radius: 12px;
  padding: 18px 10px;
  transition: 0.3s ease;
}

.cost-tab small {
  display: block;
  font-size: 13px;
  opacity: 0.7;
}

.nav-pills .nav-link.active {
  background-color: #1a3a52;
  color: #1a3a52 !important;
}

.nav-pills .nav-link.active small {
  opacity: 0.9;
}

.custom-card-left {
  background-color: #f8eaea;
  border-radius: 16px;
}

.custom-card-right {
  background-color: #eef6f2;
  border-radius: 16px;
}

.how-you-save {
  background-color: #f4ede2;
  border: 2px solid #d8b26e;
}

.save-highlight {
  color: #c28a18;
  font-weight: 700;
  font-size: 48px;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.best-value {
  border: 2px solid #b8860b !important;
}

.badge-best {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #b8860b !important;
  color: black;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.icon-box {
  /* width: 60px;
  height: 60px; */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  color: #fff;
}

.icon-blue {
  background: #4e73df;
}
.icon-purple {
  background: #6f42c1;
}
.icon-red {
  background: #e74a3b;
}
.icon-green {
  background: #1cc88a;
}

.plan-subtitle {
  font-size: 13px;
  color: #b58a00;
}

.tick {
  width: 15px;
  margin-right: 8px;
}

.feature-list {
  display: inline-block;
  text-align: left;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.feature-list .tick {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: #c89b2d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.highlight-card {
  border: 2px solid #c89b2d;
}

.modern-modal {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}

.modern-header {
  background: linear-gradient(135deg, #0f2b46, #163c63);
  color: #fff;
  padding: 20px 30px;
}

.modern-body {
  max-height: 65vh;
  overflow-y: auto;
  padding: 30px;
  background: #f8fafc;
}

/* Form Cards */
.form-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Section Titles */
.section-title {
  font-weight: 600;
  margin-bottom: 20px;
}

/* Floating Inputs */
.floating-group {
  position: relative;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.floating-group label {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #fff;
  padding: 0 5px;
  font-size: 14px;
  color: #888;
  transition: 0.2s ease;
}

.floating-group input:focus + label,
.floating-group textarea:focus + label,
.floating-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #0f2b46;
}

/* Terms */
.terms-list {
  padding-left: 18px;
  font-size: 14px;
  color: #555;
}

/* Modern Checkboxes */
.modern-check {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.modern-check input {
  margin-right: 10px;
  transform: scale(1.2);
}

/* Footer */
.modern-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 15px;
  border-top: 1px solid #eee;
  text-align: center;
}

.submit-btn {
  background: #18354f;
  color: #fff;
  border: none;
  padding: 12px 50px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 155, 45, 0.4);
}

.select-group {
  display: flex;
  flex-direction: column;
}

.select-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.modern-select {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.modern-select:focus {
  border-color: #000;
  box-shadow: none;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.blog-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.07);
}

.blog-category {
  position: absolute;
  text-transform: uppercase;
  top: 15px;
  left: 15px;
  background: #b1810b;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.blog-content {
  padding: 22px;
}

.blog-meta {
  font-size: 13px;
  color: white;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.blog-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  font-size: 14px;
  color: #b1810b;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-hero {
  position: relative;
  padding: 100px 0 80px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 15px;
}

.blog-category {
  background: #0d6efd;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
}

.blog-meta {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  opacity: 0.9;
}

.blog-body {
  margin-top: -70px;
}

.article-card {
  background: #fff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-lead {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  margin-bottom: 25px;
}

.blog-content {
  line-height: 1.9;
  font-size: 17px;
}

.blog-share {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: #555;
}

.sidebar-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-blog {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  text-decoration: none;
  color: #222;
}

.sidebar-blog img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.more-blogs {
  padding: 90px 0;
  background: #f8f9fb;
}

.more-blog-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.more-blog-card:hover {
  transform: translateY(-8px);
}

.more-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.more-blog-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 30px;
}

.service-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.shadow-sm {
  transition: all 0.3s ease;
}

.shadow-sm:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* MOBILE HEADER */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #1f3f5b !important;
  /* border-bottom: 1px solid #eee; */
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.mobile-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: white !important;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-cta {
  background: #b1810b;
  color: white !important;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 10px 18px;
    font-size: 14px;
    text-align: center;
  }

  .blog-content {
    padding: 12px;
  }
}

.tab-content2 {
  display: none;
}

.tab-content2.active {
  display: block;
}

.blog-content {
  padding: 22px;
}


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup {
  background: #ffffff;
  padding: 28px;
  width: 90%;
  max-width: 360px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.35s ease;
  position: relative;
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}

.offer-badge {
  font-size: 12px;
  color: #555;
  background: #f4f4f4;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.price {
  margin: 16px 0;
}

.old {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.new {
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

.primary {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: 0.25s;
}

.primary:hover {
  background: #000;
}

.secondary {
  background: none;
  border: none;
  margin-top: 10px;
  color: #777;
  cursor: pointer;
}

.popup h2 {
  color: #18354f;
  font-weight: 600;
}

.offer-badge {
  font-size: 12px;
  color: #18354f;
  background: rgba(24, 53, 79, 0.08);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.new {
  font-size: 26px;
  font-weight: 600;
  color: #18354f;
}

.primary {
  background: #18354f;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 500;
}

.primary:hover {
  background: #122838;
  transform: translateY(-1px);
}

.secondary {
  background: none;
  border: none;
  margin-top: 10px;
  color: #666;
  cursor: pointer;
}

.primary:active {
  transform: scale(0.98);
}

