* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  /* font-family: 'Lora', serif; */
  font-family: 'Poppins', sans-serif;
  user-select: none;
  /* Prevent text selection */
  cursor: default;
}

/* ==============Hero section======== */
.hero-slider {
  position: relative;
  height: 90vh;
  /* Adjusts based on screen size */
  min-height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-controls span {
  cursor: pointer;
  font-size: 2em;
  color: white;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
}

/* Navbar over image */
#navbar {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 1.6);
  z-index: 2;
  opacity: 10px;
}

/* Shrink state: transparent + smaller */
#navbar.shrink {
  padding: 10px 40px;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black */
  backdrop-filter: blur(5px);
  /* Optional: blurry background */
}

/* Logo */
#logo img {
  height: 110px;
  opacity: 1;
  margin-top: 5px;
  margin-bottom: -10px;

}

/* Navigation list */
.nav-items ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-items ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 20px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 20px;
}

.nav-items ul li a:hover {
  color: #dddddd;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Active nav item */
.nav-items ul li a.active {
  background-color: #f47400;
  /* Semi-transparent white */
  color: #ffffff;
}


/*============= home page css start============== */
.product-heading {
  font-size: 25px;
  text-align: center;
  margin-top: 45px;

}

h2 {
  text-align: center;
  color: #f47400;
  font-size: 28px;
  margin-bottom: 15px;
}

.product-section {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.column a {
  text-decoration: none;
  /* Remove underline */
  color: inherit;
  /* Keep original text color */
}

.column p {
  font-size: 16px;
  text-transform: uppercase;

}

.column img {
  width: 260px;
  border-radius: 50px 0px;
  box-shadow: 0 4px 10px rgba(222, 145, 30, 0.5);
  object-fit: cover;
  /* border: 1px solid black; */

}

#product {
  padding: 50px;
  background: white;
  text-align: center;
}

.product-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

/*================= why choose us start======== */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 90px 150px;
}

.left-column {
  flex: 1 1 55%;
  min-width: 300px;
}

.left-column h3 {
  color: #f47400;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 25px;
  text-align: left;
}

.left-column h2 {
  font-size: 35px;
  margin-bottom: 20px;
  color: black;
  text-align: left;
}

.progress-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.progress-item {
  width: 45%;
}

.progress-item label {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}

.bar-container {
  background-color: #ccc;
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
}

.bar {
  height: 100%;
  background-color: #f47400;
  width: 0;
  transition: width 2s ease-in-out;
}

.progress-value {
  font-size: 15px;
  float: right;
  margin-top: 2px;
  width: 50px;
}

.right-column {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

.embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 66.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}






/* =====================testimonial start=================*/
.testimonial-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 36px;
  color: #f47400;
  margin-bottom: 50px;
}

.testimonial-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  width: 335px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  font-size: 60px;
  color: #f47400;
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.testimonial-text {
  font-size: 15px;
  color: #333;
  margin-top: 20px;
  line-height: 1.6;
}

/* ==========call to action start========== */

.brochure-section {
  background-color: #000;
  color: #fff;
  width: 100%;
  padding: 20px 20px;
  border-top-left-radius: 130px;
  border-bottom-right-radius: 130px;
  /* margin-left: 0px; */
  margin-top: 50px;

}

.brochure-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.brochure-left {
  flex: 1;
  min-width: 250px;
}

.brochure-left img {
  height: 125px;

}

.brochure-right {
  flex: 1;
  min-width: 250px;
  /* text-align: center; */
  margin-top: 20px;
  animation: slideInRight 1s ease-out forwards;
  opacity: 0;
  /* ensures animation is visible on load */
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

.heading {
  font-size: 32px;
  font-weight: bold;
  color: #f47400;
  margin-top: 0px;
  margin-bottom: 15px;
  text-align: center;
}

.download-button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: 115px;
}

.download-button:hover {
  background-color: #f0f0f0;

}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ========================faq start==========================*/
.faq-section {
  max-width: 1000px;
  margin: 60px auto;
}

