.GetQuotationX{
    margin-bottom: 80px;
  }

  /*  client logo section start ==================*/
  
  .client-logos-wrapper {
  overflow-x: scroll;
}
.client-logos-section {
  background: #fff;
  padding: 20px 0;
}

.client-logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.client-logos-track {
  display: inline-flex;
}

.client-logo-item {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 15px;
}

.client-logo-card {
  padding: 10px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 10px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}




  /*  client logo section end ==================*/

#section-text h1 span.id-color {
    color: #1c4619;
}

#section-text h1 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    color: var(--dark);
    text-align: left;
}

#section-text h2 {
    position: relative; /* Required for ::after to position correctly */
}

#section-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1c4619, var(--secondary));
    border-radius: 2px;
}



section.sectionheadingcolour {
    padding-bottom: 0px!important;
}

  /*  about 2====================*/

  section#custom-carousel-slider{
    margin-top: 130px;
  }

  .company-profile {
    padding: 40px 20px;
    
  }

  .profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .company-photo img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-name: slideInLeft;
    
  }

  .company-description {
    flex: 1 1 400px;
    max-width: 800px;
    color: black;
  }

  .company-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 0ms;
    animation-name: slideInRight;
  }

  .learn-more-button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #1b441b;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .learn-more-button:hover {
    background-color: green;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .profile-wrapper {
      flex-direction: column;
      text-align: center;
    }

    .company-description {
      padding: 0 10px;
    }
  }
  /* about 2 end ==================*/
  
  /* Features Section ==================*/
 
  .sectioncolur{
    font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, var(--primary), var(--secondary))!important;
      color: var(--light);
      min-height: 100vh;
      overflow-x: hidden;
    }
    .sectioncolur1{
    
      background: linear-gradient(135deg, var(--primary), var(--secondary))!important;
      
    }
    i.fas.sectionheadingcolour {
    border: none;
}
    .sectionheadingcolour{
      color: white!important;
    }
  .features-section {
      padding: 80px 20px;
      text-align: center;
      position: relative;
      max-width: 1450px;
      margin: 0 auto;
    }
    
    .section-title1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 60px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
      background: linear-gradient(to right, #fff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .section-title1::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }
    
    .features-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      perspective: 1000px;
    }
    
    .feature-box {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      padding: 40px 25px;
      border-radius: 16px;
      max-width: 280px;
      flex: 1 1 280px;
      text-align: center;
      transition: all 0.4s ease;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .feature-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
      z-index: -1;
    }
    
    .feature-box:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
      background: rgba(255, 255, 255, 0.12);
    }
    
    .feature-box:hover::before {
      transform: translateX(100%);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 180, 216, 0.1);
      border-radius: 50%;
      font-size: 30px;
      color: var(--accent);
      transition: all 0.3s ease;
    }
    
    .feature-box:hover .feature-icon {
      transform: rotateY(180deg);
      background: rgba(0, 180, 216, 0.2);
    }
    
    .feature-box h3 {
      font-size: 1.3rem;
      margin: 15px 0;
      font-weight: 600;
      line-height: 1.3;
    }
    
    .feature-box p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.8);
      margin-bottom: 15px;
    }
    
    .learn-more {
      display: inline-block;
      margin-top: 15px;
      padding: 8px 20px;
      background: transparent;
      color: var(--accent);
      border: 1px solid var(--accent);
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .feature-box:hover .learn-more {
      background: var(--accent);
      color: var(--dark);
      box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
    }
    
    .get-quote {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(to bottom, var(--primary), #b51727);
      color: white;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: 600;
      padding: 20px 12px;
      border-radius: 10px 0 0 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 100;
      box-shadow: -5px 5px 15px rgba(0,0,0,0.2);
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .get-quote::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.1);
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }
    
    .get-quote:hover {
      background: linear-gradient(to bottom, #b51727, var(--primary));
      padding: 20px 15px;
    }
    
    .get-quote:hover::before {
      transform: translateY(100%);
    }
    
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
    }
    
    .floating-element {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      animation: float 15s infinite linear;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      100% {
        transform: translateY(-1000px) rotate(720deg);
      }
    }
    
    /* Responsive */
    @media (max-width: 1200px) {
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .features-section {
        padding: 60px 20px;
      }
      
      .section-title1 {
        font-size: 1.8rem;
        margin-bottom: 40px;
      }
      
      .feature-box {
        max-width: 100%;
        flex: 1 1 100%;
        
      }
      
      .get-quote {
        padding: 15px 10px;
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 480px) {
      .section-title {
        font-size: 1.5rem;
      }
      
      .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
      }
      
      .feature-box h3 {
        font-size: 1.1rem;
      }
    }
  /* Features Section end ==================*/






  /* map and form code start ==================*/
  .contact-section {
      padding: 80px 0;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title {
      font-size: 2.5rem;
      color: var(--primary-dark);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    
    .section-subtitle {
      color: var(--primary);
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .map-container {
      flex: 1 1 50%;
      min-height: 680px;
      position: relative;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .map-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(to bottom, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.3)); */
      pointer-events: none;
    }
    
    .form-container {
      flex: 1 1 45%;
      padding-right: 40px;
      padding-bottom: 40px;
      background: white;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
    }
    
    .form-group {
      margin-bottom: 20px;
      position: relative;
      
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: black;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background-color: #f9f9f9;
    }
    
    .form-control:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
      /* background-color: white; */
    }
    
    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }
    
    .submit-btn {
      background: #1b441b;
      color: white;
      border: none;
      padding: 14px 25px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
    }
    
    .submit-btn:hover {
      background: green;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    }
    
    .contact-info {
      margin-top: 40px;
    }
    
    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .info-icon {
      width: 50px;
      height: 50px;
      background: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--primary);
      font-size: 1.2rem;
    }
    
    .info-content h4 {
      color: var(--primary-dark);
      margin-bottom: 5px;
    }
    
    .info-content p {
      color: var(--text);
    }
    
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
    }
    
    .floating-element {
      position: absolute;
      border-radius: 50%;
      background: rgba(139, 195, 74, 0.1);
      animation: float 15s infinite linear;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      100% {
        transform: translateY(-1000px) rotate(720deg);
      }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .contact-container {
        flex-direction: column;
      }
      
      .map-container, .form-container {
        flex: 1 1 100%;
      }
      
      .map-container {
        min-height: 2px;
      }
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      
      .form-container {
        padding: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .section-title {
        font-size: 1.8rem;
      }
      
      .section-subtitle {
        font-size: 1rem;
      }
      
      .form-container {
        padding: 25px 20px;
      }
      
      .info-item {
        flex-direction: column;
        text-align: center;
      }
      
      .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
      }
    }
