:root {
  --primary-color: #064700; /* Example primary color */
  --secondary-color: #00a044;
}

body {
  overflow-x: hidden;
  font-family: "Lato";

}

.headtext {
  font-family: "Great Vibes", cursive;
  font-size: 60px;
  font-weight: 400;
  word-spacing: 20px;
  width: 600px;
  line-height: normal;
}

h1 {
  font-family: "Lato";
  font-size: 40px;
  font-weight: 400;

}

.three-d-text {
  font-family: "Nunito", sans-serif;
  display: inline-block;
  animation: glowScale 2s infinite ease-in-out;
  color: #fff;
}

@keyframes glowScale {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 15px #0ff, 0 0 25px #0ff;
  }
}





.headpara{
  
    font-size: 22px;
    font-family: "Cookie", cursive;;
    font-weight: 900;
    width: 700px;
    line-height: normal;
}



h2 {
  font-family: "Lato", sans-serif;
  font-size: 35px;
  font-weight: 400;
}

p {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
}

/* Navbar Base */

.custom-strike {
  position: relative;
  display: inline-block;
  color: black;
  font-size: 24px;
  font-weight: 600;
}

.custom-strike::before,
.custom-strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: rotate(45deg);
  transform-origin: center;
}

.custom-strike::after {
  transform: rotate(-45deg);
}

/* Navbar Styles */

.logo {
  zoom: 42%;
  position: absolute;
  left: 125px; /* Adjust logo position */
}

.logowithname {
  zoom: 30%;
  padding: 0;
  margin-bottom: 20px;
}

.top {
  margin: 0px 20px;
  position: fixed;
  top: 20px;
  right: 20px;
  left: 20px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center; /* Ensures items are centered */
  padding: 2px 40px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  z-index: 1000;
}

.menu-toggle {
  position: absolute;
  right: 20px;
}

.navbar-brand {
  height: 90px;
  position: absolute;
  left: 80px; /* Adjust logo name position */}

.nav-links {
  display: flex;
  gap: 80px; /* Adjusted for better spacing */
  align-items: center;
  justify-content: center;

}


.nav-links a {
  text-decoration: none;
  color: #00a044;
  font-family: "Lobster", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.button-1 {
  border-radius: 10px;
  background-color: #00a044;
  padding: 5px 15px;
  border: none;
  cursor: pointer;
  color: white;
  position: absolute;
  right: 40px; /* Adjust as needed */
}

/* Hamburger Menu */
.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #064700;
}

/* Full-screen overlay menu (Initially hidden) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Transparent black background */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}



.hero-section {
  position: relative;
  height: 800px;
  width: 100%;
  color: white;
  background-image: url(""), url(""),
    url("/frontend/assets/subtract3.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 30%, 30%, cover;
  background-position: top 15vh left 10vw, left 40vw top 10vh, center;
  margin: 0;
  padding: 0;
}

.plan_row{
  margin-top: 100px;
   margin-bottom: 100px;
    text-align: center;
}

.header-image {
 height: 230px;
 margin-top: 100px;
}

.tilted-image {
  margin-left: 30px;
}

.container-1 {
  padding-top: 120px;
}
.container-1 h1 {
  text-align: left;
  padding-left: 10px;
 font-weight: 900;
 margin-top: 100px;
 width: max-content;
}
.container-1 p {
  text-align: left;
  word-spacing: 5px;
  font-size: 32px;
  color: white;
  font-weight: 500;
}

.btn_explore {
  display: flex;
  margin-left: 0px;
  justify-content: center;
  height: 40px;
  width: 160px;
  margin-top: 50px;
  border: none;
  border-radius: 5px;
  padding: 6px;

  color: #fff;
  background-color: #347f2c;
  font-family: "Lato", sans-serif;
}
.btn_explore:hover {
  background-color: #fff; /* Change to your preferred hover color */
  color: var(--primary-color);
}

.responsive-img {
  max-width: 100%;
  height: auto;
}


.slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: #f8f8f8; /* Optional background color */
  padding: 10px 0;
  margin-bottom: 50px;
  margin-top: 50px;
}

.slider-wrapper {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
  animation-play-state: running;
}

