@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&display=swap");

body {
  font-family: "Josefin Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

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

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

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

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

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #032775;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

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

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(130deg, #231a6f, #0f054c);
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 15px 0;
  background: #0396ff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header_section.scrolled {
  background: rgba(3, 150, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: rgb(30, 2, 129);
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #00bbf0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  /* padding: 0px 0 145px 0; */
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}


.slider_section .detail-box {
  color: #00204a;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}

.slider_section .detail-box .btn-box {
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 19px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 20px; /* Add this line to make the button rounded */
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #007fa4;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  animation: upDown 5s infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(-45px);
  }
  50% {
    transform: translateY(45px);
  }
  100% {
    transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #00bbf0;
}

.service_section {
  position: relative;
}

.service_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 20px;
  border-radius: 5px;
}

.service_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 125px;
  min-width: 75px;
  height: 75px;
  margin-bottom: 15px;
}

.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box a {
  color: #00204a;
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: #00bbf0;
}

.service_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #007fa4;
}

.about_section {
  background-color: #ffffff;
  color: #1e1e1e;
}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box img {
  /* display: block;
  margin: 0 auto; */
  max-width: 100%;
}

.about_section .detail-box h3 {
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #007fa4;
}
.why_section{
  background-color: #0396ff;
  color: white
  ;
}
 

.why_section .box {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #00204a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: #00204a;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.why_section .box p {
  margin-bottom: 0;
}

.why_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.why_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}

.why_section .btn-box a:hover {
  background-color: #007fa4;
}

/* Why Page - Hero Section */
.why_hero_section {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  padding: 80px 0;
  color: #ffffff;
}

.why_hero_section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why_hero_section h1 span {
  color: #00bbf0;
}

.why_hero_section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Page - Features Section */
.why_features_section {
  background-color: #f8f9fa;
}

.feature-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(3, 150, 255, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 15px;
}

.feature-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  color: #444;
  font-size: 0.95rem;
}

.feature-list li i {
  color: #0396ff;
  margin-right: 10px;
}

/* Why Page - Stats Section */
.why_stats_section {
  background: linear-gradient(135deg, #032775 0%, #0396ff 100%);
  padding: 60px 0;
  color: #ffffff;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #00bbf0;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Why Page - CTA Section */
.why_cta_section {
  background-color: #ffffff;
}

.why_cta_section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 15px;
}

.why_cta_section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(3, 150, 255, 0.3);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 150, 255, 0.4);
  color: #ffffff;
}

.btn-secondary-cta {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #0396ff;
  border: 2px solid #0396ff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #0396ff;
  color: #ffffff;
}

/* Why Page Responsive */
@media (max-width: 768px) {
  .why_hero_section h1 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .why_cta_section h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* About Page - Hero Section */
.about_hero_section {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  padding: 80px 0;
  color: #ffffff;
}

.about_hero_section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about_hero_section h1 span {
  color: #00bbf0;
}

.about_hero_section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page - Story Section */
.about_story_section {
  background-color: #ffffff;
}

.story-image {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(3, 150, 255, 0.1);
}

.story-content {
  padding: 20px 0;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.2);
}

.story-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 20px;
}

.story-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* About Page - Mission Section */
.about_mission_section {
  background: linear-gradient(135deg, #032775 0%, #0396ff 100%);
  padding: 80px 0;
  color: #ffffff;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon i {
  font-size: 28px;
  color: #00bbf0;
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-card p {
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/* About Page - Values Section */
.about_values_section {
  background-color: #f8f9fa;
}

.about_values_section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 10px;
}

.value-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(3, 150, 255, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 28px;
  color: #ffffff;
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 10px;
}

.value-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* About Page - Team Section */
.about_team_section {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  padding: 80px 0;
  color: #ffffff;
}

.about_team_section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00bbf0 0%, #0396ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.team-avatar i {
  font-size: 32px;
  color: #ffffff;
}

.team-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-card p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* About Page - CTA Section */
.about_cta_section {
  background-color: #ffffff;
}

.about_cta_section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 15px;
}

.about_cta_section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

/* About Page Responsive */
@media (max-width: 768px) {
  .about_hero_section h1 {
    font-size: 2rem;
  }

  .story-content h2 {
    font-size: 1.8rem;
  }

  .about_cta_section h2 {
    font-size: 1.8rem;
  }
}