/* map and form code end ==================*/







  
	.text-black{
		color:#000 !important;
	}
.top-header-section{
position: fixed;
top:0px;


}
#section-services h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1c4619, #03a84e);
    border-radius: 2px;
}
.font{font-size: 20px!important;
  color: #000;
  text-align: center;
  font-family:'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 0%;
}
  

*, ::after, ::before {
    box-sizing: border-box;
}


/* new code today */

/* new hover effect */
body.de_light, .de_light, .text-dark, .modal-body

 {
    color: white;
}
  .section1 {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 20px 0px;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
    }

    .image-box {
      /* flex: 1 1 400px; */
      max-width: 500px;
      padding: 20px 0px;
      perspective: 1000px;
      margin-top: 20px;
    }

    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 50px 0 50px 0;
      /* box-shadow: 0 12px 30px rgba(0,0,0,0.15); */
      transition: all var(--transition-speed) ease;
      transform-style: preserve-3d;
      box-shadow: 1px 2px 4px 1px #1b441b;
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      /* transition: all var(--transition-speed) ease; */
      transform-origin: center center;
    }

    .image-box:hover .image-container {
    
    border-top-left-radius: 0%;
    border-bottom-right-radius: 0%;
    box-shadow: 2px 4px 8px #1b441b;
    transform: scale(1.07);
    transition: all 2s;
}
    

    .image-box:hover .image-container img {
      transform: scale(1.03);
      filter: brightness(1.05);
    }

    .content-box {
      flex: 1 1 400px;
      padding: 20px;
    }

    .content-box h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--secondary-color);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    .h1 {
        font-size: 32px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: var(--primary-color);
        transition: width var(--transition-speed) ease;
    }

    .h1:hover::after {
        width: 100px;
    }

    .content-box h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: var(--primary-color);
      transition: width var(--transition-speed) ease;
    }

    .content-box:hover h2::after {
      width: 100px;
    }

    .advantage-title {
      font-style: italic;
      font-weight: 600;
      font-size: 22px;
      margin: 25px 0 10px;
      color: var(--secondary-color);
    }

    .underline {
      width: 50px;
      height: 3px;
      background-color: var(--primary-color);
      margin: 5px 0 25px 0;
      transition: width var(--transition-speed) ease;
    }

    .content-box:hover .underline {
      width: 70px;
    }

    .advantages {
      list-style: none;
      padding-left: 0;
    }

    .advantages li {
      margin-bottom: 15px;
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: flex-start;
      transition: all 0.3s ease;
      padding: 8px 12px;
      border-radius: 6px;
      background: rgb(27 68 27);
    }

    .advantages li:hover {
      transform: translateX(8px);
      color: var(--primary-color);
      background: white;
    }
    .advantages li i {
    color: var(--primary-color);
    margin-right: 8px;
    margin-top: 5px;
    font-size: 18px;
}

    /* .advantages li::before {
      content: "\f0a4";
      color: var(--primary-color);
      margin-right: 12px;
      font-weight: bold;
      font-size: 18px;
      margin-top: 2px;
    } */
    section#section-slider
      {
          height: 740px;
      }

    @media (max-width: 768px) {
      #section-text::before{
        background: none !important;
      }
    section#section-slider
      {
        height: 400px;
      }
      .section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
      }
      
      .content-box {
        text-align: center;
      }
      
      .content-box h2::after,
      .underline {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .advantages li {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .content-box h2 {
        font-size: 28px;
      }
      
      .advantage-title {
        font-size: 20px;
      }
      
      .advantages li {
        font-size: 16px;
      }
    }
  
/* end */

.stats-section {
      background: url('flash_images/1.jpg') no-repeat center center/cover;
      color: white;
      padding: 60px 20px;
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      position: relative;
          background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    }

    .stats-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.6); /* Overlay for contrast */
      z-index: 1;
    }

    .stat-box {
      position: relative;
      z-index: 2;
    }

    .stat-number {
      font-size: 36px;
      font-weight: bold;
    }

    .stat-label {
      font-size: 18px;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .stats-section {
        flex-direction: column;
        align-items: center;
      }
    }
