/* ==================================================================
     about
================================================================== */
.about-scn{
    padding: 50px 0;
    p{
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.7;
        color: rgb(132, 134, 160);
        text-align: center;
    }
}
/* ==================================================================
     about END
================================================================== */


/*==================================================================
                     logo slider END
==================================================================*/
.logo-slider-scn{
    padding-bottom: 10vh;
    width: 100%;
    .title{
      padding-bottom: 0;
      margin-bottom: 0;
      font-weight: bold;
      font-size: 3rem;
    }
    .sub-title{
      color: gray;
    }
    .cards{
      grid-template-columns: repeat(4,1fr);
      gap: 15px;
      .card{
        padding: 50px 20px;
        border-radius: 10px;
        background: #eee9e975;
        /* ackdrop-filter: blur(10px); */
        backdrop-filter: blur(2px);
        padding: 20px;
        height: 200px;
        .logo{
          width: 100%;
          height: 100%;
        }
      }
    }
    /* slider */
    .slider {
      /* height: 100px; */
      padding: 15px 0;
      margin: auto;
      overflow: hidden;
      position: relative;
      width: auto;
    }
    .slider .slide-track {
      animation: scroll 40s linear infinite;
      display: flex;
      width: calc(450px * 14);
      gap: 20px;
    }
    .slider.slider-2 .slide-track {
      animation: scroll-2 40s linear infinite;
      display: flex;
      width: calc(450px * 14);
      gap: 20px;
      justify-content: flex-end;
    }
    .slider .slide {
      height: 200px;
      width: 300px;
      padding: 50px 20px;
        border-radius: 10px;
        background: #eee9e975;
        /* ackdrop-filter: blur(10px); */
        backdrop-filter: blur(2px);
        padding: 20px;
    }
    /* slider END */
  }
  @media screen and (max-width:765px) {
    .scn-6.clients{
      .cards{
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        padding: 0 10px;
      }
    }
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  @keyframes scroll-2 {
    0% {
      transform: translateX(calc(-100% + 100vw));
    }
    100% {
      transform: translateX(calc(250px * 5));
    }
  }
  /*==================================================================
                        logo slider END
  ==================================================================*/


  /* blog css */

  .hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: revert;
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* .btn {
    background: #f0a500;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    text-decoration: none;
  } */
  
  .blog-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  
  .post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .post-card img {
    width: 100%;
    height: auto;
  }
  
  .post-info {
    padding: 1rem;
  }
  
  .post-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  /* .read-more {
    color: #f0a500;
    text-decoration: none;
  }
   */

   
/* External CSS file */

/* Default style for desktop */
.shop_title {
  text-align: center;
  margin-top: 50px;
}

.shop_title h2 {
  font-size: 36px;
  color: #333;
}

/* Responsive style for mobile view */
@media (max-width: 768px) {
  .shop_title {
    margin-top: 30px;
  }

  .shop_title h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .shop_title {
    margin-top: 20px;
  }

  .shop_title h2 {
    font-size: 24px;
  }
}


/*  FAQ ================================================================START*/
.details{
  --padding: 10px;
  border: 1px solid #8d8d8d;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  font-size: medium;
}

.details + .details{
  margin-top: 15px;
}

.details__title{
  --width: 20px;
  --height: 3px;
  --radius: 1px;
  --color: currentColor;
  margin:0;
  padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding);
  cursor: pointer;
  transition: all .2s ease-in-out;
  position: relative;
  font-size:large;
}

.details__title:before,
.details__title:after{
  content:'';
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--color);
  position: absolute;
  border-radius: var(--radius);
  top: calc(50% - (var(--height) / 2));
  right: calc(var(--width) / 2);
  transition: all .2s ease-in-out;
}

.details__title:after{
  rotate: 90deg;
}

.details__container[open] .details__title:before{
  rotate: 45deg;
  /* rotate: 135deg; */
}

.details__container[open] .details__title:after{
  rotate: 135deg;
  /* rotate: 225deg; */
}

.details__container[open] .details__title{
  background-color: #f3f3f3;
}

.details__summary::marker{
  content:'';
}

.details__desc{
  display: grid;
  grid-template-rows: 0fr;
  transition: all .2s ease-in-out;
  overflow: hidden;
  padding-inline: var(--padding);
  pointer-events: none;
}

.details__container[open] + .details__desc{
  grid-template-rows: 1fr;
  padding-block: var(--padding);
}

.details__desc-inner{
  min-height: 0;
}

/* FAQ ================================================================== END*/


/* WHATSAPP===================================================================START */

.quick_whtsp{
  font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid;
    border-radius: 5px;
    position: fixed;
    right: 10px;
    bottom: 25%;
    z-index: 999;
    background: linear-gradient(15deg, #15774a, #26a76b);
    transform: translateX(100%);
    opacity: 0;
    transition: 1s;
}
/* WHATSAPP===================================================================END */

/* .service-scn{
  font-size: large;
} */

/* CARD SECTION CSS START */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: initial;
}

.header {
  text-align: center;
  padding: 20px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header h2 {
  font-size: 2rem;
  color: black;
}

.header p {
  font-size: 1rem;
  color: #666;
}

.content .card {
  background-color: #ffffff;
  margin: 15px 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content .card:hover {
  transform: translateY(-5px);
  background-color: #f48c21;
  color: white;
}

.content .card h2 {
  color: black;
  margin-bottom: 10px;
  font-size: large;
}

.content .card p {
  color: #333;
  font-size: medium;
}
.content .card p:hover{
  color: white;
}

.content .card h2:hover{
  color: white;
}

@media (min-width: 768px) {   
  .header h1 {
      font-size: 2.5rem;
  }
  .content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }
}

@media (min-width: 1024px) {
  .content {
      grid-template-columns: 1fr 1fr 1fr;
  }
}
/* CARD SECTION CSS END */

/* WHY CHOOSE US CSS START */



/* WHY CHOOSE US CSS END */

.visit{
  text-align: center;
}


/* WHATSAPP CSS START */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon a {
  color: white;
  font-size: 30px;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background-color: #1EBE5D;
  transition: background-color 0.3s;
}

/* WHATSAPP CSS END */

/* BLOG PAGE CSS START */

.card {
  max-width: 300px;
}

.card-body {
  padding: 10px; /* Decrease padding */
}

.col-md-4, .col-sm-6 {
  padding: 5px; /* Adjust for spacing between cards */
}

.card-img-top {
  max-height: 200px; 
  object-fit: cover; 
}

.card-title {
  margin-bottom: .5rem;
  font-size: medium;
}

/* .card-text:last-child {
  margin-bottom: 0;
  text-align:center;

} */

/* BLOG PAGE CSS END */
.animated-button {
  background-color: #f48c21; 
  color: white;
  border: none; 
  padding: 10px 20px; 
  font-size: 16px; 
  cursor: pointer; 
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 5px;
}

/* Hover effect */
.animated-button:hover {
  transform: translateY(-5px); 
}

.blog-image {
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}


.blog-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.blog-description {
  font-size: 16px;
  color: #555;
}
/* Responsive styling */
@media (max-width: 600px) {
  .blog-title {
    font-size: 20px;
  }
  .blog-description {
    font-size: 14px;
  }
}