/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Setup */
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

/* Wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #f1a208; /* gold hover */
}

/* Sections (default padding) */
section {
  padding: 60px 0;
}



/* Navbar */


.navbar .logo{
height: 100px;
}

.navbar .nav-item a{
  font-size: 18px;
  font-weight: 600;
   text-transform: uppercase;;
}

.nav-item .active{
  font-weight: 700 !important;
}

.navbar {
  background: #fff; /* must give a background, otherwise content shows through */
  z-index: 1030;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* optional */
}

@media (max-width: 991px) { /* applies on mobile/tablet collapsed nav */
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav .nav-item {
    margin: 10px 0 0 0; /* space between items */
  }
  .navbar-nav .nav-item:first-child {
    margin-top: 20px; /* extra space at top */
  }
  .navbar-nav .nav-item:last-child {
    margin-bottom: 20px; /* extra space at top */
  }
}

.navbar-toggler {
  z-index: 1100;
}

main{
  margin-top: 116px;
}

@media (max-width: 768px) {

    main {
    margin-top: 96px;
}
}

/* Hero Section */
.hero {
  font-family: "Roboto";
  background: linear-gradient(180deg, #754C24 0%, #6A401F 100%);
  color: #fff;
  padding: 60px 0;
}

.hero-text h1 {
  font-size: 65px;
line-height: 67px;
}

.hero-text p {
  font-size: 24px;
  font-weight: 400;
}


.hero-img img {
  max-width: 400px;
  border-radius: 60px 0;
  margin-bottom: 10px;

}

.hero a{
    font-size: 20px;
    background-color: #734A23;
    color: #fff;
}

.hero a:hover{
    background-color:#cea88e ;
    color: #fff;

}
/* Default (mobile/tablet) - Bootstrap default behavior */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 25px;  /* normal size for mobile */
  height: 25px;
}

/* Desktop (from 992px and up) */
@media (min-width: 992px) {
  .carousel-control-prev {
    left: -60px; /* push outside on desktop */
  }

  .carousel-control-next {
    right: -60px; /* push outside on desktop */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 40px; /* larger arrows */
    height: 40px;
  }
}


/* Reset Bootstrap's default toggler icon */
.navbar-toggler-icon {
  background-image: none !important;
  display: flex;
  flex-direction: column;
  justify-content: space-around; /* evenly spaced */
  align-items: center;
  width: 28px;   /* hamburger width */
  height: 22px;  /* increase height */
  padding: 2px 0;
}

/* Create 3 bars */
.navbar-toggler-icon span {
  display: block;
  height: 3px;              /* thicker line */
  width: 100%;
  background-color: #734A23;  /* #734A23 bars */
  border-radius: 2px;
}

/* Button border styling */
.navbar-toggler {
  border: 2px solid #734A23;
  padding: 6px; /* more clickable area */
  box-shadow: none !important;
}

/* Remove black outline on click/focus, keep #734A23 */
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: #734A23 !important;
}



/* Animation: slide up */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: slideUp 1s ease-out;
}

/* Ensure animation triggers on each slide */
.carousel-item.active .animate-up {
  animation: slideUp 1s ease-out;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;       /* make arrows narrower */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
}



  .about-us p,
  .services p,
  .how-it-work p{
  font-size: 16px;
}




/* Section Heading */
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #734A23; /* yellow line */
  border-radius: 2px;
}

.section-heading h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #222;
}


/* about-us */

.about-us a{
    background-color: #734A23;
    color: #fff;
}

.about-us a:hover{
    background-color:#cea88e ;
    color: #fff;
    border: 1px solid #734A23;
}

.how-it-work{
background-color: #F8F3EB;
}

/* Yellow Bullet List */
.yellow-list li {
  position: relative;
  padding-left: 24px; 
  margin-bottom: 10px;
}

.yellow-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #734A23; /* theme yellow */
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}



.work-step{
  display: flex;
    flex-direction: column;
    align-items: center;
}

/* Work Section Images */
.work-step .step-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* circular */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.work-step .step-img:hover {
  transform: scale(1.05); /* zoom on hover */
}

.work-step h6 {
  color: #222;
  margin-top: 1rem;
  text-align: center;
}


/* services */

/* Service Box */
.service-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  border: 1px solid #CEA88E;
  padding-top: 50px; /* space for hexagon */
}


.service-box-default {
  background: #F8F3EB;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
    border: 1px solid #CEA88E;
  position: relative;
  padding-top: 50px; /* space for hexagon */
}

