/**

* Template Name: Bootslander

* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/

* Updated: Aug 07 2024 with Bootstrap v5.3.3

* Author: BootstrapMade.com

* License: https://bootstrapmade.com/license/

*/



/*--------------------------------------------------------------

# Font & Color Variables

# Help: https://bootstrapmade.com/color-system/

--------------------------------------------------------------*/


html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #1e3a5f;
  --secondary-color: #2a6767;
  --accent-color: #abeb94;
  --text-color: #368d94;
  --light-text: #FF4081;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --gradient: linear-gradient(135deg, #2a6767, #1e3a5f);
  --glass-bg: rgba(255, 255, 255, 0.1);
}

:root {

  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --heading-font: "Raleway", sans-serif;

  --nav-font: "Poppins", sans-serif;

}



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {

  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */

  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */

  --heading-color: orangered;
  --subheading-color: #2cc197;
  /* Color for headings, subheadings and title throughout the website */

  --accent-color: #00a1e0;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */

  --surface-color: #dbd9d9;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */

  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

}




/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */



.light-background {

  --background-color: #f4f5fe;

  --surface-color: #ffffff;

}



.dark-background {

  --background-color: #368d94;

  --default-color: #ffffff;

  --main-color: #94f494;

  --heading-color: #f9f9f9;

  --surface-color: #0c0091;

  --contrast-color: #ffffff;

}



/* Smooth scroll */

:root {

  scroll-behavior: smooth;

}



/*--------------------------------------------------------------

# General Styling & Shared Classes

--------------------------------------------------------------*/

body {

  color: var(--default-color);

  background-color: var(--background-color);

  font-family: var(--default-font);

}



a {

  color: var(--contrast-color);

  text-decoration: none;

  transition: 0.3s;

}



a:hover {

  color: color-mix(in srgb, var(--contrast-color), transparent 25%);

  text-decoration: none;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  color: var(--heading-color);

  font-family: var(--heading-font);

}

.L-Heading {

  font-size: 4rem;

}

/*--------------------------------------------------------------

  # Global Footer

  --------------------------------------------------------------*/





.footer .footer-about .logo img {

  width: 250px;

}



/*--------------------------------------------------------------

# Preloader

--------------------------------------------------------------*/

#preloader {

  position: fixed;

  inset: 0;

  z-index: 999999;

  overflow: hidden;

  background: var(--background-color);

  transition: all 0.6s ease-out;

}



#preloader:before {

  content: "";

  position: fixed;

  top: calc(50% - 30px);

  left: calc(50% - 30px);

  border: 6px solid #ffffff;

  border-color: var(--accent-color) transparent var(--accent-color) transparent;

  border-radius: 50%;

  width: 60px;

  height: 60px;

  animation: animate-preloader 1.5s linear infinite;

}



@keyframes animate-preloader {

  0% {

    transform: rotate(0deg);

  }



  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Scroll Top Button

--------------------------------------------------------------*/

.scroll-top {

  position: fixed;

  visibility: hidden;

  opacity: 0;

  right: 15px;

  bottom: 15px;

  z-index: 99999;

  background-color: var(--accent-color);

  width: 40px;

  height: 40px;

  border-radius: 4px;

  transition: all 0.4s;

}



.scroll-top i {

  font-size: 24px;

  color: var(--contrast-color);

  line-height: 0;

}



.scroll-top:hover {

  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);

  color: var(--contrast-color);

}



.scroll-top.active {

  visibility: visible;

  opacity: 1;

}



/*--------------------------------------------------------------

# Disable aos animation delay on mobile devices

--------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  [data-aos-delay] {

    transition-delay: 0 !important;

  }

}



/*--------------------------------------------------------------

# Global Page Titles & Breadcrumbs

--------------------------------------------------------------*/

.page-title {

  color: var(--default-color);

  background-color: var(--background-color);

  position: relative;

}



.page-title .heading {

  padding: 160px 0 80px 0;

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}



.page-title .heading h1 {

  font-size: 38px;

  font-weight: 700;

}



.page-title nav {

  background-color: color-mix(in srgb, var(--default-color), transparent 88%);

  padding: 20px 0;

}



.page-title nav ol {

  display: flex;

  flex-wrap: wrap;

  list-style: none;

  margin: 0;

  font-size: 16px;

  font-weight: 600;

}



