* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* --------- Top Bar --------- */
.top-bar {
  background: #8de523;
  color: #fff;
  padding: 10px 25px;
  text-align: left;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-bar div {
  margin: 3px 0;
}

/* --------- Navbar --------- */
.navbar{
  position:sticky;top:0;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  border-bottom:1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index:1000;
}
.logo img{ width: 230px;
  height: 90px;
  object-fit:cover;
  }
.nav-links{
  list-style:none;
  display:flex;
}
 .nav-links li {
      margin-left: 30px;
    }
.nav-links a{
  text-decoration:none;
  color:#000;
  padding: 6px 8px;
  border-radius: 4px;
  font-weight:500;
  transition:.3s;
}
.nav-links a:hover,
    .nav-links a.active {
      background: #e53935;
      color: #fff;
    }

.menu-btn{
  display:none;
  font-size:30px;
  background:none;
  border:none;
  cursor:pointer;
}

/* ---- Mobile ---- */
@media(max-width:768px){
  .menu-btn{display:block;}
  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width: 100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px 0;
    border-left:1px solid #ddd;
    border-bottom:1px solid #ddd;
    display:none;      
  }
  .nav-links.show {
        display: flex;
      }

      .nav-links li {
        margin: 5px 0;
        text-align: center;
      }
  .nav-links a{display:block;width:100%;padding:12px 20px;}
}

/* --------- Slider --------- */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.caption {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(174, 155, 139, 0.5);
  padding: 20px 30px;
  text-align: center;
  border-radius: 8px;
}

/* ---------- SECTIONS ---------- */
 section {
      padding: 50px 20px;
    }

h2.section-title {
      text-align: center;
      margin-bottom: 20px;
      font-size: 32px;
      color: #222;
    }

/* --------- About Section --------- */

.about-container {
  display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around;
      gap: 40px;
    }

.about-text {
  flex: 1 1 500px;
   padding: 20px;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 16px;
}

.about-btn {
  display: inline-block;
   padding: 10px 18px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  border-radius: 30px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #e308d0;
  color: #fff;
  border-color: #d8199f;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 6px;
}

/* --------- Services Section --------- */
.services-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.services-container h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.0s;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 20px rgba(0, 0, 0, 0.35);
}

.service-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}



/* ---------- STATS ---------- */
.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.stat-box {
  background: #aa8e45;
  border-radius: 10px;
  padding: 20px 40px;
  flex: 1 1 200px;
  box-shadow: 5 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform .2s ease, box-shadow .5s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.20);
}


.stat-box .counter {
  display: block;
  font-size: 50px;
  color: #e3000f;
  font-weight: 700;
}

.stat-box p {
  margin-top: 10px;
  font-size: 20px;
  color: #333;
  padding-bottom: 60px;
}

/* ---------- CLIENTS ---------- */
.section-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
      margin-top: 50px;
    }

    .subtitle {
      font-size: 18px;
      color: #666;
      text-align: center;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
      padding: 5px;
      max-width: 1000px;
      margin: 0 auto;
      padding-bottom: 50px;
    }

    .logo-box {
      background-color: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .logo-box:hover {
      transform: scale(1.05);
    }
.logo-box img {
     max-width: 150px;
    }
/* 🌐 Responsive Design */
    @media (max-width: 1024px) {
      .logo-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .logo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .logo-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        font-size: 24px;
        text-align: center;
      }

      .subtitle {
        font-size: 16px;
      }
    }

 /* ---------- TESTIMONIALS ---------- */
.testimonials {
  text-align: center;
   background: #f7f7f7;
}

.test-wrap {
  max-width: 700px;
  
  background: #ebb4b4;
  border-radius: 12px;
  padding: 40px;
  margin: auto;
  margin-bottom: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06)
}

.test-slide {
  display: none
}

.test-slide.active {
  display: block;
  animation: fade .6s ease
}

.test-slide img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px
}


.dots {
  text-align: center;
  margin-top: 6px
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition:.2s
}

.dot.active {
  background: #d81919
}

@keyframes fade {
  from {
    opacity: .3
  }

  to {
    opacity: 1
  }
}

/* small */
@media(max-width:720px) {
  .hero-caption h1 {
    font-size: 20px
  }

  .hero-slider {
    height: 45vh
  }

  .about-container,
  .why-container {
    flex-direction: column;
    align-items: stretch
  }
}


/* --------- Responsive --------- */
@media(max-width:768px) {
  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  .caption h2 {
    font-size: 22px;
  }

  .caption p {
    font-size: 16px;
  }
}







/* Layout */
.contact-section{
  display:grid;
  grid-template-columns: 250px 1fr 1fr;
  gap:30px;
  max-width:1200px;
  margin:0px auto;
  padding:0 20px;
}

/* Sidebar Blob */
.sidebar{
  background:#fff;
  padding:30px 25px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.sidebar h2{margin-bottom:20px;}
.sidebar ul{list-style:disc;padding-left:15px;}
.sidebar li{margin:15px 0;}
.sidebar a{text-decoration:none;color:#333;transition:.3s;}
.sidebar a:hover{color:#e53935;}


/* Info + Map */
.info-map{
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.info-block{margin-bottom:20px;}
.icon-text{display:flex;align-items:flex-start;margin-bottom:15px;}
.icon{font-size:28px;margin-right:12px;}

/* Map */
.map-box iframe{
  width:100%;
  height:250px;
  border:0;
  border-radius:10px;
}

/* Quote Form */
.quote-form{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.quote-form h2{margin-bottom:20px;}
.quote-form input,
.quote-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:4px;
  font-size:15px;
}
.radio-group{margin-bottom:15px;}
.radio-group label{display:block;margin:5px 0;}
.quote-form button{
  background:#4CAF50;
  color:#fff;
  padding:12px 25px;
  border:none;
  border-radius:4px;
  cursor:pointer;
  font-size:16px;
}
.quote-form button:hover{background:#43a047;}

/* Responsive */
@media(max-width:992px){
  .contact-section{grid-template-columns:1fr;gap:20px;}
}


.social_icons{

  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 0px;
  right: 20px;
  background: rgb(14, 210, 11);
  border-radius: 50%;
  margin-bottom: 25px;
  
}
.social_icons:hover
{

  transform: scale(1.1);
  transition: 2s;
}

i{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 18%;
}



@media(max-width:992px){
 

  .social_icons{
    text-align: right;
    padding: 10px;
    background: rgb(14, 210, 11);
    border-radius: 50%;
    margin-bottom: 10px;
   
    
   
  
    i
    {
      width: 50px;
  height: 50px;
      padding-right: 20px;
    }
  }
}