/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p{
   margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #0b0c0e 16.99%, #070a10 135.64%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0B0B0B;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
  padding: 10px 0;
}
.content-wrapper{
  background-image: url("../Image/bg_img.png");
  background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0066ff;
}

/* Hero Section */
section.hero {
    padding: 40px 0;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 56px;
    color: white;
    margin: 30px 0 30px;
    letter-spacing: 2px;
    text-align: center;
    line-height: 80px;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero p {
  font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #ffffff;
    line-height: 35px;
    text-align: center;
    animation: fadeInUp 1s ease forwards 1s;
}

/* Form Card */
.form-card {
  background: #1A1B1E;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #2D2F33;
  opacity: 0;
  animation: slideUp 1s ease forwards 1.2s;
}

.form-group input,.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #2D2F33;
  background: #1A1B1E;
  color: #AAAAAA;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,.form-group textarea:focus {
  outline: none;
  border-color: #0066ff;
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

.btn {
  background: #0066FF;
  color: white;
  border: none;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

.btn:hover {
  background: #0044CC;
  color: white;
  transform: translateY(-2px);
}

.disclaimer {
  margin-top: 15px;
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
}

/* Stats */
.stats {
  margin: 40px 0;
  text-align: center;
  font-size: 16px;
  color: #ccc;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.5s;
}

.stats strong {
  color: white;
}

/* Badges */
.badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease forwards 1.8s;
}

.badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Success Message */
.success-message {
  background: #1A1B1E;
  border: 1px solid #FAB400;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 20px auto;
  max-width: 600px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  opacity: 0;
  animation: popIn 0.4s ease forwards;
  display: none;
  align-items: center;
}

.success-message.show {
  display: flex;
  opacity: 1;
}
.star_content_wrapper{
    display: flex;
    width: 100%;
    align-items: center;
}


.success-message .icon img {
  width: 100%;
  height: 100%;
}

/* Text + button wrapper */
.success-message .msg_btn_wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Text */
.success-message h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
}

.success-message p {
  font-size: 14px;
  color: #c9c9c9;
  margin: 0;
}

/* Button */
.success-message .btn_wrapper button {
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  transition: background 0.3s ease;
  margin: 0;
}



/* Animation */
@keyframes popIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --------------------
   Responsive Design