.faq-section h2 {
  text-align: center;
  color: #f47400;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 6px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  padding: 20px 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question .icon::before {
  content: "+";
  font-size: 20px;
  color: #000;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* When active, change + to – */
.faq-item.active .faq-question .icon::before {
  content: "–";
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
  color: #333;
}

.faq-item.active .faq-answer {
  padding: 16px 20px;
  max-height: 500px;
  /* large enough for most answers */
}


/*============================== contact============================== */

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #fff;
}

.contact-form,
.map {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 380px;
  padding: 20px;
  max-width: 500px;
}

.contact-form h2 {
  color: #f47400;
  margin-bottom: 5px;
}

.contact-form p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-family: popins;
}

.contact-form button {
  background-color: #f47400;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}

.map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 10px;
}

/* ==================responsive====================== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .nav-items ul {
    gap: 30px;
  }

  .container {
    flex-direction: column;
    align-items: center;  
    text-align: center;   
    padding: 40px 20px;
  }

  .left-column,
  .right-column {
    width: 100%;           
    max-width: 600px;     
    text-align: center;
  }

  .left-column h3,
  .left-column h2 {
    text-align: center !important;
  }

  .left-column h3 {
    color: #f47400;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 25px;
    text-align-last: center;
  }

  .progress-item {
    width: 100%;
  }

  /* .testimonial-container {
    flex-direction: row;
    align-items: center;
  } */

  .brochure-row {
    /* flex-direction: column; */
    text-align: center;
  }

  .download-button {
    margin-left: 0;
  }

  .product-section {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .column {
    width: 45%;
    align-items: center;
  }

  .column img {
    max-width: 100%;
  }

  .overlay-content h2 {
    font-size: 2.5em;
  }

  .overlay-content p {
    font-size: 18px;
  }
  
  .embed-container {
    max-width: 600px;      
    margin: 0 auto;
  }
}

/* Mobile Devices (≤ 765px) */
@media (max-width: 765px) {
  .nav-items ul {
    flex-direction: column;
    gap: 20px;
  }

  .overlay-content h2 {
    font-size: 28px;
  }

  .overlay-content p {
    font-size: 16px;
  }

  .overlay-content button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .testimonial-card {
    width: 90%;
  }

  .faq-section {
    padding: 0 10px;
  }

  .faq-question {
    font-size: 15px;
    padding: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .column {
    width: 100%;
  }

  .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px 20px;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    /* margin-left: 0px; */
    margin-top: 50px;

  }

  .download-button {
    font-size: 10px;
    padding: 7px 15px;
    width: 50%;
  }

  .brochure-left img {
    height: 100px;
  }

  .brochure-row {
    flex-direction: column;
    text-align: center;
    font-size: 10px;
  }

  .brochure-right {
    margin-top: 5px;
    font-size: 10px;
  }

  .heading {
    font-size: 5px;
  }

  .hero-slider {
    height: 60vh;

  }

  .overlay-content {
    bottom: 25%;
    left: 5%;
  }

  .overlay-content h2 {
    font-size: 2em;
  }

  .overlay-content p {
    font-size: 16px;
  }

  .overlay-content button {
    font-size: 0.9em;
    padding: 8px 16px;
  }

  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .column img {
    width: 80%;
  }

}

/* Extra Small Devices (≤ 480px) */
@media (max-width: 480px) {
  .product-heading h2 {
    font-size: 24px;
  }

  .testimonial-section h2 {
    font-size: 26px;
  }

  .heading {
    font-size: 24px;
  }

  .footer {
    padding: 30px 15px;
  }

  .progress-value {
    font-size: 13px;
  }

  .download-button {
    width: 70%;
    padding: 12px 20px;
  }

  .overlay-content {
    bottom: 25%;
    left: 5%;
  }

  .overlay-content h2 {
    font-size: 22px;
  }

  .overlay-content p {
    font-size: 14px;
  }

  .hero-slider {
    height: 50vh;
  }

  .overlay-content {
    bottom: 20%;
    left: 5%;
    text-align: left;
  }

  .overlay-content h2 {
    font-size: 1.5em;
  }

  .overlay-content p {
    font-size: 14px;
  }

  .overlay-content button {
    font-size: 0.8em;
    padding: 6px 12px;
  }

  .slider-controls span {
    font-size: 1.5em;
    padding: 6px;
  }
}