/* new code end */



/* Logo Carousel Styles */
.logo-carousel-section {
  padding: 80px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #18245b;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00a1ff, #0066ff);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}


.logo-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.logo-item {
  flex: 0 0 calc(100% / 6);
  padding: 0 15px;
  min-width: 150px;
}

.logo-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 161, 255, 0.15);
  border-color: rgba(0, 161, 255, 0.2);
}

.logo-img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}




.logo-card:hover .logo-img {
  
  transform: scale(1.05);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  color: #18245b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #00a1ff;
  color: white;
  transform: scale(1.1);
}

.control-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #00a1ff;
  transform: scale(1.2);
}




:root {
            --primary: #1b441b;
            --secondary:#198754;
            --accent:#03a84e;
            --light: #f8f9fa;
            --dark: #1a1a2e;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: #f5f7fa;
        }
        
        /* Feature Boxes Section */
        #section-text-2 {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }
        
        #section-text-2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
            opacity: 0.03;
            z-index: 0;
        }
        
        .box-number {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            height: 300px;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .box-number::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1c4619, #03a84e);
            opacity: 0;
            z-index: -1;
            transition: all 0.5s ease;
        }
        
        .box-number:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .box-number:hover::before {
            opacity: 1;
        }
        
        .box-number i {
            font-size: 2.5rem;
            margin-bottom: 25px;
            display: inline-flex;
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .box-number:hover i {
            background: white;
            color: var(--primary);
            transform: rotate(15deg) scale(1.1);
        }
        
        .box-number h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .box-number:hover h3 {
            color: white;
        }
        
        .box-number p {
            color: #666;
            line-height: 1.7;
            transition: all 0.3s ease;
        }
        
        .box-number:hover p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Welcome Section */
        #section-text {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        #section-text::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, #1c4619, #03a84e);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
            z-index: 0;
        }
        
        .de-images {
            position: relative;
            z-index: 1; 
        }
        .de_light a, .de_light a:hover {
    color:white;
    font-weight: 1000;

}
a.btn-slider {
    color:white;
    font-weight: 1000;
}
a.btn-slider:hover {
    color:black;
    font-weight: 1000;
}
        .de-images img {
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
        }
        
        .de-images:hover img {
            transform: scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .di-box-2 {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: linear-gradient(135deg, #1c4619, #1c4619);
            z-index: 3;
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
            transition: all 0.5s ease;
        }
        
        .de-images:hover .di-box-2 {
            transform: rotate(5deg) scale(1.05);
        }
        
        .de_count h3 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0;
            line-height: 1;
        }
        
        .de_count span {
            font-size: 1.1rem;
            color: white;
            opacity: 0.9;
        }
        
        #section-text h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            position: relative;
            color: var(--dark);
        }
        
        #section-text h2 span.id-color {
            color: #1c4619;
        }
        
        #section-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1c4619, var(--secondary));
            border-radius: 2px;
        }
        
        #section-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .btn-custom {
            display: inline-flex;
            align-items: center;
            padding: 15px 35px;
            background: linear-gradient(135deg, #1c4619, #1c4619);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: none;
        }
        
        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .btn-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
        }
        
        .btn-custom:hover::before {
            left: 100%;
        }
        
        .btn-custom i {
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover i {
            transform: translateX(5px);
        }
        
        /* Floating Particles */
        .particle {
            position: absolute;
            background: rgba(0, 161, 255, 0.2);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            #section-text h2 {
                font-size: 2.4rem;
            }
            
            #section-text::before {
                width: 50%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
            }
        }
        
        @media (max-width: 991px) {
            #section-text-2 {
                padding: 60px 0;
            }
            
            #section-text {
                padding: 80px 0;
            }
            
            #section-text::before {
                width: 100%;
                height: 40%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
                top: auto;
                bottom: 0;
            }
            
            .box-number {
                padding: 30px 20px;
            }
            
            .box-number i {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
        }
        @media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
        margin-bottom: auto;
    }
}
        
        @media (max-width: 767px) {
            #section-text h2 {
                font-size: 2rem;
            }
            
            .de_count h3 {
                font-size: 2.5rem;
            }
            
            .di-box-2 {
                width: 150px;
                height: 150px;
                bottom: -20px;
                right: -20px;
            }
        }


