
body {
  margin: 0;
  padding: 0;
  background-color: #08A4BD;
  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; }










.wrapper {
  max-width: 1200px;  /* limit the width */
  margin: 0 auto;     /* center left and right */
  padding: 0 25px;    /* breathing room on smaller screens */
  overflow-x: hidden;
}
  
/*** MOBILE HEADER HERO ******/

/*** MOBILE HEADER ***/

.desktop-header-hero_background {
  display: none; /* hide by default on mobile */
}
.desktop-header-hero {
  display: none; /* hide by default on mobile */
}
.desktop-section1 {
  display: none; /* hide by default on mobile */
  
}



.mobile-header-hero_background {
  background: #01172F;
  background: linear-gradient(180deg, rgba(1, 23, 47, 1) 8%, rgba(44, 122, 171, 1) 70%, rgba(8, 164, 189, 1) 100%);
}
.mobile-header-hero {
    margin: 0px 0px 25px 0px;  
  padding: 0 25px;   
  overflow-x: hidden;
  display: block;
}
.mobile-header {
  display: flex;  
  overflow: hidden;  
  width: 100%;
  height: 70px;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #fff;
 width: 100vw;              /* full viewport width */
  margin-left: calc(-50vw + 50%); /* break out of wrapper */
  



}
.header-section1  {
  color: #FFD166;
padding-left: 25px;
  flex: 50%;
}
.header_logo {
  height: 40px;
  width: auto;
  flex: 50%;
  object-fit: cover;
}
.logo {
  font-size: 35px;    
  color: #fff;        
  letter-spacing: 2px;  
  font-family: 'Shrikhand', cursive; 
  text-transform: none;  
  
  padding: 0px -10px 0px 0px;
}
.header-section2  {
  display: flex;
  justify-content: center;  
  align-items: center;     
  gap: 12px;                
      height: 100%;  
        padding-right: 25px;
}

.header-section2_button {
 background-color: #fff;
 color: #2a2a2a;
 padding: 10px;
 border-radius: 25px;
 

}
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;       /* same as button height */
  width: 40px;
  font-size: 60px;    /* adjust as needed */
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.nav {
  position: fixed;
  top: 0;
  right: -300px;        
  width: 250px;
  height: 100%;
  background: #2a2a2a;
  padding: 50px 20px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  transition: right 0.3s ease;
}
.nav.active {
  right: 0;
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav li {
  margin: 20px 0;
}
.nav a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 18px;
}
.menu-close {
  background: none;
  border: none;
  color: #f1f1f1;
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.mobile-hr {
    border: none;
  border-top: 1px solid #ccc; /* line color */
  width: 100vw;              /* full viewport width */
  margin-left: calc(-50vw + 50%); /* break out of wrapper */
}

/*** MOBILE HERO ***/


.hero {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  margin: 70px 0px 0px 0px;   
}


.hero-section1 h1 {
  color: #FFF8F0;
  font-size: 70px;
  margin: 0px 0px 20px 0px;
  padding: 0;
  line-height: 70px;
  letter-spacing: 1px;
}

.hero-section1 p {
  color: #FFF8F0;
  margin: 20px 0px 20px 0px;
  font-size: 20px;
  font-weight: 100;
  padding: 0px 0px 10px 0px;
   line-height: 30px;
  letter-spacing: 0px;
}

.hero-button {
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 5px 20px 5px 20px;
   font-family: 'Akshar', sans-serif;
  font-size: 20px;
  border-radius: 10px;
}

.hero-button:hover {
  color: #fff;
  background: #E0AED0;
  border: 2px solid #E0AED0;
}


.hero-section2 {
  flex: 40%;
  margin: 30px 50px 0px 0px;  
}



.form-container {
  margin: 30px 0px 30px 0px;
  padding: 10px;
  background-color: transparent;
  border: solid 1px #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.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;
}

.submit-btn:hover {
  color: #fff;
  background: #E0AED0;
  border: 2px solid #E0AED0;
}
/***** HERO SECTION **********/
  
/***** SECTION 1 *************/
.section1 {
 padding-top: 25px;
}
.section1-h2 {
  margin-top: 60px;
 font-size: 40px;
 color: #fff;
 text-align: center;
 margin: 0px;
 line-height: 40px;
 letter-spacing: 1;
}
.section1-p {
  color: #fff;
  text-align: center;
   margin-bottom: 40px;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 30px;
}


.mobile-section1_wrapper {
  max-width: 1200px;  /* limit the width */
  margin: 40px 30px 20px 30px;     /* center left and right */
  overflow-x: hidden;
}



.slider {
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
}

.slides {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}


.slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 8px 6px -2px #046E8F;
}
.slide-top1, .slide-top2, .slide-top3, .slide-top4 {
  font-size: 30px;
 
  color: #fff;
  padding: 0%;
  margin: 0%;
  border-radius: 10px 10px 0px 0px;
  width: 100%;
}
.slide-top1 {
  background-color: #D6F6DD;
}
.slide-top2 {
  background-color: #ACECF7;
}
.slide-top3 {
  background-color: #F4989C;
}
.slide-top4 {
  background-color: #DAC4F7;
}

