/********** Template CSS **********/
:root {
    --primary: #1F3552;
    --secondary: #B8944A;
    --light: #F2F8FE;
    --dark: #111111;
    --silver: #C7CCD1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}

.playfair-font{
    font-family: "Playfair", serif !important;
}
.font-inter{
   font-family: "Inter", sans-serif !important;
}

h1{
    font-family: "Playfair", serif !important;
}
.hero-main-section{
    max-width: 700px;
    margin: auto;
    padding: 50px 0 0;
}
.hero-btn-group{
    margin-top: 30px;
        display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
}
.hero-short-text{
margin-top: 30px;
margin-bottom: 0px;
}
.hero-short-text span{
  color: #fff;
  font-family: "Inter", sans-serif !important;
  font-weight: 400 !important;
      padding-left: 5px;
    display: inline-block;
}
.hero-short-text i{
    margin: 0 10px;
    display: inline-block;
    color: var(--secondary);

}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    padding: 16px 24px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 0px 0;
    color: #fff;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary);
}


/*** Header ***/
.hero-header{
        background-image: linear-gradient(rgb(32 34 35 / 78%), rgb(0 0 0 / 65%)), url(../img/hero-section.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
      height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}
.hero-header h1, .hero-header p{
      color: #fff;
}
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}
.hero-p-txt{
    font-size: 20px;
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent hwb(40.36deg 29.02% 27.84% / 47%) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}

.service-item  i{
    color: var(--secondary);
    font-size: 40px;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--secondary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 15px 0 15px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}
.footer .footer-logo{
    width: 100px;
}

.trust-strip-section{
background-color: #eef1f4;
}
.trust-strip-section i{
font-size: 36px;
    margin-bottom: 13px;
    color: var(--secondary);
}
.trust-strip-section h4{
    font-size: 20px;
    color: var(--primary);
    font-weight: 300 !important;
}
.who-it-for-section{

}
.who-it-for-section i{
font-size: 35px;
color: var(--secondary);
}
.who-it-for-section h5{
font-size: 24px;
color: var(--primary);
margin-bottom: 2px !important;
}

.who-it-for-section span{
font-size: 16px;
color: var(--dark);
}
.what-you-can-section i{
font-size: 35px;
color: var(--secondary);
}
.what-you-can-section h5{
font-size: 24px;
color: var(--primary);
margin-bottom: 10px !important;
}

.what-you-can-section span{
font-size: 16px;
color: var(--dark);
}
.Emotional-section h2{
color: var(--secondary);
}
.Emotional-section p{
color: var(--primary) !important;
}
.security-privacy-main{
    background-color: #fff;
    color: var(--dark);
    padding: 0px 0px !important;
}
.security-privacy-main h2{
    color: var(--dark) !important;
}
.security-section-img{
height: 65vh;
object-fit: cover;
}
.security-privacy-section-1{
margin: 0px !important;
}
.security-privacy-section-1 i{
font-size: 100px;
color: var(--secondary);
}
.security-privacy-section{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}
.security-privacy-section i{
 font-size: 20px;
    color: var(--silver) !important;
}
.security-privacy-section span{
   font-size: 18px;
color: var(--dark); 
}
.security-privacy-main .col-lg-5{
    padding: 30px;
}

/* Step indicator */
.step-line {
  position: relative;
}

.step-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #E5E7EB;
  z-index: 1;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F7F9FB;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #64748B;
  z-index: 2;
}

.step-circle.active {
  background: #1F3552;
  color: #fff;
  border-color: #1F3552;
}

/* Step cards */
.step-card {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.step-card h4 {
  color: #1F3552;
  margin-bottom: 10px;
}

.step-card p {
  color: #6B7280;
  margin-bottom: 0;
}

/* Icon placeholder (wireframe style) */
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--silver);
  margin-bottom: 20px;
  display: flex;
    justify-content: center;
    align-items: center;
}
.step-icon i{
    color: var(--primary);
        font-size: 23px;
}

/* Transparent navbar */
.transparent-navbar {
  background: transparent;
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: #1F3552;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Desktop nav links */
.navbar .nav-link {
  color: #ffffff;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #B8944A;
}

/* ---------- Mobile Fullscreen Menu ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #1F3552;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  padding: 40px 20px;
  text-align: left;
}

.mobile-nav-links li {
  margin-bottom: 16px;
}

.mobile-nav-links a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: #B8944A;
}

.mobile-nav-links a.active{
  color: var(--secondary);
}

.mobile-nav-links .btn-primary-nav{
margin-top: 30px;
}
.footer span{
  font-size: 14px;
}


/* Hide mobile menu on desktop */
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

/* Mobile dropdown */
.mobile-dropdown {
  text-align: left;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  padding: 0px 0;
  text-align: left;
}

.mobile-dropdown-toggle .arrow {
  margin-left: 6px;
  font-size: 14px;
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 10px 0 0;
  display: none;
}

.mobile-dropdown-menu li {
  margin-bottom: 15px;
}

.mobile-dropdown-menu a {
  color: #E5E7EB;
  font-size: 16px;
  text-decoration: none;
}

.mobile-dropdown-menu a:hover {
  color: #B8944A;
}

/* Active state */
.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
  margin-left: 17px;
}