.page-title nav ol li+li {

  padding-left: 10px;

}



.page-title nav ol li+li::before {

  content: "/";

  display: inline-block;

  padding-right: 10px;

  color: color-mix(in srgb, var(--default-color), transparent 70%);

}



/*--------------------------------------------------------------

# Global Sections

--------------------------------------------------------------*/

section,

.section {

  color: var(--default-color);

  /* background-color: var(--light-text); */

  padding: 40px 0;

  scroll-margin-top: 100px;

  overflow: clip;

}



@media (max-width: 1199px) {



  section,

  .section {

    scroll-margin-top: 66px;

  }

}



/*--------------------------------------------------------------

# Global Section Titles

--------------------------------------------------------------*/

.section-title {

  padding-bottom: 60px;

  position: relative;

}



.section-title h2 {

  font-size: 14px;

  font-weight: 500;

  padding: 0;

  line-height: 1px;

  margin: 0;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: color-mix(in srgb, var(--default-color), transparent 50%);

  position: relative;

}



.section-title h2::after {

  content: "";

  width: 120px;

  height: 1px;

  display: inline-block;

  background: var(--accent-color);

  margin: 4px 10px;

}



.section-title div {

  color: var(--heading-color);

  margin: 0;

  margin: 0;

  font-size: 28px;

  font-weight: 700;

  text-transform: uppercase;

  font-family: var(--heading-font);

}



/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

.hero {

  width: 100%;

  min-height: 100vh;

  position: relative;

  padding: 120px 0 120px 0;

  display: flex;

  align-items: center;

  justify-content: center;

}



.hero-bg {
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  background-size: 400% 400%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  animation: all 15s ease-in-out infinite;
  z-index: 0;
  filter: blur(5px);
}



.hero:before {

  content: "";

  background: radial-gradient(circle at 50% 50%,
      /* rgba(92, 172, 148, 0.5) 0%,  */
      /* rgba(137, 208, 148, 0.5) 20%,  */
      /* rgba(171, 235, 148, 0.5) 40%,  */
      /* rgba(148, 220, 148, 0.5) 60%,  */
      #0d565694,
      rgba(0, 0, 0, 0.696) 90%);
  /* background: color-mix(in srgb, var(--background-color), transparent 10%); */

  position: absolute;

  inset: 0;

  z-index: 2;

}

/* For the animation container */
.social-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* For the animated icons */
.animated-social-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(30, 30, 48, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.animated-social-icon i {
  font-size: 1.5rem;
  color: #fff;
}

/* Subtle floating animation for icons */
@keyframes float {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Position for hero section elements */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* Ensure there's enough space for content and animations */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.container {
  position: relative;
  z-index: 10;
}

/* Transition for hero content */
#heroContent {
  display: none;
  opacity: 0;
  transform: translateY(50px); /* Move it down */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}



.hero .container {

  position: relative;

  z-index: 3;

}

.hero .container .hero-img img {
  width: 100%;
  height: 100%;
  border-radius: 5%;
}

.hero .container .hero-img {
  width: 50%;
  position: relative;
  animation: zoomIn 3s ease-in-out infinite, rotate3d 5s linear infinite;
  z-index: 2;

}

/* 3D Rotate Animation for Image */
@keyframes rotate3d {
  0% {
    transform: perspective(600px) rotateY(0deg);
  }

  30% {
    transform: perspective(600px) rotateY(15deg);
  }

  70% {
    transform: perspective(600px) rotateY(-15deg);
  }

  100% {
    transform: perspective(600px) rotateY(0deg);
  }
}


/* Social Media Icons Section */
.social-icons {
  margin-bottom: 30px;
  /* Adjust the spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* Space between icons */
  /* justify-content: flex-start; */
}

/* Social Media Icon Style */
.social-icon {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  /* Icon size */
  color: white;
  /* White color for icons */
  transition: transform 0.3s, color 0.3s ease;
  /* Smooth transition for hover effect */
  padding: 8px 13px;
  border-radius: 50%;
  background-color: rgba(0, 255, 255, 0.1);
  /* Slight transparent background */
}