/* Contact Page - Hero Section */
.contact_hero_section {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  padding: 80px 0;
  color: #ffffff;
}

.contact_hero_section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact_hero_section h1 span {
  color: #00bbf0;
}

.contact_hero_section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Page - Info Cards */
.contact_info_section {
  background: linear-gradient(135deg, #032775 0%, #0396ff 100%);
  padding: 60px 0;
  margin-top: -30px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  color: #ffffff;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00bbf0 0%, #0396ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-info-icon i {
  font-size: 24px;
  color: #ffffff;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

/* Contact Page - Form Section */
.contact_form_section {
  background-color: #f8f9fa;
}

.contact-left-content {
  padding: 20px 0;
}

.contact-left-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 20px;
}

.contact-left-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-features {
  margin-bottom: 30px;
}

.contact-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-feature-item i {
  color: #0396ff;
  font-size: 20px;
  margin-right: 12px;
}

.contact-feature-item span {
  color: #444;
  font-size: 1rem;
}

.contact-social h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #032775;
  margin-bottom: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a i {
  color: #ffffff;
  font-size: 18px;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(3, 150, 255, 0.4);
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-card .form-group {
  margin-bottom: 20px;
}

.contact-form-card label {
  font-weight: 600;
  color: #032775;
  margin-bottom: 8px;
  display: block;
}

.contact-form-card .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: #0396ff;
  box-shadow: 0 0 0 3px rgba(3, 150, 255, 0.1);
}

.contact-form-card .error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 150, 255, 0.4);
}

.btn-submit i {
  margin-right: 8px;
}

/* Delete Account Page - Hero Section */
.delete_hero_section {
  background: linear-gradient(135deg, #dc3545 0%, #721c24 100%);
  padding: 80px 0;
  color: #ffffff;
}

.delete-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.delete-hero-icon i {
  font-size: 45px;
  color: #ffffff;
}

.delete_hero_section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.delete_hero_section h1 span {
  color: #ffc107;
}

.delete_hero_section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Delete Account Page - Info Section */
.delete_info_section {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-top: -30px;
}

.delete-info-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.delete-info-item {
  text-align: center;
  padding: 20px;
}

.delete-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0396ff 0%, #00bbf0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.delete-info-icon i {
  font-size: 24px;
  color: #ffffff;
}

.delete-info-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 10px;
}

.delete-info-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Delete Account Page - Form Section */
.delete_form_section {
  background-color: #f8f9fa;
}

.delete-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.delete-form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.delete-form-header i {
  font-size: 40px;
  color: #0396ff;
  margin-bottom: 15px;
}

.delete-form-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 10px;
}

.delete-form-header p {
  color: #666;
  margin: 0;
}

.delete-form-card .form-group {
  margin-bottom: 20px;
}

.delete-form-card label {
  font-weight: 600;
  color: #032775;
  margin-bottom: 8px;
  display: block;
}

.delete-form-card .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.delete-form-card .form-control:focus {
  border-color: #0396ff;
  box-shadow: 0 0 0 3px rgba(3, 150, 255, 0.1);
}

.delete-form-card .error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.delete-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
}

.delete-warning i {
  color: #856404;
  font-size: 24px;
  margin-right: 15px;
  margin-top: 2px;
}

.delete-warning p {
  color: #856404;
  margin: 0;
  line-height: 1.6;
}

.btn-submit-delete {
  width: 100%;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-delete:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-submit-delete i {
  margin-right: 8px;
}

/* Contact & Delete Pages Responsive */
@media (max-width: 768px) {
  .contact_hero_section h1,
  .delete_hero_section h1 {
    font-size: 2rem;
  }

  .contact-form-card,
  .delete-form-card {
    padding: 25px;
  }

  .delete-hero-icon {
    width: 80px;
    height: 80px;
  }

  .delete-hero-icon i {
    font-size: 35px;
  }
}

/* Policy Pages (Privacy Policy & Terms) - Hero Section */
.policy_hero_section {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  padding: 80px 0;
  color: #ffffff;
}

.policy-hero-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.policy-hero-icon i {
  font-size: 45px;
  color: #ffffff;
}

.policy_hero_section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.policy_hero_section h1 span {
  color: #00bbf0;
}

.policy_hero_section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Policy Pages - Content Section */
.policy_content_section {
  background-color: #f8f9fa;
}

.policy-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-intro {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-left: 4px solid #0396ff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.policy-intro p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #444;
}

.policy-intro p:last-child {
  margin-bottom: 0;
}

.policy-section {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0396ff;
  display: inline-block;
}

.policy-section h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0396ff;
  margin-top: 25px;
  margin-bottom: 15px;
}

