#header{
    font-family: 'Voltaire';
    color: white;
    font-size: large;    
 }
 .custom-toggler.navbar-toggler {
    border-color: black;
    
    background-color: white;
 }
 .sticky-top{
    background-color: white;
 }
.nav-link{
    color: #040A34;
    
}
.active{
    color: black;
    font-size: x-large;
    text-decoration: underline;
    
}
.nav-link:hover {
    color: #ff7a59;
    transition: 0.7s;
    font-size: xx-large;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  /* Replace with your actual image */
  background-image: url('hero.webp');
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: 27% 50%;
  
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 50px;
  border-radius: 27px;
  margin: 20px auto;
  max-width: 90%;
}

.split-section {
  width: 100%;
  height: 100vh; /* Full viewport height */
  background-color: white;
  display: flex;
  flex-direction: column;
}

.top-half {
  flex: 3; /* Takes half of the section */
  background-image: url('two.webp');
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: 50% 37%;
}

.bottom-half {
  flex: 1; /* Takes the other half */
  display: flex;
  justify-content: center;
  text-align: justify;
  padding: 40px;
  
}
  

@media (max-width: 768px) {
  .top-half {
      height: 200vh; /* Adjusts for smaller screens */
  }

  .bottom-half {
      height: auto;
      padding: 20px;
  }

  .bottom-half p {
      font-size: 1rem;
      padding: 0 20px;
  }
}

#three{
  position: relative;
  width: 100%;
  height: auto;  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: 27px;
  margin: 20px auto;
  max-width: 90%;
  background-color: #F7795F;

}
.text-center{
  justify-content: center;
  align-items: center;
  text-align: center;
}
.text-center h1{
  text-align: left;
}
.text-center p{
  text-align: left;
}
.text-center a{
  text-align: left;
  align-items: left;

}
.video-thumbnail {
  flex: 1;
  position: relative;
}
.video-thumbnail img {
  border-radius: 27px;
  max-width: 100%;
  height: auto;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.play-button::before {
  content: '\25B6';
  font-size: 24px;
  color: #F7795F;
}

.why-choose-us {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: black;
  padding: 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-family: Volt;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.feature img {
  width: 150px;
  height: auto;
  border-radius: 27px;
  object-fit: cover;
  
}

.feature img:hover{
  transform: scale(1.2);
}

.closing-text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .features-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .feature {
      flex-direction: column;
      text-align: center;
  }

  .feature img {
      width: 100%;
      max-width: 300px;
  }
}

.testimonial-section {
  background: #ff7a59; /* Background color */
  padding: 60px 20px;
  text-align: center;
}

.testimonial-title {
  color: white;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: 27px;
  width: 300px;
  padding: 20px;
  
  text-align: left;
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 27px;
  margin-bottom: 15px;
}


.testimonial-card .testimonial-content p {
  font-size: 16px;
  line-height: 1.5;
  color: black;
}

.faq-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.faq-title {
  color: black;
  font-size: 36px;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: #ff7a59;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: block;
  padding: 15px 20px;
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: bold;
  color: white;

  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(to bottom, #FF7A59, #FFFFFF);
  color: black;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: white;
  font-size: 16px;
  color: black;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Hide checkboxes */
input[type="checkbox"] {
  display: none;
}

/* Show answer when checkbox is checked */
input[type="checkbox"]:checked + .faq-question + .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-cards {
      flex-direction: column;
      align-items: center;
  }

  .testimonial-card {
      width: 90%;
  }
}
.footer {
  background: #ff7a59; /* Dark background */
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-section h3 {
  color: black; /* Brand color */
  margin-bottom: 15px;
  font-family: 'Voltaire';

}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: black;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(1); /* Make icons white */
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom, #FF7A59, #FFFFFF);
  color: black;
  font-size: 27px;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 27px;  
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-section {
      text-align: center;
  }

  .social-icons a {
      margin: 5px;
  }
}

/* Floating Social Sidebar */
.social-sidebar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

/* Hide Checkbox */
.toggle-checkbox {
  display: none;
}

/* Toggle Button */
.toggle-btn {
  
  background: black;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  width: 45px;
  height: 45px;
  font-size: 20px;
}

/* Social Icons (Initially Hidden) */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

/* Expand on Click */
.toggle-checkbox:checked ~ .social-icons {
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Icon Buttons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-decoration: none;
  color: black;
}

/* Bootstrap Icons Inside */
.social-icon i {
  font-size: 20px;  /* Proper size */
  line-height: 1;   /* Ensures no misalignment */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensures full icon coverage */
  height: 100%;
}

/* Hover Effects */
.facebook:hover {
  background: #FF7A59;
  color: white;
}

.instagram:hover {
  background: #ff7a59;
  color: white;
}

.youtube:hover {
  background: #ff7a59;
  color: white;
}

.whatsapp:hover {
  background: #ff7a59;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .toggle-btn {
      width: 45px;
      height: 45px;
      font-size: 20px;
  }

  .social-icon {
      width: 40px;
      height: 40px;
  }

  .social-icon i {
      font-size: 20px;
  }
}




.text1{
    font-family: 'Voltaire';
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);

}
.text3{
  font-family: 'Voltaire';
  color: black;
  font-size: clamp(2rem, 4vw, 3rem);

}
.text5{
  font-family: 'Voltaire';
  color: white;
}
.text7{
  font-family: 'Voltaire';
  color: black;
}