/* Social Media Icon Hover Effect */
.social-icon:hover {
  color: #00f9ff;
  /* Neon-like hover color */
  transform: scale(1.1);
  /* Slight grow on hover */
}

/* Specific social media color effects */
.social-icon.facebook:hover {
  color: #3b5998;
  /* Facebook blue */
}

.social-icon.pinterest:hover {
  color: #FF0000;
  /* Twitter blue */
}

.social-icon.linkedin:hover {
  color: #0077B5;
  /* LinkedIn blue */
}

.social-icon.instagram:hover {
  color: #E4405F;
  /* Instagram pink */
}

.social-icon.youtube:hover {
  color: #FF0000;
  /* YouTube red */
}


.hero h1 {
  position: relative;
  display: inline-block;
  margin: 0 0 20px 0;

  font-size: 48px;

  font-weight: 700;

  line-height: 80px;

  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero h1 span {

  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.5);
  color: orangered;
  /* color:#abeb94; */
  /* color:#94f494; */
  font-size: 6rem;

  /* border-bottom: 4px solid var(--accent-color); */

}

/* Styling for the span within the hero title */
.hero-title span {
  position: relative;
  display: inline-block;
}

/* Container for the underline SVG */
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: hidden;
  z-index: 1;
}

/* SVG underline styling */
.underline-svg {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: visible;
}

.underline-path {
  stroke: orange;
  stroke-width: 3;
  stroke-linecap: round;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(255, 51, 51, 0.8));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dashEffect 5s ease-in-out forwards, glowEffect 5s ease-in-out infinite;
}

@keyframes dashEffect {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes glowEffect {
  0% {
    /* filter: drop-shadow(0 0 3px rgba(255, 51, 51, 0.5)); */
    opacity: 0.4;
  }

  50% {
    /* filter: drop-shadow(0 0 12px rgba(255, 51, 51, 0.9)); */
    opacity: 1;
  }

  100% {
    /* filter: drop-shadow(0 0 3px rgba(255, 51, 51, 0.5)); */
    opacity: 0.4;
  }
}

.hero p {

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  margin: 5px 0 30px 0;

  font-size: 22px;

  font-weight: 400;

}



.hero .btn-get-started {

  color: var(--contrast-color);

  background: var(--accent-color);

  font-family: var(--heading-font);

  font-weight: 400;

  font-size: 15px;

  letter-spacing: 1px;

  display: inline-block;

  padding: 10px 28px 12px 28px;

  border-radius: 50px;

  transition: 0.5s;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);

}



.hero .btn-get-started:hover {

  color: var(--contrast-color);

  background: color-mix(in srgb, var(--accent-color), transparent 15%);

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);

}



.hero .btn-watch-video {

  font-size: 16px;

  transition: 0.5s;

  margin-left: 25px;

  color: var(--default-color);

  font-weight: 600;

}



.hero .btn-watch-video i {

  color: var(--accent-color);

  font-size: 32px;

  transition: 0.3s;

  line-height: 0;

  margin-right: 8px;

}

.glightbox-clean .gclose svg {

  width: 50px;

  margin-left: -20px;

  margin-top: 20px;

  height: auto;

}



.hero .btn-watch-video:hover {

  color: var(--accent-color);

}



.hero .btn-watch-video:hover i {

  color: color-mix(in srgb, var(--accent-color), transparent 15%);

}



.hero .animated {

  animation: up-down 2s ease-in-out infinite alternate-reverse both;

}



.hero .hero-waves {

  display: block;

  width: 100%;

  height: 60px;

  position: absolute;

  left: 0;

  bottom: 0;

  right: 0;

  z-index: 3;

}



.hero .wave1 use {

  animation: move-forever1 10s linear infinite;

  animation-delay: -2s;

  fill: var(--default-color);

  opacity: 0.6;

}



.hero .wave2 use {

  animation: move-forever2 8s linear infinite;

  animation-delay: -2s;

  fill: var(--default-color);

  opacity: 0.4;

}



.hero .wave3 use {

  animation: move-forever3 6s linear infinite;

  animation-delay: -2s;

  fill: var(--default-color);

}



@keyframes move-forever1 {

  0% {

    transform: translate(85px, 0%);

  }



  100% {

    transform: translate(-90px, 0%);

  }

}