.product {
  height: 250px;
  flex: 0 0 auto;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/plans/

.planheading {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.container_plan {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 0px;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 0px;
}


.plans {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 15px;
  justify-content: center;
}
.plan {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  gap: 30px;
  cursor: pointer;
  background: white;
  height: 300px;
  border: 2px solid #ddd;
  width: 300px;
  transition: 0.3s;
}
.plan:hover {
  border-color: var(--primary-color);
}
.selected {
  border: 2px solid var(--primary-color);
  box-shadow: 0px 0px 10px var(--primary-color);
}

  .plan img {
    width: 250px;
    height: 200px;
}

.details {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  /* transform: scale(0) rotate(180deg); */
  transition:transform 0.5s ease-out;
}
.details.active {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.details ul {
  list-style: none;
  padding: 0;
}
.details ul li {
  padding: 5px 0;
}
.button {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 10px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.buttongs {
  display: flex;
  height: 40px;
  justify-self: center;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
  width: 160px;
  text-align: center;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.planbutton {
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}

/* benifits */

.container-2 p {
  margin: 0;
  padding: 0;
}

/* //featured plan */

.container-f{
  padding: 0px 30px;
}

.rowss{
  gap: 20px;
  display: flex;
}

.rowss p {
  text-align: left;
  justify-self: center;
  padding-left: 50px;
}

.text-success-1 {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}



.text-success {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  margin-top: 30px;
}
.col-md-4 {
  padding-bottom: 20px; /* Adds spacing between cards */
}

.pricing-plan {
  margin-bottom: 20px; /* Adjust as needed */
  margin-top: 0px;
  border: 1px solid #ddd;
  padding: 10px;
  display: grid;
  justify-content: center;
  height: 500px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.popular {
  border: 2px solid green;
  background: linear-gradient(to bottom, #b2fab4, #ffffff);
}
.btn-custom {
  background-color: var(--primary-color);
  color: black;
  border-radius: 20px;
  padding: 10px 20px;
  margin: auto;
}

.img {
  width: 100vw;
}
/* order form */

.order{
  margin-top: 30px;
}

.form-container {
  background-color: #e6ffe6;
  padding: 20px;
  border-radius: 8px;
  border: 2px dashed var(--primary-color);
  width: 80%;
  margin: auto;
  text-align: left;
}

.form-control,
.form-select {
  margin-bottom: 10px;
}

.btn-submit {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: white;
  display: block;
  margin: 20px auto 0;
}

.order {
  background-color: #f0fff0;
}


/* .selection-1 {
  margin-top: 40px;
  margin-bottom: 40px;
  background-image: url("/frontend/assets/Vector.png");
  background-repeat: no-repeat;
  background-size: cover; /* Cover full width 
  background-position: center;
 /* Full viewport width 
} */

.faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Columns */
  gap: 20px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 50px;
}

.faq-item {
  background-color: var(--primary-color, #007bff);
  color: white;
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 0 15px;
  width: 100%;
  max-width: 500px;
}

.faq-content.open {
  max-height: 200px;
  padding: 10px 15px;
}

.faq-content.active {
  display: block;
}
.arrow {
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}



/* footer */

.footer {
  background-color: #f8f8f8;
  margin-top: 0px;
  padding: 0px;
  text-align: center;
  background-image: url("/frontend/assets/footericon.png"),
    url("/frontend/assets/footer.png");
  background-size: cover, cover;
  background-position: center, center;

  background-repeat: no-repeat, no-repeat;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding-top: 50px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 18px;
  color: #333;
  font-weight:800;
}


.footer-section p,
.footer-section ul {
  font-size: 14px;
  color: #555;
}
.icons i.fab {
  font-size: 32px;
  margin-right: 15px;
  transition: transform 0.2s ease;
}

.icons a:hover i {
  transform: scale(1.2);
}

/* Specific brand colors */
.icons i.fa-facebook {
  color: #3b5998;
}

.icons i.fa-instagram {
  color: #e4405f;
}

.icons i.fa-whatsapp {
  color: #25D366;
}

.icons i.fa-youtube {
  color: #FF0000;
}


.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.subscribe-box {
  display: flex;
  margin-top: 10px;
}

.subscribe-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
}

.subscribe-box button {
  background-color: var(--primary-color);
  border: none;
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 5px;
}

.subscribe-box button:hover {
  background-color: var(--primary-color);
}

.social-media {
  text-align: center;
  margin-top: 20px;
}

.icons i {
  font-size: 30px;
  margin: 10px 10px;
  cursor: pointer;
  color: #555;
  transition: color 0.3s;
}

.icons i:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 10px 0px;
  background-color: var(--primary-color);
  color: white;
 
}


/* speachout */

.speech {
  /* (A1) FONT */
  font-size: 1.1em;

  /* (A2) COLORS */
  color: #fff;
  background: var(--primary-color);

  /* (A3) DIMENSIONS + POSITION */
  position: relative;
  padding: 10px;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 320px;
}
/* (B) ADD SPEECH "CALLOUT TAIL" */
/* (B1) USE ::AFTER TO CREATE THE "TAIL" */
.speech::after {
  /* (B1-1) ATTACH TRANSPARENT BORDERS */
  content: "";
  border: 20px solid transparent;

  /* (B1-2) NECESSARY TO POSITION THE "TAIL" */
  position: absolute;
}

/* (B2) BOTTOM "CALLOUT TAIL" */
.bottom.speech::after {
  /* (B2-1) DOWN TRIANGLE */
  border-top-color: var(--primary-color);

  border-bottom: 0;

  /* (C1-2) POSITION AT TOP */
  top: -20px;
  left: 50%;
  margin-left: -20px;
}

/* WIDGET */
.widget-wrap {
  max-width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.7s;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
}
.widget-wrap.show {
  opacity: 1;
  visibility: visible;
}
#cartoon {
  cursor: pointer;
}

.plan-plan {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 400px;
  width: 280px;
  justify-items: center;
  transition: transform 0.2s ease-in-out;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  min-height: 200px;
}


.btnnn {
  padding: 10px 20px;

  border: none;
  background-color: rgb(85, 85, 85);
  cursor: pointer;
  border-radius: 20px;
  margin: 5px;
}

.btnnn.active {
  background-color: var(--primary-color);
  color: white;
}
/* plans styles */

.btn-group {
  margin-bottom: 20px;
  text-align: center;
  display: block;
}

.btn_2 {
  padding: 10px 20px;
  border: none;
  background-color: rgb(85, 85, 85);
  cursor: pointer;
  border-radius: 20px;
  margin: 5px;
}


.btn_2.active {
  background-color: var(--primary-color);
  color: white;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-self: center;

}

.cards-container .card {
  text-align: center;
  height:200px;
  justify-self: center;
  justify-content: center;
  padding: 30px 10px;
  border: solid;
  border-radius: 20px;
  border-color: var(--primary-color);
  opacity: 0;
  transform: scale(0.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.card.visible {
  transform: scale(1);
  opacity: 1;
}



.card h4 {
  margin: 0 0 10px;
}
.border_1{
  margin: 20px;
  border-width: 1px;
  border-style: solid;
  border-color:   #064700;
  border-radius: 20px;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.card_2 {
  animation: zoomIn 0.5s ease;
}

/* Responsive */

@media (min-width:320px) and (max-width:374px){

  .header_row{
    --bs-gutter-x: 0;
  }

  .top {
    position: fixed;
    margin: 0;
    left: 20px;
    padding: 20px;
   
  }

  .plan_row{
    margin-top: 40px;
    gap: 20px;
    margin-bottom: 40px;;
  }
 
  
  .logo {
    position: static;
    zoom: 30%; 
  }
  .navbar-brand {
    height: 90px;
  }
  .menu-btn{
    display: block;
    margin-left: auto;
  }
  .nav-links{
    display: none;
  }
  /* Grid layout for menu items */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    text-align: center;
  }

  .menu-item {
    font-size: 24px;
    color: white;
    border: none;
    text-decoration: none;
    padding: 15px 30px;

    border-radius: 10px;
    transition: background 0.4s;
  }

  .menu-item:hover {
    background: rgba(241, 239, 239, 0.4);
  }

  /* Show menu when active */
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }


  .hero-section {
    position: relative;
    height: 99vh;

    background-image: 
    url(""), 
    url(""),
    url("/frontend/assets/subtract3.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 70%, 70%, cover;
    background-position: top 70px left 40px, 
    left 250px top 70px, center;
  }
  .container-1{
    padding-top: 15vh;
    height:50vh;
  }
  .container-1 h1{
    padding-top: 0;
    margin-top: 20px;

  }


  .header-image{
    display: none;
  }
  .tilted-image{
    width: 75vw;
    height: 60vh;
    margin-left: 20px;
  }
  .tilted-image h1{
    font-size: 40px;
    padding-left: 0;
    width: fit-content;
  }
  .tilted-image p{
    font-size: 18px;
    width: 80vw;
  }
  .text-success{
    margin: 10px;
  }
  .btn_explore{
    display: flex;
    margin-top: 0px;
    
    width: 150px;
    height: 40px;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-color);
    font-family: "Lato", sans-serif;
  }
  .rowss{
    display: block;
    gap:0px;
  }

  .col-md-4{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .plans {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
 
  
  
  .plan {
    width: 120px; /* Reduce width */
    height:140px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .plan img {
            width: 80px;
        height: 90%;
  }
  
  .plan p {
    font-size: 14px; /* Reduce text size */
  }
  .details {
    /* width: 150%;  */
    padding: 8px;
    font-size: 13px;
  }

  .details h2 {
    font-size: 14px;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .details p {
    font-size: 13px;
    text-align: center;
  }

  .details ul {
    font-size: 12px;
  }

  .details .button {
    padding: 6px 10px;
    font-size: 12px;
  }
  .pricing-plan {
   padding: 10px;
   display: grid;
  }
  .order p{
    padding: 0 20px;
  }
 

  .form-container{
    width: 100%;
  }
  .faq-container{
    display: flex;
    flex-wrap: wrap;
    
  }
  .speech{
  
     display: none;
  }
  .cards-container {
    grid-template-columns: 1fr; /* Stack in 1 column on small screens */
   
  }
  .cards-container .card{
   
    margin-top: 0px;
  }

   
}



@media (min-width:375px) and 
(max-width:424px){
  .text-success{
    margin: 10px;
  }
 
    .top {
      position: fixed;
      margin: 0;
      left: 20px;
      padding: 20px;
     
    }
  
  .plan_row{
    margin-top: 40px;
    gap: 20px;
    margin-bottom: 40px;;
  }
  .cards-container {
    grid-template-columns: 1fr; /* Stack in 1 column on small screens */
   
  }
  .cards-container .card{
   
    margin-top: 0px;
  }
  .logo {
    position: static;
    zoom: 40%; 
  }
  .navbar-brand {
    height: 90px;
  }
  .menu-btn{
    display: block;
    margin-left: auto;
  }
  .nav-links{
    display: none;
  }
/* Grid layout for menu items */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  text-align: center;
}

.menu-item {
  font-size: 24px;
  color: white;
  border: none;
  text-decoration: none;
  padding: 15px 30px;

  border-radius: 10px;
  transition: background 0.4s;
}

.menu-item:hover {
  background: rgba(241, 239, 239, 0.4);
}

/* Show menu when active */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

  .hero-section {
    position: relative;
    height: 95vh;
    background-image: 
    url(""), 
    url(""),
    url("/frontend/assets/subtract3.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 70%, 70%, cover;
    background-position: top 10vh left 10vw, 
    left 60vw top 10vh, center;
  }
  .container-1{
    padding-top: 15vh;
  }

  .container-1 h1{
    padding-top: 0;
    margin-top: 20px;

  }
  .header-image{
    display: none;
  }
  .tilted-image{
    width: 75vw;
    margin-left: 20px;
  }
  .tilted-image h1{
    font-size: 40px;
    padding-left: 0;
    width: fit-content;
  }
  .tilted-image p{
    font-size: 18px;
    width: 80vw;
  }
  .btn_explore{
    display: flex;
    margin-top: 0px;
    
    width: 150px;
    height: 40px;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-color);
    font-family: "Lato", sans-serif;
  }
  .rowss{
    display: block;
    gap:0px;
  }

  .col-md-4{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .plans {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
 
  .plan {
    width: 120px; /* Reduce width */
    height:140px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .plan img {
           width: 80px;
        height: 90%;
  }
  
  .plan p {
    font-size: 14px; /* Reduce text size */
  }
  .details {
    /* width: 150%;  */
    padding: 8px;
    font-size: 13px;
  }

  .details h2 {
    font-size: 14px;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .details p {
    font-size: 13px;
    text-align: center;
  }

  .details ul {
    font-size: 12px;
  }

  .details .button {
    padding: 6px 10px;
    font-size: 12px;
  }
  .pricing-plan {
   padding: 10px;
   display: grid;
  }
  .order p{
    padding: 0 20px;
  }
   .faq-item{
  width: 90vw;
 }
 

  .form-container{
    width: 100%;
  }
  .faq-container{
    display: flex;
    flex-wrap: wrap;
  
  }
  .speech{
  
    display: none;
 }
}


@media (min-width:425px) and 
(max-width:767px){
  .top {
    position: fixed;
    margin: 0;
    left: 20px;
    padding: 20px;
  }
   .plan img {
          width: 80px;
        height: 90%;
  }
  .plan_row{
    margin-top: 40px;
    gap: 20px;
    margin-bottom: 40px;;
  }
  .cards-container {
    grid-template-columns: 1fr; /* Stack in 1 column on small screens */
   
  }
  .cards-container .card{
   
    margin-top: 0px;
  }

  .logo {
    position: static;
    zoom: 40%; 
  }
  .navbar-brand {
    height: 90px;
  }
  .menu-btn{
    display: block;
    margin-left: auto;
  }
  .nav-links{
    display: none;
  }
/* Grid layout for menu items */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  text-align: center;
}

.menu-item {
  font-size: 24px;
  color: white;
  border: none;
  text-decoration: none;
  padding: 15px 30px;

  border-radius: 10px;
  transition: background 0.4s;
}

.menu-item:hover {
  background: rgba(241, 239, 239, 0.4);
}

/* Show menu when active */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

  .hero-section {
    position: relative;
    height: 95vh;
    background-image: 
    url(""), 
    url(""),
    url("/frontend/assets/subtract3.png");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 70%, 70%, cover;
    background-position: top 10vh left 10vw, 
    left 60vw top 10vh, center;
  }

  .container-1 h1{
    padding-top: 0;
    margin-top: 20px;

  }


  .container-1{
    padding-top: 15vh;
  }
  .header-image{
    display: none;
  }
  .tilted-image{
    width: 75vw;
    margin-left: 20px;
  }
  .tilted-image h1{
    font-size: 40px;
    padding-left: 0;
    width: fit-content;
  }
  .tilted-image p{
    font-size: 18px;
    width: 80vw;
  }
  .btn{
    display: flex;
    margin-top: 0px;
    margin:auto;
    width: 150px;
    height: 40px;
    justify-content: center;
    color: #fff;
    background-color: var(--primary-color);
    font-family: "Lato", sans-serif;
  }
  .rowss{
    display: block;
    gap:0px;
  }

  .col-md-4{
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .plans {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0px;
  }

  @media (min-width: 1024px) {
    .container {
        max-width: 0px;
    }
}
  
  .plan {
    width: 120px; /* Reduce width */
    height:140px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .plan img {
    width: 80px; /* Reduce image size */
    /height: auto;/
  }
  
  .plan p {
    font-size: 14px; /* Reduce text size */
  }
  .details {
    /* width: 150%;  */
    padding: 8px;
    font-size: 13px;
  }

  .details h2 {
    font-size: 14px;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .details p {
    font-size: 13px;
    text-align: center;
  }

  .details ul {
    font-size: 12px;
  }

  .details .button {
    padding: 6px 10px;
    font-size: 12px;
  }
  .pricing-plan {
   padding: 10px;
   display: grid;
  }
  .order p{
    padding: 0 20px;
  }
 .faq-item{
  width: 90vw;
 }
  .form-container{
    width: 100%;
  }
  .faq-container{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
  }
  .speech{
  
    display: none;
 }
   
}
.footer-link {
  color: inherit; /* Keeps the same color as the surrounding text */
  text-decoration: none; /* Removes underline */
}

.footer-link:hover {
  color: blue; /* Change this to the hover color you prefer */
  text-decoration: underline; /* Optional: Adds underline on hover */
}


.border {
  border: solid;
  border-width: 10px;
  border-color: #000000;
  padding: 10px 20px;
  border-radius: 10px;
  
}
.input-bold {
  border: 2px solid #000000; /* Bold blue border */
  padding: 10px 20px;
  border-radius: 8px; /* Rounded corners */
  font-size: 16px; /* Adjust text size */

}

.input-bold:focus {
  border-color: #0056b3; /* Darker blue on focus */
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); /* Glow effect */
}
button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: darkgreen;
}

.carousel-control-prev:hover {
  background-color: transparent;

}
.carousel-control-next:hover {
  background-color: transparent;

}

/* privacy_policy */

.container_pp {
  margin: 100px 30px;
 padding: 50px;

 
}
.container_pp h4{

  font-size: 22px;
}
.container_pp h5{

  font-size: 22px;
}
.container_pp p{

  font-size: 18px;
} 

/* QR code styles */

.qr-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.qr-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.qr-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.qr-close:hover {
  color: red;
}
