* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

p,
ul,
li {
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Source Serif Pro', serif;
}



header .header-top {
  background-color: #f4880f;
  padding: 5px 0px
}

header .top-menu li a {
  color: #fff;
  font-size: 14px;
}

.header-bottom .header-logo {
  text-align: left;
}

.header-bottom .header-logo img {
  width: 220px;
}

.header-bottom {
  padding: 10px 0px;
  background-color: #fff;
}

.header-bottom .header-btn {
  text-align: end;
}

.header-bottom .header-btn a {
  display: inline-block;
  padding: 10px 20px;
  color: black;
  background-color: #c87133;
  cursor: pointer;
  font-size: 18px;
  border: none;
}

.header-bottom .header-btn button:hover {
  background-color: #282d4b;
  color: #fff;
}



.header-bottom .row {
  align-items: center;
}

.header-bottom .botom-nav li a {
  color: #000;
  font-size: 18px;
}


header .header-nav {
  padding: 15px 0;
  /* background-color: #faf7f2; */
}


.header-nav .headermn .logo .navbar-brand img {
  width: 200px;
}

header .header-nav {
  display: none;
}

/* header .offcanvas-header {
  background-color: #faf7f2;
} */

/* header .offcanvas-body{
      background: #faf7f2;
} */
header .offcanvas-body li a {
  color: #000;
  font-size: 18px;
}

#myHeader .header-bottom .book-btn button{
  background:linear-gradient(90deg, #f29113, #ff6a00);
    border-radius: 6px;
    padding: 10px 6px;
    /*margin: 15px 0 0 120px;*/
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 500;
    border: none;
  
}

.sticky {
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed !important;
  top: 0px;
  animation: slideDown .5s ease-out;
  background-color: #fff;
  box-shadow: 0 0 10px #00000021;
}

.sticky .headermn .navbar .navbar-brand {
  width: 9%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(10);
  }
}


/* hero section css */
#hero {
    width: 100%;
   background: url("../images/hero-bg.jpg") no-repeat center;
    background-size: cover;   /* yeh add karo */
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 100px 0;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 55%);
}

#hero .hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

#hero .hero-content {
    max-width: 600px;
}

#hero .hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    color: #f48b10;
    margin-bottom: 25px;
    line-height: 1.2;
}

#hero .hero-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

#hero .hero-points li {
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    padding-left: 28px;
}

#hero .hero-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

#hero .hero-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

#hero .hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f29113, #ff6a00);
    padding: 14px 30px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

#hero .hero-btn:hover {
    transform: translateY(-2px);
}

/* why wellweather section css  */

#why-wellweather {
    background: #f3f3f3;
    padding: 60px 20px;
    text-align: center;
}

#why-wellweather .why-container {
    max-width: 1200px;
    margin: auto;
}

#why-wellweather .why-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

#why-wellweather .why-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

#why-wellweather .why-card {
    background: #fff;
    width: 130px;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

#why-wellweather .why-card img {
    width: 40px;
    margin-bottom: 12px;
}

#why-wellweather .why-card p {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

#why-wellweather .why-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #f29113;
    border-radius: 0 0 10px 10px;
}

#why-wellweather .why-card:hover {
    transform: translateY(-5px);
}


 /* choose type css */
 #ac-type {
  padding: 50px 0;
  background: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

#ac-type .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

#ac-type .title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
    color: #000;
}

#ac-type .ac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#ac-type .ac-card {
  position: relative;
  overflow: hidden;
  height: 180px;
}

#ac-type .ac-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover scale effect */
#ac-type .ac-card:hover img {
  transform: scale(1.1);
}

/* Dark overlay */
#ac-type .ac-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

#ac-type .ac-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}

#ac-type .call-box {
  margin-top: 20px;
}

#ac-type .call-box p {
  font-size: 20px;
  margin-bottom: 15px;
}

#ac-type .call-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f29113, #ff6a00);
  color: #fff;
  padding: 15px 35px;
  font-size: 26px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
}

/* modal  */
.modal-body .btn{
  background:linear-gradient(90deg, #f29113, #ff6a00)!important;
  color: white;
}


/* ac brands */

#ac-brands {
  padding: 70px 0;
  background: #f29113;
  text-align: center;
  font-family: Arial, sans-serif;
}

#ac-brands .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

#ac-brands .brand-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.2;
  color: #000
}

#ac-brands .brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

#ac-brands .brand-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

#ac-brands .brand-card img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

/* Hover effect */
#ac-brands .brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* solution css */

#solution-section {
  padding: 50px 0;
  background: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

#solution-section .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

#solution-section .solution-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
color:#000;
}

#solution-section .solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#solution-section .solution-card {
  position: relative;
  overflow: hidden;
  height: 220px;
}

#solution-section .solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover zoom */
#solution-section .solution-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
#solution-section .solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
#solution-section .solution-text{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;z-index:2}
#solution-section .solution-text span{color:#fff;font-size:28px;font-weight:600;line-height:1.2;    cursor: pointer;
}
#solution-section .call-box{margin-top:50px}
#solution-section .call-box p{font-size:20px;margin-bottom:15px}
#solution-section .call-btn{display:inline-block;background:linear-gradient(90deg, #f38e12, #ff6a00);color:#fff;padding:15px 35px;font-size:20px;font-weight:bold;border-radius:10px;text-decoration:none}

