@import url('https://fonts.googleapis.com/css2?family=Iceberg&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  background-color: #f3f3f3;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  /* Base font size for scalability */
}

/* Container */
.container {
  max-width: 1800px; 
  margin: 0 auto;
}

/* Alert Bar */
.alert-bar {
  border-radius: 8px;
  height: 50px;
  background-color: #FF9500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 5%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.alert-bar p {
  font-size: clamp(14px, 3.5vw, 18px);
  letter-spacing: 1px;
  color: white;
}

.alert-bar a {
  text-decoration: none;
  color: white;
}

.alert-bar a:hover {
  color: olivedrab;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  flex-wrap: wrap;
}

header .logo img {
  width: clamp(120px, 25vw, 180px);
}

/* Navigation */
.nav-links ul {
  font-size: clamp(14px, 3vw, 16px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  gap: clamp(20px, 5vw, 60px);
  font-family: monospace;
}

.nav-links ul li {
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.nav-links ul li:hover {
  background-color: #ddd;
}

.nav-links ul a {
  color: black;
  text-decoration: none;
}

.nav-links ul li:last-child {
  background-color: orangered;
  color: white;
}

.nav-links ul li:last-child:hover {
  background-color: lightcoral;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
}

.hamburger .fa-bars,
.hamburger .fa-times {
  transition: opacity 0.3s ease-in-out;
}

.hamburger .fa-times {
  display: none;
}

.hamburger.active .fa-bars {
  display: none;
}

.hamburger.active .fa-times {
  display: inline-block;
}

.nav-links {
  transition: transform 0.3s ease-in-out;
}

.nav-links.active {
  display: flex;
}

/* Top Banner */
.top-banner {
  width: 100%;
  text-align: center;
  /* padding: 10% 3%; */
  place-content: center;
  border: none;
  /* margin: 20px 0px; */

}

.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: clamp(20px, 5vw, 30px);
  background-color: #ffffff;
  padding: 10px 5%;
  min-height: 120px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.heading .bolt-icon {
  padding: 10px 14px;
  border-radius: 5px;
  background-color: rgb(250, 239, 218);
}

.heading h1 {
  color: black;
}

.heading .bolt-icon i {
  font-size: clamp(24px, 6vw, 36px);
}

.heading h1 span {
  color: orange;
}

.sub-heading {
  margin: 40px 0px;
}

.sub-heading h2 {
  word-spacing: 2px;
  font-weight: 400;
  margin: 0 3%;
  font-size: clamp(16px, 4vw, 20px);
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.buttons button {
  padding: 15px 30px;
  margin: 20px 10px;
  border-radius: 8px;
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 600;
  min-width: 200px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.buttons button:first-child {
  background-color: orange;
  color: #fff;
}

.buttons button:first-child:hover {
  background-color: rgb(248, 183, 62);
}

.buttons button:last-child {
  background-color: #fff;
}

.buttons button:last-child:hover {
  background-color: #e6e5e5;
}

.bottom-banner-card {
  border-radius: 10px;
  background-color: #fff;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  margin-top: 50px;
}

.bottom-banner-card img {
  width: clamp(80px, 15vw, 120px);
  min-height: 60px;
  border-radius: 50%;
}

hr {
  height: 50%;
  color: #ddd;
  border-radius: 10px;
  width: 2px;
  border: none;
  background-color: #ddd;
}

/* Second Banner */
.second-banner video {
  width: 100%;
  max-height: 500px;
  border-radius: 10px;
  object-fit: cover;
}

/* Section Common */
section {
  padding: 5% 3%;
  border-top: 1px solid #ccc;
}

section h1 {
  font-size: clamp(26px, 5vw, 40px);
  color: rgb(68, 68, 68);
}

.benefit-title h1 span {
  color: orangered;
  font-size: clamp(30px, 5vw, 45px);
}

section p {
  margin-top: 10px;
  font-size: clamp(16px, 3.5vw, 22px);
  letter-spacing: 0.5px;
  word-spacing: 1px;
  font-family: sans-serif;
}

section p i {
  color: orange;
  border-bottom: 2px solid;
  padding-bottom: 4px;
}

/* Benefit Section */
.benefit-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  padding: 15px;
  justify-items: center;
  gap: 20px;
  margin-top: 30px;
}

.benefit-card {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  min-height: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  width: 100%;
}

.benefit-card h1 {
  text-align: right;
  font-size: clamp(30px, 6vw, 50px);
  margin-bottom: 8px;
}

.benefit-card h2 {
  font-size: clamp(18px, 4vw, 22px);
  color: #2c2b2b;
}

.benefit-card strong {
  color: #504242;
  display: block;
  padding: 5px 8px;
  margin: 10px 0;
  font-size: clamp(14px, 3vw, 16px);
}

.benefit-card p {
  text-align: justify;
  max-width: 95%;
  color: rgb(146, 88, 16);
  letter-spacing: 0.5px;
  font-size: clamp(13px, 3vw, 15px);
  line-height: 1.4rem;
  margin-top: 20px;
}

/* Testimonials Section */
.testimonials-title p {
  margin-top: 8px;
  font-size: clamp(16px, 3.5vw, 20px);
  letter-spacing: 0.5px;
  word-spacing: 1px;
  font-family: sans-serif;
}

.testimonials-title p i {
  font-size: clamp(14px, 3vw, 18px);
  color: orange;
  border-bottom: 2px solid;
  padding-bottom: 4px;
}

.testimonials-cards-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  margin-top: 30px;
  padding: 15px;
  gap: 20px;
}

.testimonial-card {
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.testimonial-card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: scale(1.04);
}

.testimonial-card .top {
  background-color: #fff;
  font-size: clamp(16px, 3.5vw, 20px);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 30px 20px;
  border-bottom: 1px solid #cccccc;
}

.testimonial-card .top p {
  font-size: clamp(14px, 3vw, 16px);
}

.testimonial-card .bottom {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #e0e0e07a;
}

.bottom h3 {
  color: rgb(48, 61, 2);
  font-size: clamp(16px, 3.5vw, 22px);
}

.bottom button {
  font-size: clamp(14px, 3vw, 16px);
  padding: 10px;
  border: none;
  background-color: #fff;
  border-radius: 8px;
  font-weight: 900;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  transition: 0.3s ease-in-out;
}

.bottom button:hover {
  background-color: #3b4705;
  color: #fff;
  cursor: pointer;
}

/* Pricing Section */
.pricing-section .prcing-cards {
  width: 100%;
  margin: 30px auto 0;
  background-color: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 30px 20px;
  gap: 15px;
}

.price-card {
  background-color: #c7c7c71c;
  border-radius: 12px;
  padding: 30px 15px;
}

.price-card h3 {
  text-align: center;
  border: 1px solid rgba(255, 183, 49, 0.384);
  background-color: rgba(253, 220, 158, 0.219);
  padding: 15px 0;
  border-radius: 5px;
  font-size: clamp(20px, 4vw, 26px);
  color: #2c2b2b;
  margin-bottom: 30px;
}

.price-card h1 {
  font-size: clamp(30px, 6vw, 50px);
  text-align: center;
  color: #3b4705;
}

.price-card h1 span {
  font-size: clamp(16px, 3.5vw, 22px);
  color: #504242;
  font-weight: 600;
}

.price-card .price-details {
  margin-top: 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid rgba(99, 99, 99, 0.2);
  border-bottom: none;
  background-color: #fff;
  padding: 20px 5%;
}

.price-card .price-details p {
  text-align: center;
  margin: 15px 0;
  font-weight: 500;
  font-size: clamp(14px, 3vw, 16px);
}

.price-details ul {
  list-style: none;
}

.price-details li {
  font-size: clamp(13px, 3vw, 15px);
  margin: 15px 0;
  padding: 15px;
  border: 1px solid rgba(173, 169, 163, 0.281);
}

.price-details li span {
  padding: 6px;
  place-content: center;
  margin-right: 8px;
}

.price-details li i {
  font-size: clamp(14px, 3vw, 18px);
  color: orangered;
  font-weight: 900;
}

.get-start-container {
  background-color: orange;
  min-height: 60px;
  place-content: center;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid rgba(99, 99, 99, 0.2);
  border-top: none;
}

.get-start-container a {
  min-height: 60px;
  display: inline-block;
  width: 100%;
  place-content: center;
  text-decoration: none;
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 400;
  color: #fff;
}

/* Asked Question Section */
.asked-question-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.asked-question-section .left {
  width: 100%;
  max-width: 40%;
  padding: 40px;
  flex: 0 0 40%;
}

.asked-question-section .left h1 {
  font-size: clamp(24px, 5vw, 40px);
}

.left p {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.5rem;
  margin-top: 30px;
  color: rgb(47, 59, 26);
  font-weight: 300;
}

.left p span {
  color: olive;
  font-weight: normal;
}

.left button {
  width: 60%;
  max-width: 200px;
  margin-top: 60px;
  padding: 20px;
  border: 1px solid #cccccc44;
  border-radius: 5px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #f1f0f0;
  font-size: clamp(14px, 3vw, 18px);
  transition: 0.3s ease-in-out;
}

.left button:hover {
  background-color: #cccccc6e;
  cursor: pointer;
}

.asked-question-section .right {
  width: 100%;
  max-width: 60%;
  padding: 30px;
  flex: 0 0 60%;
}

.question-card {
  border: 1px solid #9292924b;
  margin: 15px 0;
  padding: 15px;
  border-radius: 15px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
  font-size: clamp(14px, 3vw, 18px);
}

.faq-question button {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 166, 0, 0.589);
  font-size: clamp(14px, 3vw, 16px);
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.faq-question button:hover {
  background-color: rgba(255, 166, 0, 0.952);
}

.asked-question-section .right h3 {
  max-width: 90%;
  text-align: center;
  font-size: clamp(16px, 3.5vw, 20px);
}

.asked-question-section .right h3::before {
  content: ">>  ";
  color: red;
  border-bottom: 1px solid olive;
  margin-right: 8px;
}

.asked-question-section .right p {
  font-size: clamp(13px, 3vw, 16px);
  max-width: 85%;
  border-left: 3px solid #ccc;
  text-align: justify;
  padding-left: 30px;
}

.asked-question-section .faq-answer {
  margin-top: 20px;
  margin-bottom: 15px;
}

.hidden {
  display: none;
}

/* Footer */
footer {
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 5%;
  flex-wrap: wrap;
  gap: 20px;
}

footer .left {
  width: 100%;
  max-width: 25%;
  padding: 15px;
}

footer .left .bottom-logo img {
  height: clamp(60px, 15vw, 80px);
}

footer .left ul li {
  margin: 20px 0;
  font-size: clamp(14px, 3vw, 18px);
  list-style: none;
  display: flex;
  align-items: center;
  color: olive;
  cursor: pointer;
}

footer .left ul li:hover {
  color: orange;
}

footer .left ul li i {
  margin-right: 8px;
  font-size: clamp(14px, 3vw, 18px);
  color: #2c2b2b;
  cursor: default;
}

footer .left ul li a {
  color: olive;
  text-decoration: none;
}

footer .left ul li a:hover {
  color: orange;
}

footer .right {
  height: auto;
  width: 100%;
  max-width: 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .right h3 {
  text-align: center;
  font-size: clamp(16px, 3.5vw, 20px);
  padding: 5px 8px;
  border-bottom: 1px solid #5b6e07af;
}

footer .right a {
  text-decoration: none;
}

footer .right a p,
.right .social-profile-section a i {
  padding: 0 8px;
  text-transform: capitalize;
  font-size: clamp(14px, 3vw, 16px);
  margin: 15px 0;
  color: #3b4705;
  transition: 0.1s ease-in;
}

footer .right a p:hover,
.right .social-profile-section a i:hover {
  color: olive;
}

.right .social-profile-section a i {
  font-size: clamp(24px, 6vw, 32px);
  color: black;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #e0e0e0;
    padding: 80px 20px 20px;
    transform: translateX(100%);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    display: block;
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
  }


  .nav-links ul li {
    padding: 15px 30px;
    font-size: clamp(18px, 5vw, 22px);
    width: 80%;
    max-width: 300px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
  }

  .nav-links ul li:hover {
    background-color: #f3f3f3;
    transform: scale(1.05);
  }

  .nav-links ul li:last-child {
    background-color: orangered;
    color: white;
  }

  .nav-links ul li:last-child:hover {
    background-color: lightcoral;
  }

  .alert-bar {
    margin: 15px 3%;
    height: 40px;
  }

  .heading {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .sub-heading h2 {
    margin: 0 3%;
  }

  .bottom-banner-card {
    justify-content: center;
  }

  .bottom-banner-card img {
    width: clamp(60px, 12vw, 100px);
    border-radius: 50%;
  }


  .second-banner video {
    max-height: 300px;
  }

  .asked-question-section {
    flex-wrap: wrap;
  }

  .asked-question-section .left,
  .asked-question-section .right {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 20px;
  }

  .left button {
    width: 80%;
    max-width: none;
  }

  footer .left,
  footer .right {
    max-width: 100%;
  }

  footer .right {
    justify-content: space-around;
  }
}

@media (max-width: 480px) {
  section {
    padding: 5% 3%;
  }

  .benefit-card,
  .testimonial-card,
  .price-card {
    min-height: auto;
  }

  .benefit-cards-container,
  .testimonials-cards-section,
  .prcing-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-card .price-details {
    padding: 20px 3%;
  }

  .asked-question-section .right p {
    max-width: 100%;
    padding-left: 20px;
  }

  footer {
    padding: 20px 3%;
  }
}