.slide-bottom1, .slide-bottom2, .slide-bottom3 , .slide-bottom4 {
  font-size: 20px;
  background-color: #046E8F;
  color: #fff;
  padding: 0%;
  margin: 0%;
  width: 100%;
}
.slide-bottom1 {
  background-color: #D6F6DD;
}
.slide-bottom2 {
  background-color: #ACECF7;
}
.slide-bottom3 {
  background-color: #F4989C;
}
.slide-bottom4 {
  background-color: #DAC4F7;
}
.slide h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 0%;
  padding: 20px 0px 10px 0px;
  color: #323334;
  line-height: 40px;
  letter-spacing: 1;
}

.slide h4 {
  font-size: 35px;
  font-weight: 600;
  margin: 0%;
  padding: 0px 0px 20px 0px;
  color: #323334;
   line-height: 40px;
  letter-spacing: 1;
}
.slide ul {
  align-self: flex-start; /* moves paragraph to left side */
  text-align: left;
  line-height: 50px;
  padding: 20px 0px 0px 10px;
  margin: 0%;
  list-style: none;
}
.slide li {
  font-size: 25px;
  line-height: 2;
}
.section1-viewmore {
  align-self: flex-start; /* moves paragraph to left side */
  text-align: left;
  padding: 1px 10px 0px 10px;
}
.section1-button {
  font-family: 'Akshar', sans-serif;
  display: inline-flex;  
  text-decoration: none;
  font-size: 15px;
  background-color: transparent;
  color: #01172F;
  padding: 10px 10px 10px 10px;
  margin-left: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}



/***** SECTION 1 ****************/

/***** SECTION 2 ****************/

.main-two {
  padding: 80px 20px 30px 20px;
}
.main-two h2 {
  font-size: 25px;
  color: #1F3B4D;
  padding: 0px 0px 0px 0px;
}
.main-two h3 {
  color: #1F3B4D;
  padding: 0px;
  margin-top: 0px;
}
.main-two h4 {
  font-size: 18px;
  color: #F5A623;
}
.main-two p {
  color: #2C2C2C;
  font-weight: 300;
  font-size: 15px;
  margin: 0;
  padding: 0px 0px 0px 0px;
  line-height: 30px;
  letter-spacing: 1px;
}
.main-two_button {
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  background-color: #6A5ACD;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 30px 8px 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.main-two_button:hover {
  background-color: #ffffff;
  color: #6A5ACD;
  animation: bounce 0.3s ease;
}
.main-two_button:active {
  animation: bounce 0.3s ease;
}
@keyframes bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.8); }
  100% { transform: scale(1); }
}
.main-two_hr {
  border: 1px solid #ffffff; 
  margin: 80px;
}

/***** SECTION 2 ****************/

