body {
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
}


body,
p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

strong {
  font-weight: 700;
}


h1 {
  font-family: "Akshar", sans-serif;
  font-weight: 700;
}

h2 {
  font-family: "Akshar", sans-serif;
  font-weight: 600;
}

h3 {
  font-family: "Akshar", sans-serif;
  font-weight: 500;
}

h4 {
  font-family: "Akshar", sans-serif;
  font-weight: 400;
}


* {
  outline: 0px solid red;
}







.header {
    display: none;
  }


  /* Show mobile header */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px 0px;
  
    z-index: 100;
  }

  .logo {
  width: 150px;
  height: auto;
}

 

  /* Hamburger button */
  .mobile-menu-button {
    display: inline-block;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    background-color: #f8f8f8;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: #08A4BD;
    margin: 5px 0;
    transition: 0.3s;
  
  }

  .mobile-menu-button.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 99;
    background-color: #000;
  }

  .mobile-nav.active {
    display: flex;
    background-color: #000;
  }

  .mobile-nav a {
    font-size: 20px;
    color: #08A4BD;
    padding: 10px 0;
    text-decoration: none;
  }

  .mobile-nav a:hover {
    color: #08A4BD;
  }




























  




@media (min-width: 1025px) {

.mobile-header  {
  display: none;
}

.mobile-nav {
  display: none;
}



/* GLOBAL */

h2 {
   text-align: center;
  font-weight: 500;
  margin: 0px;
  color: #ffffff;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 1;
}

.p {
  font-weight: 100;
  text-align: center;
  font-size: 25px;
  padding: 20px 0px 50px 0px;
  margin: 0px 80px;
  color: #fff;
  line-height: 35px;
  letter-spacing: 0;

}















/* HEADER HERO */

.header-hero_background {
 
 display: block;
  background-image: url('picture/home-background.png');
  background-repeat: no-repeat;
  background-position: center top; /* anchor the image */
  background-size: 100% auto; /* same width across all pages */
  
 
  min-height: 50vh; /* keeps full height look even if less content */
}

.header-hero {
  max-width: 1200px;
  padding: 0px 75px;
  margin: 0px auto;
  overflow-x: hidden;
  display: block;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 20px;
}

.logo {
  width: 230px;
  height: auto;
}


.header-nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}


.nav {
  display: flex;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.nav li {
  margin: 0;
}


.header-nav button {
  margin-left: auto;
}

.nav a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 100;
  color: #3d3d3d;
  font-size: 22px;
  padding-bottom: 4px;
}

.nav a:hover {
  color: #08A4BD;
  border-bottom: 2px solid #08A4BD;
}

button {
  --primary-color: #08A4BD;
  --secondary-color: #fff;
  --hover-color: #24c3db;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

button:hover {
  background-color: var(--hover-color);
}

button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}

/* HERO */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 200px 0px 200px 0px;
}

.hero h1 {
  font-size: 95px;
  color: #08A4BD;
  margin: 0;
}

.hero h4 {
  margin: 0px 0px 20px 0px;
  font-size: 30px;
  color: #2a2a2a;
}


.hero P {
  margin: 20px;
  font-size: 15px;
  color: #000000;
}

.hero-button {

  --color: #08A4BD;
  padding: 0.8em 1.7em;
  background-color: transparent;
  border-radius: .3em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: .5s;
  font-weight: 400;
  font-size: 25px;
  border: 1px solid;
  font-family: inherit;
  text-transform: uppercase;
  color: var(--color);
  z-index: 1;
}

.hero-button::before,
.hero-button::after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--color);
  transition: 1s ease;
}

.hero-button::before {
  top: -1em;
  left: -1em;
}

.hero-button::after {
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}

.hero-button:hover::before,
.hero-button:hover::after {
  height: 410px;
  width: 410px;
}

.hero-button:hover {

  color: #fff;
}

.hero-button:active {
  filter: brightness(.8);
}







/* SECTION1 */
.section1_background {
  background-color: #08A4BD;
  padding: 60px 0px 100px 0px;
  
}



.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* --- Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- Feature Card --- */
.feature-card {
  background-color: #ffffff;
  border: 1px solid #e8f0f3;
  border-radius: 16px;
  padding: 20px 20px;
  text-align: left;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* --- Icon --- */
.icon {
  width: 50px;
  height: 50px;
  background-color: #e8f6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.icon img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease;
}

/* Icon Hover Animation */
.feature-card:hover .icon {
  background-color: #007bff15;
  transform: scale(1.1);
}

.feature-card:hover .icon img {
  transform: scale(1.2);
}

/* --- Text --- */
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #007bff;
}





/***** DESKTOP SECTION 22 *************/

.section22 {
  max-width: auto;
  margin: 0px auto;
  overflow-x: hidden;
  display: block;
}




.section22-div1 {
  background: #fff;
  padding: 20px 20px 20px 20px;


  text-align: center;

  line-height: 1px;



}

.section22-div1 h2 {
  font-size: 60px;
  color: #01172F;
}

.section22-div1 p {
  font-size: 28px;
  font-weight: 300;
  line-height: 1px;
  color: #01172F;
}





/***** DESKTOP SECTION 22 *************/







/***** FAQS SECTION *************/

.faqs {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0px auto;
  overflow-x: hidden;
  padding: 100px 75px;
}

.faqs-section1 {
  flex: 60%;
  padding: 30px;
}

.faqs-section1 h2 {
  font-size: 40px;
}

.accordion {
  background-color: transparent;
  font-size: 30px;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border-bottom: solid 1px white;
  border: none;

  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\02795';
  /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;

}

.panel p {
  font-size: 40px;
}


.faqs-section2 {
  flex: 40%;
  padding: 50px;
}

.faqs-form-container {
  max-width: 70%;
  margin: auto;
  padding: 0px 30px 30px 30px;
  background-color: transparent;
  border: solid 1px #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faqs-form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

.faqs-form-group {
  margin-bottom: 20px;
}

.faqs-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}

.faqs-form-group input,
.faqs-form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.faqs-form-group textarea {
  resize: vertical;
}

.faqs-submit-btn {
  border: 1px solid #fff;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  width: auto;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.faqs-submit-btn:hover {
  color: #fff;
  background: #E0AED0;
  border: 2px solid #E0AED0;
}





/***** footer *************/

.desktop-footer {
  display: flex;
  width: 100vw;
  /* spans the full viewport */
  position: relative;
  /* required for left/right adjustment */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 50px 75px 50px 75px;
  background: #f7fcff;
  text-align: center;
  justify-content: center;




}


.desktop-footer_content {
  display: flex;
  justify-content: space-between;
  /* spread divs across entire width */
  align-items: center;
  width: 100%;
  /* make wrapper span full footer */
  margin: 0;
  /* remove centering margin */
  flex-wrap: nowrap;
  /* keep all divs in one row */
}

.desktop-footer_content>div {
  flex: 1;
  /* each div takes equal space */
  text-align: center;
  padding: 0 20px;
  /* optional: spacing inside each div */
  box-sizing: border-box;
}

.desktop-footer h1 {
  color: #6A5ACD;
}
}






























































/****************************** TABLET ****************************/
@media (max-width: 768px) {}


/****************************** LAPTOP ****************************/
@media (max-width: 1024px) {}