/* store css */
#store-section{padding:50px 0;background:#f29113;text-align:center;font-family:Arial,sans-serif}
#store-section .store-title{font-size:42px;font-weight:700;margin-bottom:50px;color:#000;
}
#store-section .store-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
#store-section .store-card{overflow:hidden;height:200px;position:relative;cursor:pointer}
#store-section .store-card img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;pointer-events:none}
#store-section .store-card:hover img{transform:scale(1.1)}
/* Zoom icon */
#store-section .zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
#store-section .zoom-icon i {
  color: #fff;
  font-size: 40px;
}
#store-section .store-card:hover .zoom-icon {
  opacity: 1;
}
/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}
#lightbox-prev {
  left: 20px;
}
#lightbox-next {
  right: 20px;
}
/* store location css */
#our-stores {
  padding: 70px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

#our-stores .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

#our-stores .store-main-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color:#000;
}

/* Store row layout */
#our-stores .store-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Store wrapper (contains label + card) */
#our-stores .store-wrapper {
  display: flex;
  flex-direction: column;
}

/* Location Label (separate div above card) */
#our-stores .location-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

#our-stores .location-label::before,
#our-stores .location-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #333;
}

/* Store card */
#our-stores .store-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
      height: 475px;
}

#our-stores .store-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

#our-stores .store-content {
  padding: 25px;
}

#our-stores .brand-name {
  color: #f48c11;
  margin-bottom: 10px;
}

#our-stores .store-content h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

#our-stores .phone,
#our-stores .address {
  margin-bottom: 15px;
  font-size: 16px;
}

#our-stores .direction {
  color: #f48c11;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* GMB Icon styling */
#our-stores .gmb-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
  #our-stores .store-row {
    grid-template-columns: 1fr;
  }
  
  #our-stores .store-main-title {
    font-size: 30px;
  }
  
  #our-stores .location-label {
    font-size: 20px;
  }
}
/* call to action css */

#call-to-action {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../images/call-to-action-bg.jpg') 
                no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

#call-to-action .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

#call-to-action h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#call-to-action p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

#call-to-action .cta-btn {
    display: inline-block;
    background: #f48c11;
    color: #fff;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

#call-to-action .cta-btn:hover {
    background: #f48c11;
    transform: translateY(-3px);
}


 /* quickcontact */
.quickcontact {
  width: 45px;
  position: fixed;
  top: 77%;
  right: 15px;
  z-index:102;
}





/* footer css  */

.footer-area {
  background-color:#000;
  position: relative;
  padding: 30px 0px 0px;
}


.footer-area .footer-logo{
    margin-bottom: 20px;
}

.footer-logo img{
  width: 160px !important;
} 
.footer-about p{
  font-size: 14px;
    text-align: justify;
    color: #fff
}

.footer-head {
     color: #f29113;
  font-size: 22px;
  font-weight: 500;
}

.footer-menu ul li {
  list-style: none;
  margin-bottom: 10px;
}
.footer-menu ul li a {
  color: #fff;
  font-size: 15px;
}


.bottom-footer {
  background:linear-gradient(90deg, #f29113, #ff6a00);
  padding: 15px 0px;
}
.foot-prcy p {
  text-align: center;
}



.footer-copyright-text img{
  width: 20%;
}
/* footer css end */


/* about css  */

 
        #about-section {
           padding: 50px 0;
            background: #f1f1f1;
        }

        #about-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        #about-section .heading {
            text-align: center;
            margin-bottom: 60px;
        }

        #about-section .title {
            font-size: 2.8rem;
                color: #000;
            font-weight: 700;
            margin-bottom: 15px;
        }

        #about-section .subtitle {
            font-size: 1.2rem;
            color: #ff6d02;
            font-weight: 500;
        }

        #about-section .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
            margin-bottom: 60px;
        }

        #about-section .image-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        #about-section .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        #about-section .text-content {
            padding: 20px;
        }

        #about-section .description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 2;
            text-align: justify;
        }

        #about-section .highlight {
            color: #ff6d02;
            font-weight: 600;
        }
        
        
        
        
/* testimonial */

#testimonial{padding: 40px 0 40px; overflow: hidden;}
#testimonial h2{color: #000;   font-family: arefRuqaa;}
#testimonial .row{row-gap: 20px; background-color: #fff;}
#testimonial .testimonialslider .owl-item{border: 1px solid gray; padding: 20px; height: 210px; overflow-y: scroll;}
#testimonial .owl-item h5{color: #000; margin: 0px; font-size: 17px; font-weight: bold; font-family: arefRuqaa;}
#testimonial .owl-item p{font-size: 14px; font-family: arefRuqaa;}
#testimonial .iner .google{ width: 40%;}
#testimonial .iner ul li{font-size: 35px; color: #feed00;}
#testimonial .iner h4{margin-top: 10px; font-weight: bold; font-family: arefRuqaa;}
#testimonial .testimonialslider .star li{color: #feed00; font-size: 16px; font-family: arefRuqaa;}
#testimonial .testimonialslider .profile{margin-bottom: 8px;}
#testimonial .testimonialslider .profile li:first-child p{height: 40px; width: 40px; line-height: 40px; font-size: 20px; border-radius: 50%;text-align: center; background-color: #a7a7a7; color: #fff;}
#testimonial .testimonialslider .profile li span{font-size: 14px; font-family: arefRuqaa;}
#testimonial .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background-color: #000;}