/***** SECTION 3 ****************/

.section3 {
  background: url("picture/background.png") no-repeat center center fixed;
   background-size: 200% 200%;  /* width height in px */
}
.section3 {
  padding: 50px 0px 25px 0px;
}
.section3-div1_img {
  padding: 0;
  margin: 0;
  height: 250px;
  max-height: 250px;
  width: 100%;
  max-width: 100%;
  box-shadow: 50px -25px 0px 0 #4A90E2;
  border-radius: 0px;
  object-fit: cover;
}
.section3-div1 {
  background-color: #4A90E2;
  margin: 20px 20px 0px 20px;
  border: 3px solid #1F3B4D;
}
.section3-div1 h3 {
  font-size: 45px;
  color: #1F3B4D;
  padding: 0px 30px 0px 30px;
}
.section3-div1 p {
  font-size: 20px;
  color: #ffffff;
  padding: 0px 30px 30px 30px;
}
.section3-div2_img {
  padding: 0;
  margin: 0;
  height: 250px;
  max-height: 250px;
  width: 100%;
  max-width: 100%;
  box-shadow: -50px -25px 0px 0 #4A90E2;
  border-radius: 0px;
  object-fit: cover;
}
.section3-div2 {
background-color: #4A90E2;
  margin: 20px 20px 0px 20px;
}
.section3-div2 h3 {
  font-size: 45px;
  color: #2C2C2C;
  padding: 0px 30px 0px 30px; 
}
.section3-div2 p {
  font-size: 20px;
  color: #2C2C2C;
  padding: 0px 30px 30px 30px;
}
.section3-div3_img {
  padding: 0;
  margin: 0;
  height: 250px;
  max-height: 250px;
  width: 100%;
  max-width: 100%;
  box-shadow: 50px -25px 0px 0 #4A90E2;
  border-radius: 0px;
  object-fit: cover;
}
.section3-div3 {
  background-color: #4A90E2;
  margin: 20px 20px 0px 20px;
}
.section3-div3 h3 {
  font-size: 45px;
  color: #fff;
  padding: 0px 30px 0px 30px;
}
.section3-div3 p {
  font-size: 20px;
  color: #fff;
  padding: 0px 30px 30px 30px;
}
 
/***** SECTION 3 ***************/

/***** BODY ******************************************/ 


/***** FOOTER ****************************************/ 
  
.home-footer {
  background-color: #6A5ACD;
  padding: 30px 20px 0px 20px;
}  
.home-footer h4, h2{
  font-size: 20px;
  color: #ffffff;
}
.home-footer p {
  color: #ffffff ;
  margin: 10px 0px 10px 0px;
} 
.home-footer_bottom {
  border-top: 1px solid #ffffff;
}
.home-footer ul {
  color: #000;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-footer ul li {
  margin: 10px 0px 10px 0px;
}
.home-footer ul li a {
  color: #ffffff ;
  text-decoration: none;
}
.home-footer_copyright {
  padding: 100px 0px 10px 0px;
  display: flex;
  color: #ffffff;
  align-items: center;
  justify-content: center;
}
* {
  outline: 0px solid red; 
}

/***** FOOTER ********************/ 


/****************************** TABLET ****************************/
@media (max-width: 480px)  {
  

}

/****************************** TABLET ****************************/
@media (max-width: 768px) {
  

}


/****************************** LAPTOP ****************************/
@media (max-width: 1024px) {
  

}


/****************************** DESKTOP ****************************/