.text2{
    font-family: 'Poppins';
    color: white;
    font-size: 1.1rem;

}
.text4{
  font-family: 'Poppins';
  color: black;
  font-size: 1.1rem;

}
.text6{
  font-family: 'Poppins';
  color: black;
  

}







#main{
    background-color: white;
}

.intro{
    background-color: white;
}


.banner{
  background: linear-gradient(to bottom,#FF7A59,#FFFFFF);

    text-align: center;
    color: black;
    font-family: 'Voltaire';
    font-size: 40px;
    padding: 20px;
    
}
.banner2{
  background: linear-gradient(to bottom,#FFFFFF,#FF7A59);

    text-align: center;
    color: black;
    font-family: 'Voltaire';
    font-size: 40px;
    padding: 20px;
    
}

.card{
    background-color: #ff7a59;
    color: white;
    border-radius: 27px;
}

.servicesblock{
  background: #FFFFFF; /* Background color */
}

.servicesblock a:link {
    color: #8BD8BD;
    text-decoration: none;
    
  }
  
  /* mouse over link */
.servicesblock a:hover {
    color: #040A34;
  }
  
.btn {
    background-color: #ff7a59; /* Green */
    border: none;
    color: white;
    border-radius: 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins';
    font-weight: bold
  }
.btn:hover{
  background: linear-gradient(to top, #FF7A59, #FFFFFF);
    color: black;
    transition: 0.7s;
    font-size: x-large;
}
.btn1 {
  background-color: white; /* Green */
  border: none;
  color: black;
  border-radius: 27px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-family: 'Poppins';
  font-weight: bold
}
.btn1:hover:hover{
  background: linear-gradient(to bottom, #FF7A59, #FFFFFF);
  color: black;
  transition: 0.7s;
  font-size: x-large;
}
a {
  text-decoration: none;
}

.cd1:hover{
  color: black;
  transition: 0.7s;
}
.cd1{
  color: #FFFFFF;
}

.centerimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;  
}
.centerimg2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 69%;  
}

.padding3em {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
    background-color: #F7795F;
    border-radius: 27px;
    padding: 50px;
    
}

@media screen and (max-width: 720px) {
    #introimg {
      width: 70%;
    }
  }
  
  #introimg{
    margin:10px 0;
  }

#bdr{
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  width: 90%; 
}
  
.ot{
  background-color: #040A34;
  font-family: Georgia, 'Times New Roman', Times, serif;
  max-width: fit-content;
  padding: 16px;
  border-radius: 27px;
}
.ot a{
  color: yellow;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.img404{
border-radius: 27px;
width: 100%;

}