@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;
}

.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;
  align-items: center;
  gap: 20px;
  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: 55px;
  height: 55px;
  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;
}