@keyframes move-forever2 {

  0% {

    transform: translate(-90px, 0%);

  }



  100% {

    transform: translate(85px, 0%);

  }

}



@keyframes move-forever3 {

  0% {

    transform: translate(-90px, 0%);

  }



  100% {

    transform: translate(85px, 0%);

  }

}



@keyframes up-down {

  0% {

    transform: translateY(10px);

  }



  100% {

    transform: translateY(-10px);

  }

}

@media (max-width: 999px) {

  .hero .container {

    margin-top: 10%;

  }

}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------------

# About Section

--------------------------------------------------------------*/
/* About Section Styling */
.about {
  position: relative;
  margin: 0px auto;
  padding: 50px 0;
  /* background: linear-gradient(to left, #052323, #1f1f2b); */
  color: #fff;
  overflow: hidden;
}

/* Particle Background */
.particle-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/img/particles.png') center center / cover no-repeat;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
}

/* About Section Image */
.about-img .image-wrapper {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  border-radius: 15px;
  overflow: hidden;
}

.about-img .image-wrapper:hover {
  transform: scale(1.05);
  /* Slight zoom-in effect */
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

/* About Section Title */
.about-title {
  font-size: 48px;
  font-weight: bold;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: orangered;
  text-shadow: 0px 0px 20px #f441006e;
}

/* .neon-text {
  animation: neon-glow 1.5s ease-in-out infinite alternate;
} */

/* @keyframes neon-glow {
  0% {
    text-shadow: 0px 0px 20px rgba(226, 11, 11, 0.7), 0px 0px 30px rgba(0, 255, 255, 0.7);
  }

  100% {
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.268), 0px 0px 25px rgba(0, 255, 255, 0.5);
  }
} */

/* About Subtitle */
.about-subtitle {
  font-size: 1.5rem;
  color: #052323;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
}

/* About Description */
.about-description {
  font-size: 1rem;
  color: #5a5959;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  color: orangered;
  background-color: transparent;
  border: 2px solid orangered;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.read-more-btn:hover {
  background-color: orangered;
  color: #1f1f2b;
}

.read-more-btn i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------

# Stats Section

--------------------------------------------------------------*/

/* Why choose us Section */
.why-choose-main{
  width: 100%;
  margin: auto;
  padding: 30px 40px;
  /* background-color: #082b2b1c; */
  background: linear-gradient(to left, #052323, #1f1f2b);
}
.why-choose-main  p{
  color: white;
}
.why-choose-container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  max-width: 1500px;
  padding: 40px;
  margin: auto;
}

.why-choose-box {
  position: relative;
  /* background: var(--gradient); */
  /* border-radius: 20px; */
  overflow: hidden;
  padding: 30px;
  height: auto;
  transition: all 0.4s ease;
  /* box-shadow: var(--box-shadow); */
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: flex-start; */
  /* justify-content: flex-start; */
}

.why-choose-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--glass-bg); */
  backdrop-filter: blur(10px);
  opacity: 0.5;
  z-index: 0;
}

.why-choose-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-choose-box:hover .why-choose-icon {
  animation: pulse 1.5s infinite;
}

.why-choose-content {
  position: relative;
  z-index: 1;
  margin: auto;
  margin-left: -30px;
}