@media (width: 1024px) {
  .testimonial-container {
    flex-direction: row;
    /* Side by side */
    justify-content: center;
    flex-wrap: wrap;
  }

  /* .testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
  } */

  .testimonial-card {
    width: 300px;
  }

  .testimonial-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .container .left-column {
    width: 70%;
  }
   .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px 20px;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    margin-left: 0px;
    margin-top: 50px;

  }

  .download-button {
    font-size: 10px;
    padding: 7px 15px;
  }
}

@media (width: 912px) {
  .testimonial-container {
    flex-direction: row;
    /* Side by side */
    justify-content: center;
    flex-wrap: wrap;
  }

  /* .testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
  } */

  .testimonial-card {
    width: 260px;
  }

  .testimonial-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .container .left-column {
    width: 70%;
  }
   .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px 20px;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    margin-left: 0px;
    margin-top: 50px;

  }

  .download-button {
    font-size: 10px;
    padding: 7px 15px;
  }

}

@media (width: 768px) {
  .column p {
    font-size: 20px;
  }

  .testimonial-container {
    flex-direction: row;
    /* Side by side */
    justify-content: center;
    flex-wrap: wrap;
  }

  /* .testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
  } */

  .testimonial-card {
    width: 220px;
  }

  .testimonial-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .container .left-column {
    width: 70%;
  }

  .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px 20px;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    margin-left: 0px;
    margin-top: 50px;

  }

  .download-button {
    font-size: 10px;
    padding: 7px 15px;
     width: 50%;
  }

 

}

@media (width: 820px) {
  .container .left-column {
    width: 70%;
  }
   .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px 20px;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    margin-left: 0px;
    margin-top: 50px;

  }

  .download-button {
    font-size: 10px;
    padding: 7px 15px;
  }
}

@media (width: 540px) {
  .container .left-column {
    width: 70%;
  }
  .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 20px 20px;
    border-top-left-radius: 130px;
    border-bottom-right-radius: 130px;
    /* margin-left: 0px; */
    margin-top: 50px;

  }

  .download-button {
    font-size: 10px;
    padding: 7px 15px;
    margin-left: 190px;
     width: 50%;
  }

  .brochure-left img {
    height: 100px;
    margin-right: 250px;
  }

  .brochure-row {
    flex-direction: column;
    text-align: center;
    font-size: 10px;
  }

  .brochure-right {
    margin-top: 5px;
    font-size: 10px;
  }

  .heading {
    font-size: 28px;
    margin-top: -100px;
    margin-left: 200px;
  }
}

@media (width: 853.33px) {
  .container .left-column {
    width: 70%;
  }

  .testimonial-container {
    flex-direction: row;
    /* Side by side */
    justify-content: center;
    flex-wrap: wrap;
  }

  /* .testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
  } */

  .testimonial-card {
    width: 240px;
  }

  .testimonial-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}

@media (width: 1080px) {
  .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border: 0;
  }
}

@media (width: 2560px) {
  .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

@media (max-width: 415px) {
  .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    height: 30%;
    padding: 20px 20px;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 130px;
    /* margin-left: 0px; */
    margin-top: 50px;
  }

  .brochure-left img {
    height: 55px;

  }
}

@media (max-width: 344px){
  .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    height: 50%;
    padding: 20px 20px;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 130px;
    /* margin-left: 0px; */
    margin-top: 50px;
  }

  .brochure-left img {
    height: 55px;
  }
    .download-button {
    font-size: 10px;
    padding: 7px 8px;
    width: 50%;
  }
}

@media (max-width: 412px){
  .brochure-section {
    background-color: #000;
    color: #fff;
    width: 100%;
    height: 50%;
    padding: 20px 20px;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 130px;
    /* margin-left: 0px; */
    margin-top: 50px;
  }

  .brochure-left img {
    height: 55px;
  }
    .download-button {
    font-size: 10px;
    padding: 7px 8px;
    width: 50%;
  }
}

/* Responsive Fix for yt video */
@media (max-width: 991px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .left-column h3,
  .left-column h2 {
    text-align: center;
  }

  .progress-item {
    width: 100%;
  }

  .right-column {
    width: 100%;
    margin-top: 20px;
  }
}