@media (min-width: 1200px)  {

.mobile-header { 
  display: none;
}

.home-footer {
  display: none;
}
.section3 {
  display: none;
}
.section1 {
  display: none; /* hide by default on mobile */
}
.mobile-header-hero_background {
  display: none;
}
.mobile-header-hero {
  display: none;
}






/*** DESKTOP HEADER HERO ******/

.desktop-header-hero_background {
  background: #01172F;

   display: block;  
  background: linear-gradient(180deg, rgba(1, 23, 47, 1) 8%, rgba(44, 122, 171, 1) 70%, rgba(8, 164, 189, 1) 100%);
}
.desktop-header-hero {
  max-width: 1200px;
  margin: 0px 0px 50px 0px;  
  padding: 0 90px;   
  overflow-x: hidden;
  display: block;
}

/*** DESKTOP HEADER ***/

.desktop-header {
 padding: 0%;
  display: flex;  
  align-items: center;
  justify-content: space-between;
  margin: 0%;          
}

.desktop-header-section1 {
color: #FFF;
  padding: 0;
  font-size: 15px;
}

.desktop-logo {
  font-family: 'Shrikhand', cursive;
  letter-spacing: 2px;
  font-size: 30px;
  font-weight: 300;
}

.desktop-header-section2 {
  display: flex;  
  align-items: center;
  flex: 1;               
  justify-content: flex-end; 
}

.desktop-nav {
  margin-right: auto;
  font-weight: 100;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav li {
  margin-left: 40px;
}

.desktop-nav a {
  font-family: 'Akshar', sans-serif;
  text-decoration: none;
  font-weight: 100;
  color: #FFF;
  font-size: 20px;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 4px;
}

.desktop-nav a:hover {
  color: #BCBCBC;
  border-bottom: 2px solid #4A90E2;
}

.desktop-header_button {
  font-family: 'Akshar', sans-serif;
  display: inline-flex;  
  text-decoration: none;
  font-size: 20px;
  background-color: transparent;
  color: #fff;
  padding: 10px 10px 10px 10px;
  margin-left: 10px;
  border-radius: 10px;
  font-weight: 100;
}

.desktop-header_button {
  margin-left: 20px;
}

.desktop-header_button:hover {
  background: #4A90E2;
}



/*** DESKTOP HEADER ***/


/*** DESKTOP HERO ***/

.hero {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  margin: 50px 0px 5px 0px;   
  padding: 0%;
  align-items: center;
}

.hero-section1 {
  flex: 60%;
  padding: 0px 20px 0px 0px;
}

.hero-section1 h1 {
  color: #FFF8F0;
  font-size: 70px;
  margin: 0px;
  padding: 0;
  line-height: 70px;
  letter-spacing: 1px;
}

.hero-section1 p {
  color: #FFF8F0;
  margin: 0px 0px 20px 0px;
  font-size:28px;
  font-weight: 100;
  padding: 0px;
  line-height: 40PX;
  letter-spacing: 0px;
}

.hero-button {
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 15px 50px 15px 50px;
   font-family: 'Akshar', sans-serif;
  font-size: 30px;
  border-radius: 10px;
}

.hero-button:hover {
  color: #fff;
  background: #E0AED0;
  border: 2px solid #E0AED0;
}


.hero-section2 {
  flex: 40%;
  margin: 0px 0px 0px 20px;  
}

.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);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #fff;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.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;
}

.submit-btn:hover {
  color: #fff;
  background: #E0AED0;
  border: 2px solid #E0AED0;
}

/*** DESKTOP HERO ***/

/*** DESKTOP HEADER HERO ******/



/*** DESKTOP SECTION1 ******/

.desktop-section1 {
  display: block; 
  margin: 50px 0px 50px 0px;
}

.desktop-section1-div {
  display: flex;
  gap: 50px;
  padding: 0px 40px 0px 40px;

}
.desktop-section1_card {
  flex: 1;
  border-radius: 7px;
   overflow: hidden;  
  padding: 0%;
  color: #fff;
  border-bottom: none; /* no border */
  box-shadow: 0 8px 6px -2px #046E8F;
  text-align: left;
   flex: 1; 
 
}
.desktop-section1_upper1 {
  padding: 10px;
  background: #D6F6DD;
   text-align: center;
   flex: 1;
  
}
.desktop-section1_upper2 {
  padding: 10px;
  background: #ACECF7;
   text-align: center;
   flex: 1;
  
}
.desktop-section1_upper3 {
  padding: 10px;
  background: #F4989C;
   text-align: center;
   flex: 1;
  
}
.desktop-section1_upper4 {
  padding: 10px;
  background: #DAC4F7;
   text-align: center;
   flex: 1;
  
}
.desktop-section1_lower {
  padding: 10px;
  background-color: #fff;
}


