/* Section 1 Hero Section */
.hero-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* --- Left Images Layout --- */
.hero-images {
    flex: 1;
    min-width: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    border-radius: 12px;
    overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.hero-img-main {
    width: 75%;
    z-index: 2;
}

.hero-img-main img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}


.hero-img-small {
    width: 40%;
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 5;
}

.hero-img-small img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

 /* Glass overlay effect */
.hero-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1); /* frosted overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

/* Hover effect */
.hero-img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 224, 144,0.6);
}

.hero-img:hover img {
    transform: scale(1.1); /* zoom */
}

.hero-img:hover::before {
    opacity: 1; /* show glass overlay */
}


/* --- Right Content --- */
.hero-content {
    flex: 1;
    min-width: 320px;
}

.hero-subtitle {
    font-size: 16px;
    color: #8E4009;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 30px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}
.service-desc{
     font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    text-align:center;
}

.hero-desc strong {
    color: #000;
}

/* --- Animated Button --- */
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: black;
    background: linear-gradient(45deg, #8E4009, #ffe090);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: left 0.5s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    color: #8E4009;
}

.hero-btn:hover::after {
    left: 100%;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-images {
        margin-bottom: 30px;
    }

    .hero-img-main {
        width: 80%;
    }

    .hero-img-small {
        width: 50%;
        bottom: -15px;
        right: -10px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 16px;
    }
}


/* Section 1  hero section end */




   /* section 2 service section */

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.carousel-container {
    overflow: hidden;
    flex: 1;
}

.carousel-row {
    display: flex;
    transition: transform 0.3s linear;
}

.service-card {
    flex: 0 0 250px; /* fixed width per card */
    margin-right: 20px;
    background: radial-gradient(circle, #ffe090 0%,   #8E4009 100%);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, transform 0.5s;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.2s; /* optional stagger effect if you use JS */
}



.service-card::after{
    content: none !important;
    position: absolute;
    top: 0;
    left: -20%;
    width: 50%;
    height: 50%;
    /* background: rgba(255,255,255,0.3); */
    transition: left 0.5s ease;
}

.service-card:hover{
    transform: translateY(-3px);
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.2); */
    
}

.service-card:hover::after{
    left: 100%;
}




/* Load animation */
@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.25); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    
}
.service-card:hover img {
    transform: scale(1.05);
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #1d1d1d;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 224, 144);
    color: #000000;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}
.services1{
    background:#fff6df !important;
}
.carousel-arrow.left { left: -43px; }
.carousel-arrow.right { right: -43px; }

.service-subtitle {
    font-size: 16px;
    color: #8E4009;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
a:hover {
    color:none !important;
}
.service-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .service-card { flex: 0 0 45%; }
}
@media (max-width: 576px) {
    .service-card { flex: 0 0 80%; margin-right: 15px; }
}


/* section 2 service section end */



 /* Section 3 why shoba start  */


.whychoose_box{
    margin:20px 0;
    padding:30px 20px;
    text-align: center;
    border-radius:5px;
    background:#FFF6DF;
    transition: all 0.30s ease 0s;
     height: 210px;  
     border: 0.5px solid #ffe5a4;
}
.whychoose_box:hover{
    background:#8E4009;
}
.whychoose_box .whychoose_icon{
    width:70px;
    height:70px;
    margin: 0 auto;
    font-size:35px;
    background: #fff;
    line-height:70px;
    border-radius:50px;
    transform: translateY(0);
    transition: all 0.30s ease 0s;
    border: 0.5px solid #9d5f33;
}
.whychoose_icon img{
 height: 50px;
 margin: 5px;
}
.whychoose_box:hover .whychoose_icon{
    transform: translateY(-100%);
}
.whychoose_box .whychoose_icon i{
    color:#333;
}
.whychoose_box h3{
    position: relative;
    top:30px;
    margin:0;
    color:#8E4009;
    font-size:17px;
    font-weight: 600;
    text-transform:uppercase;
    transform: translateY(0%);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.whychoose_box:hover h3{
    top:-40px;
     color: white;
}
.whychoose_box p{
    color:#ffffff;
    margin:0;
    opacity:0;
    transition: all 0.30s linear 0s;
    font-size: 16px;
}
.whychoose_box:hover p{
    opacity:1;
    
}

.five-cols {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.five-cols .col {
    flex: 0 0 20%;   /* ✅ 5 columns (100 ÷ 5) */
    max-width: 20%;
    padding: 10px;
    display: flex;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .five-cols .col { flex: 0 0 25%; max-width: 25%; } /* 4 per row */
}

@media (max-width: 991px) {
  .five-cols .col { flex: 0 0 33.33%; max-width: 33.33%; } /* 3 per row */
}

@media (max-width: 767px) {
  .five-cols .col { flex: 0 0 50%; max-width: 50%; } /* 2 per row */
}

@media (max-width: 480px) {
  .five-cols .col { flex: 0 0 100%; max-width: 100%; } /* 1 per row */
}
  /* Section 3 why shoba end  */


  /* cta section start */

.get-in-touch {
  position: relative;
 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.CTA-section{
 background: url('./images/hero-image.jpg') center/cover no-repeat;
}

.get-in-touch .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 20px;
  border-radius: 8px;
  max-width: 85%;
  width: 90%;
}

.cta-title { 
  color: #fff;

}
.cta-desc { 
  color: #ddd;
  
}



/* Responsive */
@media (max-width: 768px) {
  .get-in-touch {
    min-height: 300px;
    padding: 20px;
  }

  .get-in-touch .content h2 {
    font-size: 20px;
  }

  .get-in-touch .content p {
    font-size: 14px;
  }

  
}

 
/* Cta section end */


/* certificate section 4 start  */

/*Certificate Carousel*/

.certificate-container {
  display: flex;          /* Horizontal layout */
  gap: 20px;              /* Space between columns */
}

/* Left column - 30% width */
.certificate-left {
  flex: 0 0 40%;
  max-width: 40%;
}

/* Right column - 70% width */
.certificate-right {
  flex: 0 0 60%;
  max-width: 60%;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .certificate-left,
  .certificate-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




.my-slider {
  position: relative;
}

.my-slider__container {
  cursor: grab;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.my-slider__container.dragging {
  scroll-behavior: auto;
  cursor: grabbing;
}

.my-slider__item {
  padding: 16px 8px;
  flex: 0 0 auto;
  width: calc(100% / 5);
}

.my-slider__container[data-step="4"] .my-slider__item {
  width: calc(100% / 3);
}

.my-slider__container[data-step="3"] .my-slider__item {
  width: calc(100% / 3);
}

.my-slider__container[data-step="2"] .my-slider__item {
  width: calc(100% / 2);
}

.my-slider__container[data-step="1"] .my-slider__item {
  width: calc(100% / 1);
}

@media screen and (max-width: 1024px) {
  .my-slider__item,
  .my-slider__container[data-step="4"] .my-slider__item {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 768px) {
  .my-slider__item,
  .my-slider__container[data-step="4"] .my-slider__item,
  .my-slider__container[data-step="3"] .my-slider__item {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 480px) {
  .my-slider__item,
  .my-slider__container[data-step="4"] .my-slider__item,
  .my-slider__container[data-step="3"] .my-slider__item,
  .my-slider__container[data-step="2"] .my-slider__item {
    width: calc(100% / 1);
  }
}

.my-slider__prev,
.my-slider__next {
  font-size: 16px;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #000;
  background: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s;
}

.my-slider__prev {
  left: 16px;
}

.my-slider__next {
  right: 16px;
}

.my-slider__prev:hover,
.my-slider__next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.my-slider__item img {
  height: 270px;
}
.certificate-title,.certificate-desc{
    text-align: left;
}

/* certificate section 4 end  */
.interior-bg{
background: #fff6df;
}
  

.owl-prev::before,.owl-next::before{
     color: black;
    background-color: #ffe090;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 10px;
}

.project-section{
 background: rgb(255, 255, 255);
}



/*Section 6  client section start */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  
  display: flex;
  width: calc(250px * 14);
}
.logo2-section{
animation-direction: reverse !important;
}
.slider .slide {
  height: 100px;
  width: 250px;
}

.logo-container h4{
    color: #8E4009;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-section{
    background: #fff6df;
}
.img-responsive{
   max-width: 75% ; 
}

/* Section 6 client section end */

/* testimoniyals section start */

.testimoni-img{
    max-width: 100% ; 
}
.client-info h4{
font-size: 25px;
}
   .client-info span {
    font-size: 18px;
    font-weight: 600;
}

.client-info p {
    font-size: 16px;
}
.testimoni-item{
  border-radius: 10px;
 height: 240px;
 background: #fff6df;
 border: 0.5px solid #fcd982;
}
.testimoni-item:hover{
  background: #fcd982;
  color: white;
}
/* testimoniyals section end */






/* faq started */


.faq {
  padding: 35px;
  padding-top: 0px;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0 0 12px rgba(0, 0, 0, 0.25); */
}



.faq-item {
  margin-block: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 30px;
   /* background: linear-gradient(45deg, #8E4009, #ffe090); */
   background: linear-gradient(45deg, #884719, #ffe6a5);
  border: none;
  cursor: pointer;
  font-size: 16px; 
  color: #090909;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  max-height: 80px;
}
.callto-1 h3{
  text-transform: uppercase;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fffaf4;
  transition: max-height 0.3s ease;
  padding: 0 30px;
}

.faq-head {
  text-align: center !important;
  padding: 30 0px;
}

.faq-answer p {
  color: #000000;
  ;
  font-size: 14px;
  line-height: 1.4;
  margin: 15px 0;
  text-align: justify;
}

.faq-section {
  padding-top: 50px;
  text-align: center;
    border: none !important;
}
.faq-question:focus,
.faq-question:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}


.arrow {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.arrow.open {
  transform:scale(1.1);


}
.faq-section .container .row{
  justify-content: center;
}

.faq-logo{
height: 25px;
width: 25px;
}

/* faq ended */