.why-choose-title {
  font-size: 1.5rem;
  color: var(--subheading-color);
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-description {
  color: var(--accent-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.why-choose-why-chooses {
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  margin-top: auto;
}

.why-choose-why-choose {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.why-choose-heading {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--subheading-color);
  margin-bottom: 8px;
  position: relative;
  padding-left: 30px;
}

.why-choose-heading::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.why-choose-content {
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.glow-effect {
  position: absolute;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.1;
  width: 150px;
  height: 150px;
  filter: blur(20px);
  border-radius: 50%;
  z-index: 0;
  animation: glow 5s infinite alternate;
}
.why-choose-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.why-choose-content {
  flex: 1; /* Takes available space */
}

.why-choose-image {
  flex: 0.5; /* Adjust size */
  max-width: 300px; /* Adjust image width */
}

.why-choose-image .why-choose-icon i {
  max-width: 100%;
  height: 100%;
  height: auto;
  animation: fadeInUp 1s ease-in-out;
}

.why-choose-image .why-choose-icon {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--accent-color);
  font-size: 80px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.8s ease;
}

.why-choose-image .why-choose-icon::after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  opacity: 0.5;
  animation: ripple 2s infinite;
}

/* Optional: GSAP Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes glow {
  0% {
    opacity: 0.1;
    transform: translateX(0) translateY(0);
  }

  100% {
    opacity: 0.2;
    transform: translateX(50px) translateY(-30px);
  }
}

/* Responsive design */
@media (max-width: 992px) {
  .why-choose-main {
    width: 100%;
    padding: 20px;
  }
  .why-choose-container {
    padding: 0;
  }

  .why-choose-box {
    width: 100%;
    flex-direction: column;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.396);
  }
  .why-choose-box:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .why-choose-image .why-choose-icon {
    width: 150px;
    height: 150px;
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .why-choose-box {
    padding: 20px;
  }

  .why-choose-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .why-choose-title {
    font-size: 1.2rem;
  }

  .why-choose-description {
    font-size: 0.9rem;
  }

  .why-choose-heading {
    font-size: 0.95rem;
  }

  .why-choose-content {
    font-size: 0.85rem;
  }
  .why-choose-image .why-choose-icon {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
}

/* community section Start*/

.community-section {
  max-width: 1800px;
  width: 100%;
  margin: auto;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.community-container {
  position: relative;
  background: var(--gradient);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.community-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  opacity: 0.6;
  z-index: -1;
}

.hexagon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
}

.hexagon {
  position: absolute;
  background: var(--accent-color);
  opacity: 0.05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 15s infinite ease-in-out;
}

.hex-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.hex-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 100px;
  animation-delay: 2s;
}

.hex-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: -50px;
  animation-delay: 4s;
}

.hex-4 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: 20%;
  animation-delay: 6s;
}

.hex-5 {
  width: 180px;
  height: 180px;
  top: 20%;
  left: 80%;
  animation-delay: 8s;
}

.community-header {
  text-align: center;
  padding: 60px 40px 30px 40px;
  position: relative;
}

.community-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--subheading-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.community-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.community-description {
  color: var(--contrast-color);
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 auto 40px auto;
  position: relative;
}

.community-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 40px 60px 40px;
  position: relative;
}

.community-feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.community-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.5);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  opacity: 0.6;
  animation: pulse 2s infinite;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--subheading-color);
  margin-bottom: 15px;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.join-section {
  text-align: center;
  padding: 60px 40px 20px 60px;
  position: relative;
}

.cta-container {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.7), rgba(42, 103, 103, 0.7));
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(30px);
  border-radius: 50%;
  z-index: 0;
}

.glow-1 {
  top: -150px;
  left: -100px;
  animation: glow 8s infinite alternate ease-in-out;
}

.glow-2 {
  bottom: -150px;
  right: -100px;
  animation: glow 8s infinite alternate-reverse ease-in-out;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--default-color);
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--contrast-color);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(171, 235, 148, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(171, 235, 148, 0.4);
}

.cta-button:hover::before {
  width: 100%;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

@keyframes glow {
  0% {
    opacity: 0.05;
    transform: translateX(0) translateY(0);
  }

  100% {
    opacity: 0.15;
    transform: translateX(30px) translateY(-20px);
  }
}

/* Responsive design */
@media (max-width: 992px) {
  .community-section {
    padding: 40px 00px;
  }

  .community-header {
    padding: 50px 20px 20px 20px;
  }

  .community-title {
    font-size: 2.4rem;
  }

  .community-description {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .community-features {
    padding: 20px 20px 50px 20px;
  }

  .join-section {
    padding: 50px 20px;
  }

  .cta-container {
    padding: 30px 20px;
  }

  .cta-heading {
    font-size: 1.8rem;
  }

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

@media (max-width: 768px) {
  .community-title {
    font-size: 2rem;
  }

  .community-description {
    font-size: 1rem;
  }

  .community-feature {
    min-width: 220px;
    padding: 25px;
  }

  .feature-icon {
    font-size: 2rem;
    height: 60px;
    width: 60px;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .community-title {
    font-size: 1.8rem;
  }

  .community-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .community-feature {
    min-width: 100%;
  }

  .cta-heading {
    font-size: 1.6rem;
  }

  .cta-text {
    font-size: 0.95rem;
  }

  .community-social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* community section END */