.policy-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-section ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
}

.policy-highlight {
  background: #e8f4fd;
  border: 1px solid #0396ff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.policy-highlight i {
  color: #0396ff;
  font-size: 24px;
  margin-right: 15px;
}

.policy-highlight p {
  color: #032775;
  margin: 0;
}

.policy-highlight.warning {
  background: #fff3cd;
  border-color: #ffc107;
}

.policy-highlight.warning i {
  color: #856404;
}

.policy-highlight.warning p {
  color: #856404;
}

.policy-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.policy-footer p {
  color: #032775;
  font-size: 1.1rem;
}

.policy-contact {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  border-radius: 15px;
  padding: 30px;
  color: #ffffff;
  margin-top: 20px;
}

.policy-contact h4 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.policy-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-contact ul li {
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.policy-contact ul li i {
  margin-right: 12px;
  width: 20px;
  color: #00bbf0;
}

.policy-contact ul li a {
  color: #ffffff;
  text-decoration: underline;
}

.policy-contact ul li a:hover {
  color: #00bbf0;
}

/* Policy Pages Responsive */
@media (max-width: 768px) {
  .policy_hero_section h1 {
    font-size: 2rem;
  }

  .policy-hero-icon {
    width: 80px;
    height: 80px;
  }

  .policy-hero-icon i {
    font-size: 35px;
  }

  .policy-card {
    padding: 25px;
  }

  .policy-section h3 {
    font-size: 1.3rem;
  }
}

/*team section */
.team_section {
  text-align: center;
  background-color: #00204a;
  color: #ffffff;
}

.team_section .heading_container {
  justify-content: center;
}

.team_section .team_container {
  padding: 0 15px;
}

.team_section .team_container .box {
  padding: 35px 0 0 0;
  border-radius: 5px;
  overflow: hidden;
  transition: all .1s;
  margin-top: 45px;
  background: linear-gradient(to bottom, #002759, #002b64);
}

.team_section .team_container .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team_section .team_container .box .img-box img {
  width: 120px;
  border-radius: 100%;
  border: 5px solid #ffffff;
}

.team_section .team_container .box .detail-box {
  margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: #00bbf0;
  font-weight: 600;
  position: relative;
}

.team_section .team_container .box .social_box {
  padding: 10px 45px 20px 45px;
  display: flex;
  justify-content: space-between;
}

.team_section .team_container .box .social_box a {
  color: #ffffff;
  font-size: 22px;
}

.team_section .team_container .box .social_box a:hover {
  color: #00bbf0;
}

/*team section end*/
/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 15px;
}

.client_section .box .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin-bottom: -50px;
  margin-left: 25px;
  position: relative;
}

.client_section .box .img-box img {
  border-radius: 100%;
}

.client_section .box .client_id {
  display: flex;
  justify-content: space-between;
}

.client_section .box .client_id .client_info h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 75px 25px 25px 25px;
}

.client_section .box .detail-box i {
  color: #00204a;
  margin-bottom: 10px;
}

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

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  bottom: 0px;
  font-size: 24px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  color: #00204a;
}

/* client section end */
.info_section {
  background-color: #0396ff;
  color: #ffffff;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #00bbf0;
}

.info_section .info_social {
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #00bbf0;
}

.info_section .info_links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.info_section .info_links a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #00bbf0;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #007fa4;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #00204a;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Gradient Background */
.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0396ff 0%, #032775 50%, #0a1628 100%);
  z-index: -1;
}

/* Home Hero Section */
.home_hero_section {
  padding: 80px 0 100px;
  position: relative;
}

.hero-content {
  color: #ffffff;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.home_hero_section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.home_hero_section h1 span {
  background: linear-gradient(135deg, #00bbf0 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-text strong {
  color: #00bbf0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #00bbf0;
}

.hero-stat-item .stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(0, 187, 240, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-main-image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: pulse 2s ease-in-out infinite;
}

.floating-card i {
  color: #0396ff;
  font-size: 1.2rem;
}

.floating-card span {
  color: #032775;
  font-weight: 600;
  font-size: 0.9rem;
}

.floating-card.card-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 30%;
  left: 0;
  animation-delay: 0.5s;
}