/* Hover effect */
.service-box:hover {
  /* transform: translateY(-6px); */
  background-color: #F8F3EB;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.service-box-default p,
.service-box p{
font-size: 24px;
}
.service-box-default p,
.service-box p{
    font-size: 16px;
    }

/* Hexagon on top */
.hexagon {
  width: 70px;
  height: 40px;
  background: #CEA88E; /* theme yellow */
  position: absolute;
  top: -20px; /* shows outside */
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 
                     75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

/* Icon inside hexagon */
.hexagon i {
  font-size: 18px;
}

/* Corner yellow folded effect */
.corner-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-right: 60px solid #CEA88E;
  border-bottom-left-radius: 8px;
}



/* testionial review */


.carousel-inner {
padding: 3rem 0 4rem 0; /* Padding bottom to avoid clipping from hover transform */
}

.review-card {
background: #ffffff;
border: 1px solid #CEA88E;
border-radius: 8px;
box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
padding: 1.8rem 1.5rem 2.5rem 1.5rem;
transition: transform 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}

.review-card:hover {
transform: translateY(-20px);
box-shadow: 0 8px 15px rgb(212 175 55 / 0.3);
}

.review-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #734A23;
}

.review-header {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.8rem;
}

.review-name {
font-weight: 700;
font-size: 1rem;
color: #333;
}

.review-location {
font-size: 0.8rem;
color: #9b9b9b;
margin-top: 2px;
}

.stars {
color: #f8ba00;
font-size: 1rem;
margin-left: auto;
display: flex;
gap: 2px;
}

.review-text {
font-size: 0.9rem;
color: #555;
flex-grow: 1;
margin-bottom: 1rem;
line-height: 1.3rem;
}

.review-quote {
color: #734A23;
font-size: 2rem;
text-align: center;
user-select: none;
pointer-events: none;
}

/* Carousel indicators styling override */
.carousel-indicators [data-bs-target] {
background-color: #734A23;
opacity: 0.4;
}

.carousel-indicators .active {
background-color: #734A23;
opacity: 1;
}

.testimonial-card {
    width: 100%; /* Full width on mobile */
    transform: none; /* Remove transformation */
}

.inverted-commas {
    position: absolute; /* Positioning to control placement */
    bottom: 10px; /* Adjust as needed */
    left: 10px;  /* Adjust as needed */
    font-size: 40px; /* Adjust size */
    color: #ccc; /* Change color as needed */
    z-index: -1; /* If needed to make it appear behind text */
}
.testimonial-card {
    position: relative; /* Required for absolute positioning of inverted commas */
}

.review-card {
  position: relative; /* allow pseudo-element positioning */
  background: #ffffff;
  border: 1px solid #cea88e;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  padding: 1.8rem 1.5rem 3.5rem 1.5rem; /* extra bottom space */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.review-card::after {
  content: "❝";
  position: absolute;
  bottom: -20px; /* pushes it half outside */
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: white;
  color: #cea88e; /* or your theme color */
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 2;
}

@media (max-width: 768px) {
    .testimonials-container {
        overflow: hidden; /* Hide overflow */
        display: flex;
        flex-direction: column; /* Stack cards vertically */
    }
    .testimonial-card {
        margin-bottom: 20px; /* Space between cards */
    }

}

.swiper-slide {
  padding: 15px; /* gives breathing room so hover scale won't cut */
  box-sizing: border-box;
}

.swiper {
  overflow: visible; /* important for hover grow effect */
}

/* Pagination dots color */
.swiper-pagination-bullet {
  background: #734A23 !important;  /* #734A23 */
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #734A23 !important; /* active dot also #734A23 */
  opacity: 1;
}

/* Move pagination lower */
.swiper-pagination {
  bottom: -30px !important; /* push it further down */
}

/* faq */



.accordion-button {
  background: #f8f3eb;
  font-weight: 500;
  border: none;
  box-shadow: none !important;
  outline: none !important;
}

/* Active (open) item */
.accordion-button:not(.collapsed) {
  background: #f8f3eb;
  color: #000;
  font-weight: 600;
}

/* Remove blue outline completely */
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Accordion item styling */
.accordion-item {
  border: 1px solid #734A23; /* #734A23 border for all */
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
    border-top: 1px solid #734A23; 
  background: #fff; /* ensures closed item has white background */
}

/* Accordion body */
.accordion-body {
  background: #fff;
  color: #333;

}



@media (max-width:500px) {
  .work-step .step-img {
  width: 150px;
  height: 150px;
}
}