.desktop-section1 h2 {
  text-align: center;
  font-weight: 50;
  margin: 0px;
  color: #ffffff;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 1;

}
.desktop-section1 p {
  font-weight: 200;
   text-align: center;
  font-size: 25px;
  padding: 30px 0px 80px 0px;
  margin: 0px 80px;
  color: #fff;
    line-height: 35px;
  letter-spacing: 0;
}
.desktop-section1_card h3{
  font-size: 35px;
  color: #323334;
  margin: 0%;
  font-weight: 600;
}
.desktop-section1_card h4{
  font-size: 30px;
  color: #323334;
  margin: 0%;
  font-weight: 600;
}

.desktop-section1 li {
  color: #323334;
  font-size: 20px;
  line-height: 50px;
  letter-spacing: 0.5px;
  font-weight: 400;
  padding: 0px 10px 0px 10px; 
}

.desktop-section1-list {
  list-style: none;
  margin: 0%;
  padding: 0%;
 flex-grow: 1;
}

.desktop-section1-list_button {
  display: block;
  font-weight: 400;
  color: #2a2a2a;
  background-color: #fff;
  border: 2px solid #BCBCBC;
  padding: 5px 30px 5px 30px;
   font-family: 'Akshar', sans-serif;
  font-size: 20px;
  border-radius: 25px;
  margin: 20px auto;
  justify-content: center;
}


/***** DESKTOP SECTION 1 *************/


/***** DESKTOP SECTION 22 *************/

.section22 {
  justify-items: center;
  padding: 50px 50px 50px 50px;
}
.section22-div1 {
  background: #fff;
  padding: 20px 20px 20px 20px;
  margin: 50px 0px 150px 0px;
  border-radius: 150px;
  text-align: center;
  width: 100%;
  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 *************/





/***** DESKTOP SECTION 3 *************/

.section2 {
  display: flex;
  background-color: #fff;
   width: 100%;        /* spans the full viewport */
  position: relative;   /* required for left/right adjustment */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 90px 0px 50px 0px;
  text-align: center;
  justify-content: center;
}
.section2 h2 {
  font-size: 505px;
  color: #1F3B4D;
  padding: 0px 0px 0px 0px;
  font-weight: 800;
}
.section2 h3 {
  color: #1F3B4D;
  padding: 0px;
  margin-top: 0px;
}
.section2 h4 {
  font-size: 30px;
  color: #29e48c;
}
.section2 p {
  color: #000000;
  font-weight: 500;
  font-size: 30px;
  margin: 0;
  padding: 0px 0px 0px 0px;
}
.section2-button {
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  background-color: #6A5ACD;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 50px 10px 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.section2-button:hover {
  background-color: #ffffff;
  color: #6A5ACD;
  animation: bounce 0.3s ease;
}
.section2-button:active {
  animation: bounce 0.3s ease;
}
@keyframes bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.8); }
  100% { transform: scale(1); }
}
.section2-hr {
  border: 1px solid #ffffff; 
  margin: 80px;
}
.section2-div1 {
   flex: 40%;
}
.section2-div2 {
 flex: 60%;
 padding: 0px 25px 0px 25px;
}
.section2 > div {
  max-width: 1200px;         /* your wrapper width */
  margin: 0 auto;            /* center it */
  display: flex;             /* layout */
  justify-content: center;
  text-align: center;
}
/***** DESKTOP SECTION 2 *************/

/***** FAQS SECTION *************/

.faqs {
    display: flex;
    flex-direction: row;
}
.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 0px 50px 0px;
  background: #205781;
  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;
}
* {
  outline: 0px solid red; 
}








}











