/*===========================
    01. Common CSS
===========================*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&amp;display=swap");

  /* Optional: add overlay for better text readability */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* soft white overlay */
    z-index: -1;
  }
body {
  font-weight: normal;
  font-style: normal;
  overflow-x: hidden;
}
.hero-image {
  width: 70%;                  /* reduce default footprint */
  max-width: 420px;            /* smaller cap on large screens */
  border-radius: 18px;         /* smooth edges */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); /* subtle depth */
  transition: all 0.4s ease-in-out;
  object-fit: cover;           /* keeps proportions clean */
}


/* Early access benefits (under CTA) */
.early-benefits {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.early-benefits .benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 14px;
  color: #000080;
  font-size: 16px;
  font-weight: 600;
}

.early-benefits .benefit i {
  color: #FFA500;
  font-size: 25px;
  line-height: 1;
}

@media (max-width: 576px) {
  .early-benefits .benefit { font-size: 15px; }
}



.hero-image:hover {
  transform: scale(1.07) rotate(1deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  filter: brightness(1.1);
}
.slider-container {
  overflow: visible;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.slider-container::before,
.slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.slider-container::before {
  left: 0;
  /* background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); */
}

.slider-container::after {
  right: 0;
  /* background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); */
}

.slider-track {
  display: flex;
  width: calc(250px * 8);
  animation: scroll 18s linear infinite;
  gap: 0;
}

.slide {
  flex: 0 0 25%; /* 4 images at a time */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.slide img {
  width: 70%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  filter: blur(4px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.slide img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  filter: blur(4px);
}

/* Infinite scrolling animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive for mobile */
@media (max-width: 992px) {
  .slide { flex: 0 0 33.33%; }
}
@media (max-width: 768px) {
  .slide { flex: 0 0 50%; }
}
@media (max-width: 500px) {
  .slide { flex: 0 0 100%; }
}
/* Logo styling */
.edshala-logo {
  height: 90px; /* Increased logo size */
  width: auto;
  transition: transform 0.3s ease;
}

.edshala-logo:hover {
  transform: scale(1.05);
}

/* Platform title beside logo */
.platform-title {
  font-size: 26px;
  font-weight: 600;
  color: #000080;
  line-height: 1.3em;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.platform-title span {
  color: #FFA500;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header.header-03 .col-xl-12 {
    flex-direction: column;
    text-align: center;
  }

  .logo-text {
    margin-top: 10px;
  }

  .platform-title {
    font-size: 22px;
  }

  .edshala-logo {
    height: 70px;
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.notify-glow {
  background-color: #000080;
  color: #fff;
  border: 2px solid #00B38A;
  padding: 14px 40px;
  font-size: 18px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 179, 138, 0.5);
}

.notify-glow:hover {
  background-color: #00B38A;
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 179, 138, 0.9);
  transform: scale(1.05);
}

/* Modal styling */
.notify-modal {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.notify-modal .modal-header {
  background: linear-gradient(135deg, #F3F7FF 0%, #E9FBF6 100%);
  color: #0F2137;
  padding: 20px 24px;
}

.notify-modal .modal-title {
  font-weight: 700;
}

.notify-modal .close {
  color: #0F2137;
  opacity: 1;
  text-shadow: none;
}

.notify-modal .modal-body {
  padding: 30px 24px 12px; /* extra space before form starts */
}

.notify-modal .form-control {
  border-radius: 12px;
  border-color: rgba(0,0,0,0.12);
  padding: 14px 16px;
}

.notify-modal .form-control:focus {
  border-color: #00B38A;
  box-shadow: 0 0 0 0.2rem rgba(0,179,138,0.15);
}

.notify-modal .modal-footer {
  padding: 16px 24px 24px;
}

.notify-modal .btn-primary {
  background-color: #000080;
  border-color: #000080;
  border-radius: 12px;
  padding: 10px 20px;
}

.notify-modal .btn-primary:hover {
  background-color: #00B38A;
  border-color: #00B38A;
}

.notify-modal .btn-light {
  border-radius: 12px;
}




* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

button {
  cursor: pointer;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  z-index: -1;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

.logo img {
  width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .img-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .img-wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .odd-col {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.slick-slide:focus {
  outline: 0;
}

.common-btn {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.common-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.common-btn:hover::after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

input {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  border: 1px solid rgba(112, 112, 112, 0.3);
}

input::-webkit-input-placeholder {
  font-size: 16px;
}

input:-ms-input-placeholder {
  font-size: 16px;
}

input::-ms-input-placeholder {
  font-size: 16px;
}

input::placeholder {
  font-size: 16px;
}

input:focus {
  border-color: #2F80ED;
}

.subscribe-form-1 {
  position: relative;
  max-width: 570px;
}

.subscribe-form-1 input {
  padding: 20px 25px;
  width: 100%;
}

.subscribe-form-1 button {
  padding: 20px 17px;
  color: #fff;
  border: 1px solid transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 767px) {
  .subscribe-form-1 button {
    position: relative;
    margin-top: 15px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-form-1 button {
    position: absolute;
  }
}

.countdown {
  padding-top: 40px;
  padding-bottom: 40px;
}

.countdown .single-count-content {
  position: relative;
  padding: 0 40px;
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .countdown .single-count-content {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .countdown .single-count-content {
    padding: 0 10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .countdown .single-count-content {
    padding: 0 20px;
  }
}

.countdown .single-count-content::after {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 50px;
}

@media (max-width: 767px) {
  .countdown .single-count-content::after {
    top: -10px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .countdown .single-count-content::after {
    top: -5px;
  }
}

.countdown .single-count-content:first-child {
  padding-left: 0px;
}

.countdown .single-count-content:last-child {
  padding-right: 0px;
}

.countdown .single-count-content:last-child::after {
  display: none;
}

.countdown .single-count-content .count {
  font-size: 50px;
}

@media (max-width: 767px) {
  .countdown .single-count-content .count {
    font-size: 35px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .countdown .single-count-content .count {
    font-size: 45px;
  }
}

.countdown .single-count-content .text {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .countdown .single-count-content .text {
    font-size: 15px;
  }
}

.header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.header .social-links {
  text-align: right;
}

@media (max-width: 767px) {
  .header .social-links {
    display: none;
  }
}

.header .social-links ul li {
  display: inline-block;
}

.header .social-links ul li:first-child a {
  margin-left: 0;
}

.header .social-links ul li a {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-left: 40px;
}

main.main-03 {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main.main-03 .shape {
    display: none;
  }
}

@media (max-width: 767px) {
  main.main-03 .shape {
    display: none;
  }
}

main.main-03 .shape-1 {
  width: 57px;
  height: 560px;
  background: #70a6b6;
  left: 0px;
  top: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main.main-03 .shape-1 {
    display: block;
  }
}

main.main-03 .shape-3 {
  top: 180px;
  left: 140px;
}

main.main-03 .shape-4 {
  top: 134px;
  left: 52%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main.main-03 .shape-4 {
    display: block;
  }
}

main.main-03 .shape-5 {
  top: 144px;
  right: 177px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main.main-03 .shape-5 {
    display: block;
  }
}

main.main-03 .shape-6 {
  top: 50%;
  left: 50%;
}

main.main-03 .shape-7 {
  left: 223px;
  bottom: 380px;
}

main.main-03 .shape-8 {
  bottom: 170px;
  left: 40%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main.main-03 .shape-8 {
    display: block;
  }
}

main.main-03 .shape-9 {
  right: 145px;
  top: 515px;
  z-index: 1;
}

main.main-03 .shape-10 {
  right: 195px;
  bottom: 477px;
  z-index: 1;
}

main.main-03 .shape-11 {
  right: 95px;
  bottom: 195px;
  z-index: 1;
}

main.main-03 .shape-12 {
  right: -11px;
  bottom: 470px;
  z-index: 1;
}

main.main-03 .shape-13 {
  bottom: 0;
  left: 48%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main.main-03 .shape-13 {
    display: block;
  }
}

@media (max-width: 767px) {
  main.main-03 .shape-13 {
    display: block;
  }
}

main .header.header-03 {
  position: unset;
  padding-top: 50px;
}

main .main-wrapper.demo-03 {
  font-family: "Open Sans", sans-serif;
  height: auto;
  padding-top: 50px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main .main-wrapper.demo-03 {
    padding-bottom: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  main .main-wrapper.demo-03 {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  main .main-wrapper.demo-03 {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

main .main-wrapper.demo-03 .shape {
  position: absolute;
}

main .main-wrapper.demo-03 .shape.shape-2 {
  width: 680px;                 /* desktop default */
  height: 680px;
  background: #00B38A;
  border-radius: 50%;
  bottom: 40px;
  right: -320px;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  main .main-wrapper.demo-03 .shape.shape-2 {
    width: 600px;
    height: 600px;
    right: -360px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main .main-wrapper.demo-03 .shape.shape-2 {
    width: 520px;
    height: 520px;
    right: -340px;
  }
}

@media only screen and (max-width: 767px) {
  main .main-wrapper.demo-03 .shape.shape-2 {
    display: none;               /* hide only on small phones */
  }
}

/* (Removed conflicting duplicate media overrides for shape-2) */

main .main-wrapper.demo-03 .content-wrapper h1 {
  font-size: 60px;
  font-weight: 400;
  color: #0F2137;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main .main-wrapper.demo-03 .content-wrapper h1 {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  main .main-wrapper.demo-03 .content-wrapper h1 {
    font-size: 40px;
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  main .main-wrapper.demo-03 .content-wrapper h1 {
    font-size: 50px;
  }
}

main .main-wrapper.demo-03 .content-wrapper p {
  color: #343D48;
  font-size: 16px;
  line-height: 34px;
}

main .main-wrapper.demo-03 .content-wrapper h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

main .main-wrapper.demo-03 .content-wrapper .countdown .single-count-content::after {
  content: ':';
  color: rgba(15, 33, 55, 0.3);
}

@media (max-width: 767px) {
  main .main-wrapper.demo-03 .content-wrapper .countdown .single-count-content::after {
    top: -10px;
    font-size: 45px;
  }
}

main .main-wrapper.demo-03 .content-wrapper .countdown .single-count-content .count {
  font-weight: 700;
  color: #0F2137;
}

main .main-wrapper.demo-03 .content-wrapper .countdown .single-count-content .text {
  color: rgba(52, 61, 72, 0.5);
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form {
  max-width: 470px;
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form input {
  border-color: rgba(52, 61, 72, 0.5);
  padding-left: 55px;
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form input:focus {
  border-color: #1A73E8;
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form i.lni-envelope {
  position: absolute;
  left: 25px;
  top: 23px;
  font-size: 18px;
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form button {
  margin-top: 20px;
  position: relative;
  background: #1A73E8;
  padding: 14px 24px;
  margin-right: 20px;
  margin-bottom: 15px;
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form a {
  color: #1A73E8;
}

main .main-wrapper.demo-03 .content-wrapper .subscribe-form a:hover {
  color: #0F2137;
}

main .main-wrapper.demo-03 .img-wrapper {
  margin-left: 0px;
  margin-right: 0;
  text-align: right;
  position: relative;
  z-index: 1;
}

main .main-wrapper.demo-03 .img-wrapper img {
  width: 100%;
}

main .main-wrapper.demo-03 .img-wrapper::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #FFA500;
  right: 40px;
  bottom: -80px;
}

/* ========================= Custom Styles Moved from HTML ========================= */

/* Move logo left */
.header.header-03 .col-xl-12 {
  text-align: left !important;
}

.header.header-03 .logo img {
  height: 65px;
  margin-left: 30px;
}

/* Align h1 with logo vertically */
.header.header-03 .logo-text {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.header.header-03 .logo-text h1.platform-title {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 55px !important;
}

/* Centered heading section */
.centered-heading-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px 0 40px 0;
}

.centered-heading-section h1 {
  margin: 0;
  font-size: 48px !important;
}

.centered-heading-section h4 {
  margin-top: 10px;
}

/* Centered Coming Soon and Image section */
.centered-coming-soon-section {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered Button and Benefits section */
.centered-button-section {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Ensure consistent alignment for benefits */
.centered-button-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.centered-button-section .feature-card h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.centered-button-section .feature-card h4 i {
  display: block;
  margin-bottom: 8px;
}

.centered-button-section .feature-card h4 span {
  display: block;
  text-align: center;
}

/* Make all feature cards the same size */
.feature-card {
  min-height: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Ensure benefit cards in Coming Soon section have consistent alignment */
.centered-coming-soon-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 100%;
}

.centered-coming-soon-section .feature-card h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.centered-coming-soon-section .feature-card h4 i {
  display: block;
  margin-bottom: 8px;
}

.centered-coming-soon-section .feature-card h4 span {
  display: block;
  text-align: center;
}

/* Benefits section - icon above text */
.row.mt-5 .feature-card h4 i {
  display: block;
  margin-bottom: 8px;
}

.row.mt-5 .feature-card h4 span {
  display: block;
  text-align: center;
  margin-top: 0;
}

/* Ensure all columns in the benefits row have equal height */
.centered-coming-soon-section .row .col-md-4 {
  display: flex;
  flex-direction: column;
}

/* Make heading smaller & attractive */
h1 {
  font-size: 38px !important;
  line-height: 1.3em;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

/* Coming Soon glow */
.coming-soon {
  color: #FFA500 !important;
  font-weight: 700;
  margin-top: 22px;
  font-size: 48px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: none;
  text-shadow: none;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 2px #FFA500, 0 0 4px #FFA500, 0 0 6px #FFA500;
  }

  50% {
    text-shadow: 0 0 4px #FFD580, 0 0 6px #FFB733, 0 0 8px #FFA500;
  }

  100% {
    text-shadow: 0 0 2px #FFA500, 0 0 4px #FFA500, 0 0 6px #FFA500;
  }
}

/* Slight hover effect */
.coming-soon:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* Button hover animation with orange color */
.notify-glow {
  transition: all 0.4s ease-in-out;
  box-shadow: none !important;
}

.notify-glow:hover {
  background-color: #FFA500 !important;
  border-color: #FFA500 !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: scale(1.05);
}

/* ========================= Responsive Heading Styles ========================= */

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .centered-heading-section h1 {
    font-size: 42px !important;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .centered-heading-section h1 {
    font-size: 36px !important;
    line-height: 1.2;
  }

  .centered-heading-section h4 {
    font-size: 15px;
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  .centered-heading-section {
    padding: 0 15px;
  }

  .centered-heading-section h1 {
    font-size: 28px !important;
    line-height: 1.3;
  }

  .centered-heading-section h4 {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
  .centered-heading-section {
    padding: 0 10px;
  }

  .centered-heading-section h1 {
    font-size: 22px !important;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .centered-heading-section h4 {
    font-size: 13px;
    padding: 0 5px;
  }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
  .centered-heading-section h1 {
    font-size: 20px !important;
    line-height: 1.25;
  }

  .centered-heading-section h4 {
    font-size: 12px;
  }
}

/* Extra Large Devices (1200px and above) */
@media (min-width: 1200px) {
  .centered-heading-section h1 {
    font-size: 52px !important;
  }
}

/* ========================= Responsive Coming Soon Styles ========================= */

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .coming-soon {
    font-size: 42px !important;
  }
  
  .centered-coming-soon-section {
    padding: 0 20px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .coming-soon {
    font-size: 36px !important;
    line-height: 1.2;
  }
  
  .centered-coming-soon-section {
    padding: 0 15px;
  }
  
  .centered-coming-soon-section .row {
    flex-direction: column;
  }
  
  .centered-coming-soon-section .img-wrapper {
    margin-left: 0 !important;
    margin-top: 20px !important;
    text-align: center;
  }
  
  .centered-coming-soon-section p {
    font-size: 15px !important;
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  .centered-coming-soon-section {
    padding: 0 15px;
    margin: 20px 0;
  }
  
  .coming-soon {
    font-size: 28px !important;
    line-height: 1.3;
    margin-top: 10px !important;
  }
  
  .centered-coming-soon-section .col-xl-7,
  .centered-coming-soon-section .col-xl-5 {
    text-align: center;
  }
  
  .centered-coming-soon-section .img-wrapper {
    margin-left: 0 !important;
    margin-top: 15px !important;
  }
  
  .centered-coming-soon-section .hero-image {
    max-width: 100%;
    height: auto;
  }
  
  .centered-coming-soon-section p {
    font-size: 14px !important;
    padding: 0 10px;
  }
  
  .notify-glow {
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
    display: block;
  }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
  .centered-coming-soon-section {
    padding: 0 10px;
    margin: 15px 0;
  }
  
  .coming-soon {
    font-size: 22px !important;
    line-height: 1.3;
    word-wrap: break-word;
    margin-top: 5px !important;
  }
  
  .centered-coming-soon-section p {
    font-size: 13px !important;
    padding: 0 5px;
    line-height: 20px !important;
  }
  
  .centered-coming-soon-section .img-wrapper {
    margin-top: 10px !important;
  }
  
  .notify-glow {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
  .coming-soon {
    font-size: 20px !important;
    line-height: 1.25;
  }
  
  .centered-coming-soon-section p {
    font-size: 12px !important;
  }
  
  .notify-glow {
    font-size: 13px;
    padding: 8px 15px;
  }
}

/* ========================= Mobile Only Responsive Slider Images ========================= */

/* Mobile Devices (up to 767px) - Only affects mobile, desktop remains unchanged */
@media (max-width: 767px) {
  .slider-container {
    padding: 0;
    overflow: visible;
  }

  .slider-container::before,
  .slider-container::after {
    width: 80px;
  }

  .slider-track {
    gap: 0;
  }

  .slide {
    flex: 0 0 50% !important;
    padding: 0;
  }

  .slide img {
    max-width: 100%;
    width: 80%;
    height: 300px;
    object-fit: cover;
  }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
  .slider-container {
    padding: 0;
  }

  .slider-container::before,
  .slider-container::after {
    width: 50px;
  }

  .slider-track {
    gap: 0;
  }

  .slide {
    flex: 0 0 100% !important;
  }

  .slide img {
    height: 260px;
    width: 70%;
  }
}

/* Extra Small Mobile Devices (up to 375px) */
@media (max-width: 375px) {
  .slider-container {
    padding: 0;
  }

  .slider-container::before,
  .slider-container::after {
    width: 40px;
  }

  .slider-track {
    gap: 0;
  }

  .slide img {
    height: 230px;
    width: 65%;
  }
}

/* Utility classes for common inline styles */
.text-navy {
  color: #000080;
}

.text-orange {
  color: #FFA500;
}

.text-teal {
  color: #00B38A;
}

.text-dark {
  color: #333;
}

.text-black {
  color: black;
}

.text-gray {
  color: #555;
}

.img-wrapper-hero {
  margin-left: 20px;
  margin-top: 22px;
}

.countdown-timer {
  color: #000080;
}

.heading-subtitle {
  color: black;
  font-weight: 100;
  font-size: 16px;
  margin-top: 10px;
}

.coming-soon-text {
  color: #333;
  font-size: 16px;
  line-height: 22px;
  margin-top: 8px;
}

.feature-title {
  color: #FFA500;
}

.section-title {
  color: #000080;
  margin-bottom: 15px;
}

.section-title span {
  color: #FFA500;
}

.sneak-peek-title {
  color: #000080;
}

.sneak-peek-subtitle {
  color: #00B38A;
}

.footer-copyright {
  color: #000080;
  font-weight: 500;
}

.footer-link {
  color: #00B38A;
  margin: 0 10px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 14px;
}

.footer-small-text {
  font-size: 13px;
  color: #555;
}

.svg-icon {
  vertical-align: middle;
  margin-right: 5px;
}

/*# sourceMappingURL=style.css.map */
/* ========================= Privacy Policy Page Styles ========================= */

/* Page container */
.privacy-content {
  padding: 10px 0 60px 0;
  color: #333;
  margin-top: 0;
}

.privacy-content h1 {
  color: #000080;
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 600;
}

.privacy-content h2 {
  color: #000080;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-content h3 {
  color: #FFA500;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.privacy-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.privacy-content ul,
.privacy-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #555;
}

.privacy-content .last-updated {
  color: #888;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 30px;
}

/* Links inside privacy content */
.privacy-content a {
  color: #FFA500;
  text-decoration: underline;
}

/* Reduce gap between header and content on privacy page only */
.privacy-page .main-wrapper.demo-03 .container {
  padding-top: 0;
}

/* Smaller circular shape only on privacy page */
.privacy-page main .main-wrapper.demo-03 .shape.shape-2 {
  width: 480px !important;
  height: 480px !important;
  right: -240px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .privacy-page main .main-wrapper.demo-03 .shape.shape-2 {
    width: 420px !important;
    height: 420px !important;
    right: -250px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .privacy-page main .main-wrapper.demo-03 .shape.shape-2 {
    width: 360px !important;
    height: 360px !important;
    right: -210px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .privacy-page main .main-wrapper.demo-03 .shape.shape-2 {
    width: 300px !important;
    height: 300px !important;
    right: -170px !important;
  }
}

@media (max-width: 767px) {
  .privacy-page main .main-wrapper.demo-03 .shape.shape-2 {
    width: 240px !important;
    height: 240px !important;
    right: -140px !important;
  }
}