.creative-testimonials {
  position: relative;
  padding: 0px 0;
  background: #f8fafc;
}

.testimonial-canvas {
  position: relative;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
}

.circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #00a1ff;
  top: -100px;
  right: -100px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 260px solid #ff6b00;
  bottom: -100px;
  left: -100px;
  transform: rotate(15deg);
}

.wave {
  width: 400px;
  height: 200px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%2318c29e" opacity=".25"/></svg>');
  background-size: cover;
  top: 50%;
  right: 20%;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #18245b;
}

.section-title span {
  background: linear-gradient(90deg, #00a1ff, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.medium {
  grid-column: span 1;
  grid-row: span 1;
}

.small {
  grid-column: span 1;
  grid-row: span 1;
}

.card-content {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.client-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #f1f5f9;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #18245b;
}

.client-info p {
  font-size: 0.9rem;
  color: #64748b;
}

.client-rating {
  margin-left: auto;
  color: #ffcc00;
}

.testimonial-text {
  flex-grow: 1;
  position: relative;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #334155;
}

.large .testimonial-text p {
  font-size: 1.3rem;
}

.quote-icon {
  position: absolute;
  font-size: 5rem;
  color: #f1f5f9;
  z-index: 0;
  top: -20px;
  left: -10px;
}

.testimonial-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.play-audio, .share-testimonial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-audio:hover {
  background: #00a1ff;
  color: white;
}

.share-testimonial:hover {
  background: #18245b;
  color: white;
}

.view-all-btn {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 15px 30px;
  background: linear-gradient(90deg, #00a1ff, #0066ff);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 161, 255, 0.3);
}

.view-all-btn i {
  margin-left: 10px;
  transition: all 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Layout */
@media (max-width: 1199px) {
  .testimonial-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .large {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .creative-testimonials {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .testimonial-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .large {
    grid-column: span 2;
  }
}

.gradient-cta-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}

.cta-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 74%;
  background: linear-gradient(135deg, #1c4619, #03a84e);
  z-index: -2;
}

.cta-light-effect {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,198,255,0.15) 0%, rgba(0,114,255,0) 70%);
  z-index: -1;
  transform: rotate(30deg);
}

.cta-gradient-heading {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-main-text {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff, #d1e8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-sub-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 90%;
}

.gradient-cta-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1c4619, #1c4619);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
  z-index: 1;
}

.button-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.button-icon {
  position: relative;
  z-index: 2;
  margin-left: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.button-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c4619, #1c4619);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.gradient-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.gradient-cta-button:hover .button-text {
  transform: translateX(-5px);
}

.gradient-cta-button:hover .button-icon {
  transform: translateX(5px);
}

.gradient-cta-button:hover .button-gradient-overlay {
  opacity: 1;
}

/* Services Section */
        #section-services {
            padding: 0px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        }
        
        #section-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
            opacity: 0.03;
            z-index: 0;
        }
        
        #section-services h2 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 60px;
            position: relative;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        #section-services h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1c4619, var(--secondary));
            border-radius: 2px;
        }
        
        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            background: white;
            z-index: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1c4619, #03a84e);
            opacity: 0;
            z-index: -1;
            transition: all 0.5s ease;
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-img-container {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .product-card:hover .product-img-container img {
            transform: scale(1.1);
        }
        
        .product-img-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #1c4619;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        
        .product-content {
            padding: 30px;
            position: relative;
            z-index: 2;
            transition: all 0.5s ease;
        }
        
        .product-card:hover .product-content {
            color: white;
        }
        
        .product-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .product-card:hover .product-content h3 {
            color: white;
        }
        
        .product-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.7;
            transition: all 0.3s ease;
        }
        
        .product-card:hover .product-content p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .btn-explore {
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            background: linear-gradient(135deg, #1c4619, #1c4619);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
            position: relative;
            overflow: hidden;
            border: none;
        }
        
        .btn-explore::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .btn-explore:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
        }
        
        .btn-explore:hover::before {
            left: 100%;
        }
        
        .btn-explore i {
            margin-left: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-explore:hover i {
            transform: translateX(5px);
        }
        
        /* Floating Particles */
        .particle {
            position: absolute;
            background: rgba(0, 161, 255, 0.2);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }


@media only screen and (min-width:320px) and (max-width:480px) and (orientation:portrait){
.top-header-section{
position: fixed;
top:0px;
}
}


@media only screen and (min-width:768px) and (max-width:912px) and (orientation:portrait){
.top-header-section{
position: fixed;
top:0px;
}
}

.info {
    padding: 3px;
}




/* Core Styles */
/* Reset and base styles */

/* Slider container */
.sliderContainerX {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    height: 700px;
}

/* Slider track */
.sliderTrackX {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    margin-top: 130px;
}

/* Individual slides */
.slideItemX {
    min-width: 100%;
    position: relative;
}

.slideImageX {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide content */
.slideContentX {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    max-width: 500px;
    
    padding: 30px;
    border-radius: 8px;
}

.slideTitleX {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 5px 2px 10px #1b451b;
    color:white !important;
}

.slideTextX {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Contact button */
.contactBtnX {
    background-color: #1b451b;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contactBtnX:hover {
    background-color:#1b451b;
}

/* Navigation arrows */
.sliderArrowX {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    z-index: 10;
    transition: background-color 0.3s;
}

.sliderArrowX:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prevArrowX {
    left: 20px;
}

.nextArrowX {
    right: 20px;
}

/* Navigation dots */
.sliderDotsX {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dotItemX {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dotItemX:hover, .activeDotX {
    background-color: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .sliderContainerX {
        height: 600px;
    }
    
    .slideContentX {
        bottom: 15%;
        padding: 20px;
    }
    
    .slideTitleX {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sliderContainerX {
        height: 500px;
        margin-top: -100px;
    }
    
    .slideContentX {
        left: 5%;
        right: 5%;
        max-width: none;
        bottom: 10%;
    }
    
    .slideTitleX {
        font-size: 1.8rem;
    }
    
    .slideTextX {
        font-size: 1rem;
    }
    
    .contactBtnX {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .sliderContainerX {
        height: 400px;
        /* margin-top: 100px; */
    }
    
    .slideContentX {
        padding: 15px;
        bottom: 5%;
        
    }
    
    .slideTitleX {
        font-size: 1.5rem;
        
    }
    
    .sliderArrowX {
        padding: 10px;
        font-size: 1.5rem;
    }
    
    .dotItemX {
        width: 10px;
        height: 10px;
    }
}



  /* Client logo section */
  .client-logos-section {
    background: #fff;
    padding: 20px 0;
  }
  
  .client-logos-wrapper {
    overflow-x: scroll;
    white-space: nowrap;
    width: 100%;
  }
  
  .client-logos-track {
    display: inline-flex;
  }
  .client-logos-wrapper {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  
  .client-logos-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  .client-logo-item {
    flex: 0 0 auto;
    width: 160px;
    margin: 0 15px;
  }
  
  .client-logo-card {
    padding: 10px;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-logo-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
  }





/* Logo Carousel Styles */
.logo-carousel-section {
  padding: 80px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #18245b;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00a1ff, #0066ff);
}

.section-subtitle {
  font-size: 1.1rem;
  /* color: #64748b; */
  max-width: 700px;
  margin: 0 auto;
}

.logo-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: calc(200px * 16); /* Width of all logos */
}

.logo-item {
  flex: 0 0 200px;
  padding: 0 15px;
}

.logo-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 161, 255, 0.15);
  border-color: rgba(0, 161, 255, 0.2);
}

.logo-img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  
  transition: all 0.3s ease;
}

.logo-card:hover .logo-img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 8)); /* Move by half the width */
  }
}

