/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html{
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}
:root{
/* Font Sizes & Family */
/* if we set html's font size 62.5% then 1rem = 10px */

--body-font: 'Poppins', sans-serif;

--big-font: 4rem;
--h1-font: 3.6rem;
--h2-font: 2.4rem;
--h3-font: 2rem;
--h4-font: 1.8rem;
--normal-font: 1.6rem;
--small-font: 1.4rem;
--smaller-font: 1.3rem;

/* Font Weight ***/
--font-regular: 400;
--font-medium: 500;
--font-semi-bold: 600;

/* Color Variables */
--primary-color: #C87E4F;
--primary-color-hover: #C2703D;
--text-color: #333;
--text-color-light: #888682;
--border-color: #484848;
--white-color: #FFF;
--section-bg: #2C3034;

/* z-index */
--z-overlay: 10;
--z-fixed: 100;

/* transition */
--tran-0-2: 0.2s;
--tran-0-3: 0.3s;
--tran-0-5: 0.5s;
}

/*Font sizes For Small Screen 968px */
@media screen and (max-width: 990px) {
:root {
  --big-font: 3.5rem;
  --h1-font: 2.4rem;
  --h2-font: 2rem;
  --h3-font: 1.8rem;
  --h4-font: 1.6rem;
  --normal-font: 1.5rem;
  --small-font: 1.3rem;
  --smaller-font: 1.2rem;
}
}


/* Pre-CSS */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  overflow-x: hidden;
  background-color: var(--white-color);
}