-------------------- */
@media (max-width: 768px) {
  .success-message {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .success-message .msg_btn_wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .success-message .btn_wrapper {
    width: 100%;
  }

  .success-message .btn_wrapper button {
    width: 100%;
    text-align: center;
  }
}
.stats_popup_wrapper{
  background-image: url("../Image/star_btn_bg_img.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.success-message .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.success-message h3 {
  margin: 0;
  color: white;
}

.success-message p {
  margin: 5px 0 0;
  color: #ccc;
  font-size: 14px;
}

.success-message button {
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 20px;
}
 .features-wrapper {
   padding: 60px 0 30px;
 }

 /* founder note */
 .founder_note{
  padding: 30px 0 60px;
  color: #fff;
 }

 .founder_note_content{
  padding: 0 40px;
 }

 .founder_note_content h3{
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
 }

 .founder_note_content p{
  font-size: 18px;
  line-height: 30px;
  margin: 0;
 }
 
/* Center Logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
 
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1) translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
  }
  50% {
    transform: scale(1.08) translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
  }
  100% {
    transform: scale(1) translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
  }
}

/* Footer */
footer {
  background: #0B0B0B;
  border-top: 1px solid #111;
  padding: 20px 0;
  color: #aaa;
  font-size: 14px;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.tagline span {
    background: #1A1B1E;
    border: 1px solid #2D2F33;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 16px;
    color: white;
    animation: fadeIn 1s ease forwards;
}


/* thank you page */

.thank_you{
  padding: 20px 10px;
}

.thank_you_inr {
  /* background: rgb(0 0 0 / 40%);
  backdrop-filter: blur(1px);
  padding: 30px;
  border-radius: 30px; */
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.thank_you_title h2{
  font-size: 50px;
  margin: 0;
  font-weight: 700;
  text-align: center;
}

.thank_you_content h3 {
  font-size: 25px;
  margin: 0;
}

.thank_you_content p {
  font-size: 18px;
  line-height: 25px;
  margin: 0;
}

.thank_you_company h3{
  font-size: 20px;
  margin-bottom: 0;
}

.thank_you_company p{
  font-size: 16px;
  margin: 0;
}

.thank_you_company {
  position: relative;
  padding-top: 20px;
}

.thank_you_company:before {
  position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(255 255 255 / 20%);
    left: 50%;
    top: 5px;
    transform: translate(-50%, 0);
    border-radius: 5px;
}

.thank_you_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.back_page_link ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.back_btn{
  font-size: 16px;
  text-decoration: none;
  padding: 14px;
}

.back_btn svg{
  width: 18px;
  fill: #0044CC;
}

/* privacy */
.privacy-wrapper{
  height: auto !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {


  .hero h1 {
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 30px;
    margin:20px 0;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-icon {
    font-size: 36px;
  }

  .form-card {
    padding: 20px;
  }

  .tagline {
    font-size: 14px;
    padding: 8px 12px;
  }

  .badges .badge {
    width: 50px;
    height: 50px;
  }

  .badges .badge img {
    width: 35px;
    height: 35px;
  }

  .stats {
    font-size: 15px;
  }

  footer .col-12 {
    font-size: 13px;
  }
}
.features-wrapper {
  position: relative;
}

/* Cross lines */
.features-wrapper::before,
.features-wrapper::after {
  content: "";
  position: absolute;
  background: #ffffff0f;
  z-index: 1;
}
.mobile_none{
  visibility: hidden;
}
.features-wrapper::before {
  top: 22%;
  bottom: 56%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  height: 60%;
  margin: 0 auto;
  z-index: -1;
}

.features-wrapper::after {
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  width: 60%;
  margin: 0 auto;
  z-index: -1;
}

.center-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature card */
.feature-card {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 2px #799bde7d inset;
  z-index: 2;
  position: relative;
  width: 100%;
}
.features_row_wrapper{
  gap: 70px 0;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #0066ff;
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* Contact Section */
.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Contact Info Panel */
.contact-info-panel {
  background: #1A1B1E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease-in-out;
}

.contact-info-panel:hover {
  transform: translateY(15px);
}

.contact-info-panel h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

/* .contact-detail {
  display: flex;
  align-items: flex-start;
} */

.contact-icon {
  /* width: 40px;
  height: 40px; */
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  /* margin-right: 15px; */
  border-radius: 100%;
}

.contact-icon i {
  font-size: 30px;
}

/* .contact-detail .contact-content{
  width: calc(100% - 55px);
} */

.contact-content p,.contact-content a{
  font-size: 16px;
  margin: 0;
  text-decoration: none;
  color: #fff;
}

/* Contact Form Card */
.contact-form-card {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #1A1B1E;
}

.contact_form_title{
  margin-bottom: 30px;
}

.contact_form_title h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.contact_form_title p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}

.contact-form-card .row{
  row-gap: 15px;
}

.btn-success {
  background-color: #0057ff;
  border-color: #0057ff;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgb(77 128 227 / 30%);
}

/* new contact us */
.contact_main_inr{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.contact_main_inr .contact-detail{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}


@media  (max-width:992px) and (max-width:1099px) {
  .contact-detail{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .contact-detail .contact-content{
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .center-logo {
    width: 160px;
    height: 160px;
  }
  .feature-card {
    margin: 15px auto;
  }
  .success-message {
    max-width: 100%;
    width: 100%;
  }
  .thank_you_inr{
    gap: 15px;
  }
  .thank_you_title h2{
    font-size: 35px;
  }

  .thank_you_content h3{
    font-size: 22px;
  }
  .thank_you_content p,.back_btn{
    font-size: 16px;
    line-height: 22px;
  }
  .founder_note_content{
    padding: 0;
  }
  .founder_note_content h3{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .founder_note_content p{
    font-size: 16px;
    line-height: 25px;
  }
  .founder_note_content{
    text-align: center;
  }
  /* .thank_you {
    height: auto;
    padding: 50px 0;
  } */

  .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .contact-form-card {
    padding: 25px;
  }
  
  .contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-info-panel{
    padding: 15px;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .btn-success {
    padding: 10px 15px;
    font-size: 14px;
  }

  .contact-icon{
    width: 70px;
    height: 70px;
  }
  .contact-icon i{
    font-size: 25px;
  }
}
/* @media (min-width: 320px) and (max-width: 767.98px){ */
  @media (max-width: 767px){
  .features-wrapper .center-logo{
    display: none;
  }
    .features-wrapper {
      padding: 14px 0;
    }
    .features_row_wrapper {
      gap: 0px 0;
    }
    .copy_right_wrapper{
      justify-content: center;
    }
    .feature-card{
      max-width: 100%;
      width: 100%;
    }
    .mobile_none{
      display: none !important;
    }
    .thank_you_title h2 {
      font-size: 25px;
    }
    .thank_you_content h3,.thank_you_company h3 {
      font-size: 18px;
    }
    .thank_you_content,.thank_you_inr{
      gap: 10px;
    }
    .founder_note_content h3{
      font-size: 22px;
    }
    .founder_note{
      padding: 0 0 20px;
    }
    .founder_note_info .row{
      gap: 20px;
    }
    .founder_img{
      text-align: center;
    }
    .founder_img img{
      width: 200px !important;
    }
    .grecaptcha-badge{
      bottom: 60px !important;
      z-index: 99;
    }

    .contact-section {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  
    .contact-form-card {
      padding: 15px;
    }
  
    .contact-section .container > .row{
      row-gap: 20px;
    }
    
    .contact-info-panel h3 {
      font-size: 20px !important;
    }
    
    .contact-info-panel p {
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    /* .contact-detail {
      flex-direction: row !important;
      gap: 0 !important;
    }
  
    .contact-detail .contact-content{
      width: calc(100% - 50px) !important;
    } */
    
    .contact-icon {
      width: 50px;
      height: 50px;
    }
    
    .contact-form-card h3,.contact_form_title h3{
      font-size: 20px !important;
      margin-bottom: 10px !important;
    }
  
    .contact-icon i {
      font-size: 20px;
    }
  
    .contact_form_title{
      margin-bottom: 20px;
    }
    
    .form-group label {
      font-size: 12px;
    }
    
    .form-control {
      padding: 10px 12px;
      font-size: 14px;
    }
    
    .btn-success {
      padding: 10px 15px;
      font-size: 14px;
    }

    .contact_main_inr{
      grid-template-columns: 1fr;
      gap: 20px;
    }
}