/* Pause animation on hover */
.logo-carousel-container:hover .logo-carousel-track {
  animation-play-state: paused;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .logo-carousel-track {
    width: calc(180px * 16);
    animation-duration: 25s;
  }
  
  .logo-item {
    flex: 0 0 180px;
  }
  
  @keyframes scroll {
    100% {
      transform: translateX(calc(-180px * 8));
    }
  }
}

@media (max-width: 991px) {
  .logo-carousel-section {
    padding: 60px 0;
  }
  
  .logo-carousel-track {
    width: calc(160px * 16);
    animation-duration: 20s;
  }
  
  .logo-item {
    flex: 0 0 160px;
  }
  
  @keyframes scroll {
    100% {
      transform: translateX(calc(-160px * 8));
    }
  }
  
  .logo-card {
    height: 100px;
    padding: 20px;
  }
  
  .logo-img {
    max-height: 60px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .logo-carousel-track {
    width: calc(140px * 16);
    animation-duration: 15s;
  }
  
  .logo-item {
    flex: 0 0 140px;
    padding: 0 10px;
  }
  
  @keyframes scroll {
    100% {
      transform: translateX(calc(-140px * 8));
    }
  }
  
  .logo-card {
    height: 90px;
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .logo-carousel-track {
    width: calc(120px * 16);
  }
  
  .logo-item {
    flex: 0 0 120px;
  }
  
  @keyframes scroll {
    100% {
      transform: translateX(calc(-120px * 8));
    }
  }
}






.flBtnCntr {
  display: inline-flex;
  position: fixed;
  bottom: 300px;
  left: 10px;
  z-index:999999;
}
.flBtnBox {
  outline: 0;
  border: 0;
  border-radius: 50%;
  background-color: #2978d3;
  color: #fff;
  cursor: pointer
}
.flBtnBox.big1 {
  background-color: #2978d3;
  font-size: 30px;
  height: 60px;
  width: 60px;
  display:none;
}
.flBtnBox.small1 {
  /*animation: showBtn 150ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;*/
  /*transform: scale(0);*/
  background-color: #363636;
  margin: 5px 5px;
  font-size: 25px;
  height: 50px;
  width: 50px;
}
.flBtnBox.small1:nth-child(2) {
  animation-delay: 150ms
}
.flBtnBox.small1:nth-child(3) {
  animation-delay: 300ms
}
@keyframes showBtn {
  0% {
    transform: scale(0)
  }
  100% {
    transform: scale(1)
  }
}
.flBtnBox.big1:hover {
  box-shadow: 0 0 10px rgba(41,120,211,0.4)
}
.flBtnBox.small1:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.3)
}
.flBtns {
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
 /* display: none;*/
  /*display: inline-flex;*/
  display:block;
  padding: 0 5px;
  align-items: center
}
/*************** Live Chat ************************/

.modaldolly {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index:999; /* Sit on top */
  padding-top:20px; /* Location of the box */
  left: 0;
  top: 0;
  overflow:hidden;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* modaldolly Content */
.modaldolly-content2 {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width:30%;
  top:10px;
}

/* The closechat2 Button */
.closechat2 {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closechat2:hover,
.closechat2:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}



@media only screen and (min-width:320px) and (max-width:480px) and (orientation:portrait){
.modaldolly-content2{
      background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width:100%;
  top:10px;
}



}