.floating-card.card-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Home Features Section */
.home_features_section {
  padding: 60px 0;
  background: #f8fafc;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.home-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.home-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(3, 150, 255, 0.15);
  border-color: #0396ff;
}

.home-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.home-feature-icon i {
  color: #ffffff;
  font-size: 28px;
}

.home-feature-card h4 {
  color: #032775;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.home-feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Home About Section */
.home_about_section {
  background: #ffffff;
}

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid #0396ff;
  border-radius: 20px;
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  color: #ffffff;
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(3, 150, 255, 0.3);
}

.about-experience-badge .exp-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content {
  padding-left: 30px;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #0396ff;
}

.about-content .lead-text {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-features {
  margin: 30px 0;
}

.about-feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon-sm {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(3, 150, 255, 0.1) 0%, rgba(3, 39, 117, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-sm i {
  color: #0396ff;
  font-size: 20px;
}

.feature-text h5 {
  color: #032775;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Home Why Section */
.home_why_section {
  background: #f8fafc;
}

.home_why_section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 10px;
}

.home_why_section h2 span {
  color: #0396ff;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.why-grid {
  margin-top: 40px;
}

.why-item {
  padding: 40px 0;
  border-bottom: 1px solid #e9ecef;
}

.why-item:last-child {
  border-bottom: none;
}

.why-content {
  padding: 20px;
}

.why-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(3, 150, 255, 0.1);
  line-height: 1;
  margin-bottom: 15px;
}

.why-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #032775;
  margin-bottom: 15px;
}

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

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  color: #444;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-list li i {
  color: #0396ff;
  font-size: 1.1rem;
}

.why-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.why-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.why-image:hover img {
  transform: scale(1.05);
}

/* Home Download Section */
.home_download_section {
  background: linear-gradient(135deg, #0396ff 0%, #032775 100%);
  position: relative;
  overflow: hidden;
}

.home_download_section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.download-content h2 span {
  color: #00bbf0;
}

.download-content .lead-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.download-features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.download-feature i {
  font-size: 1.5rem;
  color: #00bbf0;
}

.download-feature span {
  font-weight: 500;
}

.download-price {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.price-tag .price {
  font-size: 3rem;
  font-weight: 800;
  color: #00bbf0;
}

.price-tag .period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.download-price p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-download-primary,
.btn-download-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download-primary {
  background: #ffffff;
  color: #032775;
}

.btn-download-primary:hover {
  background: #00bbf0;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-download-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-download-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-download-primary i,
.btn-download-secondary i {
  font-size: 1.8rem;
}

.btn-download-primary span,
.btn-download-secondary span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-download-primary span small,
.btn-download-secondary span small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.download-image-wrapper {
  position: relative;
  text-align: center;
}

.download-main-image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.download-floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.download-floating-badge i {
  color: #ffc107;
  font-size: 1.2rem;
}

.download-floating-badge span {
  color: #032775;
  font-weight: 600;
}

/* Home CTA Section */
.home_cta_section {
  padding: 80px 0;
  background: #f8fafc;
}

.cta-wrapper {
  background: linear-gradient(135deg, #032775 0%, #0a1628 100%);
  border-radius: 25px;
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(3, 150, 255, 0.2) 100%);
}

.cta-wrapper h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-wrapper p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #032775;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-white:hover {
  background: #00bbf0;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Home Page Responsive */
@media (max-width: 991px) {
  .home_hero_section h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat-item .stat-value {
    font-size: 1.5rem;
  }

  .floating-card {
    display: none;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .cta-wrapper {
    padding: 40px 30px;
    text-align: center;
  }

  .text-lg-right {
    text-align: center !important;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .home_hero_section {
    padding: 50px 0 70px;
  }

  .home_hero_section h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .home_features_section {
    margin-top: 0;
    padding: 40px 0;
  }

  .about-content h2,
  .home_why_section h2,
  .download-content h2 {
    font-size: 1.8rem;
  }

  .why-number {
    font-size: 3rem;
  }

  .why-content h3 {
    font-size: 1.4rem;
  }

  .download-features {
    gap: 15px;
  }

  .download-buttons {
    flex-direction: column;
  }

  .btn-download-primary,
  .btn-download-secondary {
    justify-content: center;
  }

  .cta-wrapper h2 {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