.pricing-page h1 {
  color: #1F3552;
}

.pricing-card {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 35px;
  background: #fff;
  position: relative;
}

.pricing-card h3{
    margin-bottom: 20px;
}

.pricing-card.featured {
  border: 2px solid #B8944A;
  background: #FDFBF7;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #B8944A;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
}

.plan-title {
  color: #1F3552;
  margin-bottom: 8px;
}

.plan-title small {
  font-size: 16px;
  color: #475569;
}

.plan-subtitle {
  color: var(--secondary);
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding-left: 0;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #374151;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}
.btn-primary-nav{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 40px;
}
.btn-primary-nav:hover{
    background-color: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
}

.hero-header-pages{
    background-color: var(--primary);
    min-height: 385px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-item a {
color: #fff !important;
}
.finalcta{
background-color: var(--primary);
}
.finalcta h2{
    margin-bottom: 55px !important;
}
.finalcta p{
    margin-top: 10px !important;
}
.what-happens-page h1,
.what-happens-page h4,
.what-happens-page h3 {
  color: #1F3552;
  font-weight: 600;
}

/* Comparison Cards */
.compare-card {
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 30px;
  background: #ffffff;
}

.compare-card.positive {
  background: #f7f2e9;
}

/* Card Header */
.card-header-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-header-icon i {
  font-size: 22px;
  color: #94A3B8;
}

/* Checklist */
.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--dark);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 600;
}

.check-list.negative li::before {
  color: var(--secondary);
}

.check-list.positive li::before {
  color: var(--secondary);
}

/* Info Box */
.info-box {
  border: 1px solid var(--secondary);
  border-radius: 10px;
  padding: 40px 30px;
  background: #ffffff;
}

.check-inline {
  position: relative;
  padding-left: 22px;
  color: #6B7280;
  text-align: left;
}

.check-inline::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 600;
}

/* CTA Button */
.cta-btn {
  background: #E5E7EB;
  color: #1F3552;
  border: 1px solid #CBD5E1;
}

.cta-btn:hover {
  background: #1F3552;
  color: #ffffff;
}
.happes-section-row{

}
.security-page h1,
.security-page h3,
.security-page h5 {
  color: #1F3552;
  font-weight: 600;
}

/* Highlight box */
.security-highlight {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 40px 30px;
  background: #F8FAFC;
}

.security-highlight i {
  font-size: 36px;
  color: #94A3B8;
}

/* Feature cards */
.security-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 30px;
  background: #ffffff;
}

.security-card i {
  font-size: 26px;
  color: #94A3B8;
  margin-bottom: 15px;
}

.security-card p {
  color: #6B7280;
  margin-bottom: 0;
}

/* Privacy box */
.privacy-box {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 35px 30px;
  background: #ffffff;
}

.privacy-box i {
  font-size: 28px;
  color: #22C55E;
}

/* CTA */
.security-cta {
  background: #1F3552;
  color: #ffffff;
  border-radius: 8px;
}

.security-cta:hover {
  background: #162B45;
  color: #ffffff;
}

.how-it-works-section h4{
  margin-bottom: 0px;
}
.how-it-works-section .card-header-icon i{
color: var(--secondary);
}
  .checkout-wrapper {
      max-width: 720px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 10px;
      padding: 32px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .section-title {
      font-weight: 600;
      margin-bottom: 12px;
    }

    .order-summary {
      background: #f1f5f9;
      padding: 14px 16px;
      border-radius: 6px;
      margin-bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .payment-option {
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      padding: 14px;
      margin-bottom: 12px;
      cursor: pointer;
    }

    .payment-option.active {
      border-color: #1f3552;
      background: #f8fafc;
    }

    .card-icons img {
      height: 22px;
      margin-right: 8px;
      opacity: 0.7;
    }

    .form-control {
      border-radius: 6px;
    }

    .continue-btn {
      background: #1f3552;
      color: #fff;
      padding: 14px;
      font-size: 16px;
      border-radius: 8px;
      border: none;
      width: 100%;
    }

    .continue-btn:hover {
      background: #16263f;
    }

    .help-text {
      text-align: center;
      margin-top: 16px;
      font-size: 14px;
    }

    .payment-option {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 12px;
  cursor: pointer;
}

.payment-option.active {
  border-color: #1f3552;
  background: #f8fafc;
}

.payment-option input[type="radio"] {
  cursor: pointer;
}
.card-icons i {
  font-size: 28px;
  margin-right: 10px;
  color: #6b7280;
}
 .hint-text {
      font-size: 13px;
      color: #6b7280;
      margin-top: 6px;
    }

      /* Upload Box */
  .upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .upload-box:hover {
    background: #eef2ff;
    border-color: var(--secondary);
  }

  .upload-box i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 10px;
  }

  .privacy-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .privacy-note i {
    color: var(--primary);
    font-size: 15px;
  }


@media(max-width:768px)
{
    .hero-main-section {
            padding: 70px 20px 0;
}
.hero-short-text span {

    font-size: 13px;
}
.hero-short-text {
    margin-top: 20px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}
.navbar .navbar-brand {
    height: 45px;
}
.checkout-wrapper {
    padding: 20px 10px;
}


}