@media (max-width:786px) {

.navbar .logo{
height: 80px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 40px;
}

.hero-text p {
  font-size: 18px;
}

.hero-text a {
  font-size: 18px;
}


.hero-img img {
    margin-top: 40px;
      max-width: 250px;
}
.about-us img{
    margin-top: 40px;
}



.about-us .col-lg-7{
    padding-left: 20px ;
    padding-right: 20px ;
}



}



@media (min-width:1400px) {
  
  .hero-text h1 {
    font-size: 80px;
    line-height: 75px;
  }
  .about-us p,
  .services p,
  .how-it-work p{
  font-size: 18px;
}

.work-step .step-img {
  width: 250px;
  height: 250px;
}

.navbar .nav-item a{
  font-size: 18px;
}
}


.accordion-item:not(:first-of-type) {
    border-top: 1px solid #734a23;
}

.footer {
  background: #f8f3eb;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.footer-logo {
  max-width: 120px;
}

.footer-title {
  font-weight: 600;
  font-size: 1rem;
}

.footer-subtitle {
  font-size: 0.9rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #CEA88E;
}

.footer a:hover{
  color: #CEA88E;
}
.footer i {
  font-size: 1.2rem;
  color: #333;
  transition: color 0.3s;
}

.footer i:hover {
  color: #CEA88E;
}

.footer .col-head-footer{
  margin-top: 3rem;
}

.footer-head{
  padding: 1rem;
}

/* Responsive font sizes */
@media (max-width: 992px) {
  .footer-title {
    font-size: 0.95rem;
  }
  .footer-heading {
    font-size: 1rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
  .footer .col-head-footer{
  margin-top: 2rem !important;
}
.footer-head{
  padding-bottom: 0rem;;
}
.list-unstyled li {
    padding-bottom: 0px !important;
}
}

@media (max-width: 576px) {
  .footer-title {
    font-size: 0.9rem;
  }
  .footer-heading {
    font-size: 0.95rem;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .footer .col-head-footer{
  margin-top: 0rem !important;
}
}

.footer button{
  background-color: #6A401F;
  color: white;
}

.footer button:hover{
  color: white;
  background-color: #cea88e;
}


.list-unstyled li{
  padding-bottom: 10px;
  padding-left: 1rem;
}

.list-unstyled li a{
  font-weight: 500;
}

.list-unstyled li a:hover{
  color: #CEA88E;
}

.footer-head{
  font-size: 20px;
  font-weight: 700;
}

.footer-form{
  padding-bottom: 1rem;
}

/* Base style */
.floating-icon {
  position: fixed;
  right: 20px;
  z-index: 9999;
}

.floating-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 8px 0;
  border-radius: 50%;
  background: #754C24; /* #734A23 background */
  border: 2px solid #fff; /* White border */
  color: #fff; /* White icon */
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

.floating-icon i{
    padding: 10px;
    font-size: 20px;
}

.floating-icon a:hover {
  background: #CEA88E;
}

/* Vertical alignment (centered group) */
.floating-icon.right {
  top: 50%;
  transform: translateY(-50%);
}

.floating-icon.right.second {
  margin-top: 50px; /* push below WhatsApp */
}

.floating-icon.right.third {
  bottom: 20px; /* stick arrow near bottom */
  top: auto;
  transform: none;
}


/* modal */


  .contact-modal {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.contact-modal:hover {
  transform: translateY(-3px);
}

.custom-header {
  background: linear-gradient(135deg, #754C24, #5b391a);
  border: none;
  color: #fff;
  text-align: center;
  justify-content: center;
  position: relative;
  padding: 15px;
}
.custom-header .modal-title {
  font-weight: bold;
  font-size: 1.2rem;
}
.custom-header .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  filter: invert(1);
  opacity: 0.8;
}
.custom-header .btn-close:hover {
  opacity: 1;
}

.form-subtitle {
  text-align: center;
  color: #754C24;
  font-weight: 600;
  margin: 15px 0;
  position: relative;
}
.form-subtitle::before,
.form-subtitle::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #cea88e;
  margin: 0 10px;
  vertical-align: middle;
}

.custom-input {
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #cea88e;
  background-color: #fff;
  transition: all 0.3s ease;
}
.custom-input:focus {
  border: 1px solid #754C24;
  box-shadow: 0 0 6px rgba(117, 76, 36, 0.3);
  outline: none;
}

.submit-btn {
  background: #754C24;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.submit-btn:hover {
  background: #cea88e;
  color: #fff;
}

.modal-body {
  background-color: #F8F3EB;
  padding: 25px;
}