/* Custom Scrollbar */
::selection{
  background-color: var(--primary-color);
  color: var(--white-color);
}
::-webkit-scrollbar{
  width: 8px;
}
::-webkit-scrollbar-track{
  background-color: #f9f1ec;
}
::-webkit-scrollbar-thumb{
  border-radius: 1rem;
  background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb:hover{
  border-radius: 1rem;
  background-color: var(--primary-color-hover)
}

body,
button,
input{
  font-family: var(--body-font);
  font-size: var(--normal-font);
  font-weight: var(--font-regular);
  color: var(--text-color);
}

input{
  outline: none;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reusuable CSS */
.section{
  padding: 5rem 2rem;
}
.container{
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.flex{
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}
.button{
  border-radius: 10px;
  border: none;
  outline: none;
  color: var(--white-color);
  padding: 1.2rem 3.5rem;
  background-color: var(--primary-color);
  transition: var(--tran-0-3);
  cursor: pointer;
}
.button:hover{
  background-color: var(--primary-color-hover);
}
.section-subtitle,
.content-subtitle{
  color: var(--primary-color);
  font-size: var(--normal-font);
  letter-spacing: 1px;
  font-weight: var(--font-medium);
  text-align: center;
}
.section-title,
.content-title{
  text-align: center;
  font-size: var(--h2-font);
  font-weight: var(--font-medium);
  margin: 1rem 0;
}
.section-description,
.content-description{
  text-align: center;
  margin-bottom: 2rem;
}
.section-description{
  padding: 0 16rem;
}
/* Header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  height: 7rem;
  width: 100%;
  z-index: 999;
  transition: var(--tran-0-5);
}
.header-active{
  height: 6rem;
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* nav */

.logo{
  height: 50px;
  width: 50px;
}
.nav{
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.logo-icon,
.logo-text,
.nav-link,
.phone-icon,
.phone-number{
  color: black;
}

.header-active .logo-icon,
.header-active .logo-text,
.header-active .nav-link,
.header-active .phone-icon,
.header-active .phone-number{
  color: var(--text-color);
}

.logo-icon,
.phone-icon{
  font-size: 2rem;
}
.menu-list{
  column-gap: 2rem;
}

.media-icons{
  column-gap: 1rem;
}
.media-icons a{
  color: var(--text-color-light);
}
.navClose-btn,
.navOpen-btn,
.media-icons{
  display: none;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-link {
  text-decoration: none;
  color: #333;
  padding: 15px 15px;
  display: block;
}
.nav-link:hover {
  color: #C2703D;
}



/* nav responsive */
@media screen and (max-width: 768px) {
  .contact-content{
    display: none;
  }
  .nav-link{
    color: white;
}
  .navClose-btn,
  .navOpen-btn,
  .media-icons{
  display: block;
}
  .nav .menu-content{
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 300px;
    width: 100%;
    height: 100%;
    z-index: var(--z-fixed);
    padding: 5rem 0 5rem;
    background-color:#f9f1ec;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: var(--tran-0-5);
  }
  .nav .menu-content.open{
    right: 0;
  }
  .menu-list{
    flex-direction: column;
    row-gap: 2.5rem;
    font-size: var(--h4-font);
  }
  .nav-link{
    color: var(--text-color);
  }
  .nav-link::before{
    background-color: var(--text-color);
  }
  .navClose-btn{
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
  }
  .navOpen-btn{
    font-size: 2rem;
    cursor: pointer;
    color:black;
  }
  .header-active .navOpen-btn{
    color: var(--text-color);
  }
  .button{
    padding: 1rem 3rem;
  }
}


/* Home */
/* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 10px;
  z-index: 1000;
}

.whatsapp-float a {
  display: block;
  background-color: #25d366; 
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.whatsapp-float a i {
  font-size: 45px; /* Adjust the size of the Boxicon */
  color: #fff; /* WhatsApp green color */
}

.whatsapp-float a:hover {
  background-color: #128c7e; /* WhatsApp dark green color on hover */
}
@media screen and (max-width: 768px) {
  .whatsapp-float a i {
    font-size: 40px;
  }
  .whatsapp-float a {
    padding: 3px;

  }

}
/* slider */
.home .swiper-slide {
  overflow: hidden;
}

/* .home .swiper-slide img {
  transition: transform 0.5s;
}

.home .swiper-slide:hover img {
  transform: scale(1.2);
} */

.home {
  height: 100vh;
  width: 100%;
}

.swiper-slide {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden; 
}

.home .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: rgba(244, 172, 90, 0.362); */
  z-index: var(--z-overlay);
}

.home-img {
  height: 100%;
  width: 100%;
}

/* Rest of your existing CSS for Swiper buttons, pagination, etc. */

/* Swiper button */
.swiper-navBtn {
  height: 5rem;
  width: 5rem;
  color: black;
  border-radius: 50%;
  background-color: rgba(176, 176, 176, 0.282);
  transition: var(--tran-0-2);
  opacity: 0;
  visibility: visible;
}

.home:hover .swiper-navBtn,
.review:hover .swiper-navBtn {
  opacity: 1;
}

.swiper-navBtn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.swiper-navBtn::after,
.swiper-navBtn::before {
  font-size: 2rem;
}

.swiper-button-next {
  right: 16rem;
}

.swiper-button-prev {
  left: 16rem;
}

.swiper-pagination-bullet {
  background-color: var(--white-color);
  opacity: 1;
  height: 1.5rem;
  width: 1.5rem;
  margin-bottom: 2rem;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  border: 3px solid var(--white-color);
  background-color: var(--primary-color);
}

.home-details{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--z-fixed);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  width: 100%;
  row-gap: 4rem;
}

.homeSubtitle{
  text-align: center;
  font-size: var(--normal-font);
  color: black;
}
.homeTitle{
  text-align: center;
  font-size: var(--big-font);
  color: black;
  font-weight: var(--font-semi-bold);
}


/* About */
.about .content-subtitle,
.about .content-title,
.about .content-description{
  text-align: left;
}
.about-content{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 2rem;
  align-items: center;

}
.about-imageContent{
  position: relative;
  max-width: 550px;
  height: 350px;
  border: 6px solid var(--section-bg);
}
.aboutImg-textBox{
  position: absolute;
  bottom: 2rem;
  right: -5rem;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
  border: 6px solid var(--section-bg);
  background-color: var(--white-color);
}
.aboutImg-textBox .content-description{
  text-align: center;
  margin-bottom: 0;
}
.heart-icon{
  position: absolute;
  left: -1.9rem;
  top: 50%;
  height: 3rem;
  width: 3rem;
  color: var(--white-color);
  background-color: var(--section-bg);
  transform: translateY(-50%);
  justify-content: center;
  border-radius: 50%;
}

/* .about-details{
  display: grid;
  row-gap: 4rem;
} */
.about-lists{
  column-gap: 1rem;
  align-items: baseline;
}
.about-list{
  font-weight: var(--font-medium);
  font-size: 1.8rem;
}
.about-list:nth-child(1){
  color: var(--primary-color);
}
.about-list.dot{
  font-size: 2.5rem;
}
.about-buttons{
  column-gap: 2rem;
}
.about-link .link-text,
.about-arrowIcon{
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 20px;
}
.about-arrowIcon{
  transition: var(--tran-0-3);
}
.about-link:hover .about-arrowIcon{
  margin-left: 4px;
}
.about-text h4{
  font-size: 30px;
   
}
/* pricing */

.pricing-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  width: 100%;
}

.pricing-plan {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 30%;
  transition: transform 0.3s ease;
}

.pricing-plan:hover {
  transform: scale(1.05);
}

.plan-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.plan-price {
  font-size: 30px;
  font-weight: bold;
  color:  #C87E4F;
  margin-bottom: 15px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-features li {
  margin-bottom: 10px;
}

.cta-button {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 10px;
  background-color:  #C87E4F;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color:  #C2703D;
}

.wrong-icon i {
  color: #ff0000; /* Red color */
}

.right-icon i {
  color: #00ff00; /* Green color */
}
@media (max-width: 768px) {
  .pricing-container {
      flex-direction: column;
  }

  .pricing-plan {
      width: 100%;
      margin-bottom: 20px;
      
  }
}
/* founder */
.founder-section {
  background-color: #bd7e56;
  padding: 50px 0;
  text-align: center;
}

.title-section {
  display: flex;
  flex-direction: column;
}

.title-section h2 {
  font-size: 2em;
  margin: 5px 0;
  line-height: 1;
  color: #333;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.founder-image {
  flex: 1;
  margin: 20px;
  max-width: 400px;
}

.founder-image img {
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
}

.founder-details {
  flex: 1;
  max-width: 800px;
  text-align: left;
  padding: 20px;
}

.founder-details h2 {
  color: #333;
}

.founder-details p {
  color: #666;
  line-height: 1.6;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin-right: 10px;
  color: #C2703D;
}

/* Media Query for smaller screens */
@media (max-width: 767px) {
  .founder-content {
    flex-direction: column;
  }
  .founder-section{
    padding: 15px;
  }

  .founder-image,
  .founder-details {
    padding-top: 10px;
    flex: none;
    width: 100%;
    max-width: none;
  }

  .founder-image {
    margin: 0;
  }
}

/* testimonial section */
  .testimonial-section {
    background-color:  #e1e1e1;
    padding: 30px 0;
    text-align: center;
    height: 500px;
  }

  /* Swiper Container Styles */
  .testimonial-slider {
    width: 80%; /* Adjust width as needed */
    margin: 0 auto;
  }

  /* Testimonial Slide Styles */
  .swiper-slide {
    display: flex;
    justify-content: center;
  }

  /* Testimonial Content Styles */
  .testimonial {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    text-align: center;
    height: 300px;
  }

  .testimonial p {
    color: #555;
    font-size: 1.2em;
  }

  /* Testimonial Author Styles */
  .testimonial-author {
    margin-top: 20px;
  }

  .testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .testimonial-author h4 {
    color: #333;
    margin: 5px 0;
  }

  .testimonial-author p {
    color: #666;
  }

  /* Media Query for Enhanced Responsiveness */
  @media (max-width: 768px) {
    .testimonial-slider {
      width: 90%;
    }
  }

  @media (max-width: 576px) {
    .testimonial-slider {
      width: 100%;
    }
  }

/* Menu */
.menu{
  background-color: #e1e1e1;
}
.section-title,
.section-description{
  color: black;
}
.menu-img{
  border-radius: 20px;
  height: 150px;
  width: 200px;
  margin-right: 1.5rem;
}
.menu-items{
  display: grid;
  row-gap: 1.5rem;
}

.menu-item{
  border-radius: 20px;
  position: relative;
  padding: 2rem 2.5rem;
  background-color: var(--white-color);
}
.menuItem-details{
  margin-right: 1.5rem;
}
.menuItem-topic{
  font-size: 20px;
  /* font-weight: var(--font-semi-bold); */
}
.menuItem-des{
  font-size: 16px;
}


/* Review */
.review{
  background-color: #ffffff;
}
.review .section-title,
.review .section-description{
  color: var(--text-color);
}
.testi-content{
  position: relative;
  height: 100%;
  width: 100%;
  row-gap: 1rem;
  flex-direction: column;
}
.review-img{
  border-radius: 15px;
  height: 100px;
  width: 300px;
 
}
.review-quote{
  padding: 0 15rem;
  text-align: center;
}
.quote-icon{
  font-size: 3rem;
  color: var(--primary-color);
}
.testi-personDetails{
  flex-direction: column;
}
.testi-personDetails .name{
  font-size: 1.8rem;
  font-weight: var(--font-medium);
}

/* swiper btn */
.review .swiper-navBtn{
  background-color: rgba(0, 0, 0, 0.1);
}
.review .swiper-button-next{
  right: 2rem;
  transform: translateY(2rem);
}
.review .swiper-button-prev{
  left: 2rem;
  transform: translateY(2rem);
}
.review .swiper-navBtn:hover{
  background-color: rgba(0, 0, 0, 0.2);
}

/* Newsletter */
.newsletter{
  background-color:#f2f2f2;
}
.logobig{
  height: 65px;
  width: 65px;

}
.newsletter .logo-text,
.newsletter .section-description{
  color: var(--text-color);
}
.newletter-container{
  display: grid;
  justify-items: center;
  row-gap: 2rem;
}
.newsletter .logo-icon{
  font-size: 3rem;
  color: var(--text-color-light);
}
.newsletter .logo-text{
  color: black;
  font-size: 2rem;
  font-weight: var(--font-medium);
}
.newsletter-inputBox{
  position: relative;
  height: 5rem;
  max-width: 400px;
  width: 100%;
  overflow: hidden;
}
.newletter-input{
  height: 100%;
  width: 100%;
  border-radius: 3rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 0 16rem 0 2rem;
}
.newsletter-button{
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 3rem 3rem 0;
}
.newsletter .media-icons{
  display: flex;
}

/* Footer */
.footer{
  padding: 4rem 2rem 3rem;
  background-color:#C2703D;
}
.footer .content-description,
.footer .map-icon,
.footer .location-text{
  color: black;
}
.footer-container{
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  column-gap: 2rem;
  align-items: center;
}
.social-icons a {
  margin-right: 10px;
  color: #000000;
  font-size: 20px;
}
.social-icons a:hover{
  color: white;
}
.footer-content{
  display: grid;
  row-gap: 0.5rem;
}
.footer .logo-text,
.footer .logo-icon{
  color: black;
  font-size: 2rem;
  font-weight: var(--font-medium);
}
.footer .logo-icon{
  font-size: 3rem;
}
.footer .content-description,
.footer .location-text{
  text-align: left;
  font-size: var(--small-font);
}
.footer .map-icon{
  font-size: 3rem;
  margin-right: 1rem;
}
.footer-linkContent{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-items: end;
}
.footer-links{
  display: grid;
  row-gap: 1rem;
  font-weight: var(--font-medium);
  color: black;
}
.footer-link{
  font-size: var(--small-font);
  color: black;
  transition: var(--tran-0-3);
}
.footer-link:hover{
  color: rgba(255, 255, 255, 0.8);
}
.footer-copyRight{
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  font-size: var(--small-font);
  border-top: 2px solid black;
  color: rgba(255, 255, 255, 0.8);;
}


/* Scroll Up */
.scrollUp-btn{
  position: fixed;
  bottom: -30%;
  right: 3rem;
  height: 3rem;
  width: 3rem;
  font-size: 2rem;
  border-radius: 4px;
  color: var(--primary-color-hover);
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: var(--white-color);
  z-index: var(--z-overlay);
  justify-content: center;
  transition: var(--tran-0-3);
}
.scrollUpBtn-active{
  bottom: 3rem;
}
.scrollUp-icon{
  opacity: 0.9;
  transition: var(--tran-0-3);
}
.scrollUp-btn:hover .scrollUp-icon{
  opacity: 1;
}

/* Responive media */
@media screen and (max-width: 1150px) {
  .swiper-button-prev {
    left: 10rem;
}
  .swiper-button-next {
    right: 10rem;
}
}

@media screen and (max-width: 1000px) {
  .swiper-button-prev {
    left: 3rem;
}
  .swiper-button-next {
    right: 3rem;
}
  .section-description {
    padding: 0 8rem;
  }
  .about-imageContent {
    height: 400px;
  }
  .aboutImg-textBox {
    padding: 1.5rem 2rem;
  }
  .menu .menu-content {
    grid-template-columns: 1.5fr 1fr;
    column-gap: 3rem;
  }
  .brand-images{
    grid-template-columns: repeat(3,1fr);
  }

}

@media screen and (max-width: 768px) {
  .section.review{
    padding: 7rem 1rem 3rem;
  }
  .review .swiper{
    padding-bottom: 6.5rem;
  }
  .swiper-navBtn{
    visibility: hidden;
  }
  .swiper-pagination-bullet{
    visibility: visible;
  }

  .section {
    padding: 7rem 1rem;
}
.section-description,
.review-quote{
  padding: 0 6rem;
}
.about-content{
  grid-template-columns: 1fr;
  row-gap: 3rem;
  justify-items: center;
}
.about .content-subtitle,
.about .content-title,
.about .content-description{
  text-align: center;
}
/* .about-details {
  justify-items: center;
} */
.about-lists{
  justify-content: center;
}
.menu .menu-content {
  grid-template-columns: 1fr;
  row-gap: 3rem;
}
.footer-container{
  row-gap: 1.5rem;
}
}

@media screen and (max-width: 600px){
  .container{
    padding: 0rem;
  }
  
  .about-imageContent{
    /* width: 350px; */
    order: 1;
  }
  .section-description, .review-quote{
    padding: 0;
  }
  .aboutImg-textBox{
    right: -2rem
  }
  .menuItem-price{
    border: none;
  }
  .menu-img{
    height: 120px;
    width: 150px;
    margin-right: 0;
}
  .brand-images{
    grid-template-columns: repeat(2,1fr);
  }
  .brand-img{
    width: 100px;
  }
  .footer-container{
    grid-template-columns: 1fr;
    row-gap: 6rem;
  }
  .footer-content{
    justify-items: center;
  }
  .footer-linkContent{
    justify-items: center;
  }
  
}
@media screen and (max-width: 400px) {
  .homeTitle{
    font-size:2.5rem;
  }
  .menu-item{
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    row-gap: 2rem;
  }
  .menuItem-details{
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menuItem-price{
    padding-left: 0;
    flex-direction: row;
  }
  .menuItem-des{
    text-align: center;
}
  .newsletter-input {
    padding: 0 11rem 0 2rem;

}
  .newsletter-button {
    padding: 1.4rem 2rem;

}
}

.nav-linkactive{
  color: var(--primary-color);

}


.contact-container {
  max-width: 600px;
  width: 90%;
  background: rgba(63, 63, 63, 0.7);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
}

.contact-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form button {
  width: 30%; /* Full width on all screens */
  padding: 10px;
  background: #C87E4F;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 800px;
}

.contact-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  margin: 10px;
  margin-left: 0px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 36px;
  color: #C87E4F;
  margin-bottom: 10px;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 14px;
  color: #777;
}

@media screen and (max-width: 768px) {
  .contact-container {
      width: 100%;
  }

  .contact-form button {
      width: 100%;
  }

  .contact-info {
      flex-direction: column;
      align-items: center;
  }

  .contact-item {
      width: 100%;
  }
}

.secheading{
  text-align: center;
}

/* marketing section */


.marketing-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mark-container {
  display: flex;
  justify-content:center;
  gap: 80px;
  /* max-width: 3500px; */
  width: 100%;
}

.mark-plan {
  background-color: #ffffff;
  /* margin-left: 15px; */
  border: 2px solid #000000;
  border-radius: 8px;
  box-shadow: 0 6px 10px rgba(171, 30, 30, 0.1);
  padding: 15px;
  text-align: left;
  width: 32%;
  height: fit-content;
  /* height: 800px; */
  transition: transform 1.5s ease;
}
/* .mark-plan:hover {
  background-color: #e0e0e0;
} */
.mark-plan + .mark-plan {
  margin-top: 110px; /* Adjust the value to control the amount of space */
}
@media (max-width: 768px) {
  .mark-plan + .mark-plan {
    margin-top: 0px; /* Adjust the value to control the amount of space */
  }
}
/* .mark-plan:hover {
  transform: scale(1.05);
} */

.plan-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.mark-price {
  font-size: 20px;
  font-weight: bold;
  color:  #C87E4F;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-features li {
  margin-bottom: 10px;
}

.wrong-icon i {
  color: #ff0000; /* Red color */
}

.right-icon i {
  color: #00ff00; /* Green color */
}
@media (max-width: 768px) {
  .mark-container {
      flex-direction: column;
  }

  .mark-plan {
      width: 100%;
      margin-bottom: 20px;
      
  }
}

.collage img{
  width: 80%;
  border: 2px solid #000000;
  border-radius: 10px;
  height: auto;
  transition: transform 0.3s ease;
}
.mark-plan img:hover{
  border-radius: 10px;
  transform: scale(1.05);
}
.mark-plan .collage{
  display: flex;
}
.collage1 {
  display: flex;
  justify-content: center; 
  align-items: center; 
  width: 100%;
}

.collage1 img{
  width: 55%;
  border-radius: 10px;
  height: auto;
  
}


.title-1{
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px){
  .title-1{
    font-size: 30px;
  }

}
.collage{
  display: flex;
  align-items: center;
  justify-content: center;
}

.pri-sec{
  background-color: rgb(201, 199, 199);
}

.points {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
  /* align-items: center; */
  justify-content: center;
}

.points p {
  position: relative;
  padding-left: 10px; 
  margin: 0 10px 10px 0;
  color: var(--primary-color); 
  font-weight: 600;
}

.points p:before {
  content: "\2022"; 
  position: absolute;
  left: 0;
  color:var(--primary-color-hover); 
}
