.banner-section {
  
  padding: 60px;
  background: #f5f8ff;
 
}

/* .banner-content {
  width: 50%;
} */

.banner-icon{
  font-size: 20px;
  color: #E2B811;
  font-family: "Satisfy", cursive;
}
.banner-icon i{
    font-size: 20px;
}
.banner-content h1 {
  font-size: 40px;
  color: #9D9D9D;
  margin-bottom: 15px;
}

.banner-content h1 span {
  color:#084A79; 
  font-weight: 700;
}

.banner-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 45px;
}

.cta-button {
  padding: 12px 24px;
  background: #084A79;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 40px;
}

.cta-button:hover {
  background: #004cb8;
}


.banner-image-box {
  /* width: 50%; */
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 10px solid #084A79;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out, background-position 10s linear;
  opacity: 0;
}

.slide.active {
  opacity: 1;
  /* animation: backgroundPan 20s infinite linear; */
}

@keyframes backgroundPan {
  0% { background-position: 50% 50%; }
  50% { background-position: 55% 45%; }
  100% { background-position: 50% 50%; }
}

.overlay-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 12px 24px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 8px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide:hover .overlay-text {
  transform: scale(1.05);
  opacity: 1;
}

.happy-customers {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.avatars {
  display: flex;
  /* margin-right: 10px; */
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 0 0 1px #ccc;
}

.avatars img:first-child {
  margin-left: 0;
}

.customer-text {
  font-size: 14px;
  color: #444;
  /* background-color: rgb(236, 236, 236); */
  padding: 7px 10px 7px 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  /* border-radius: 20px; */
  border: 2px solid rgb(176, 176, 176);
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: rgb(176, 176, 176);
  border-left: none;
  margin-left: -10px;
}

.brands-section {
  padding: 30px 20px;
  /* background-color: #f9f9f9; */
  background-color: #f5f8ff;
  text-align: center;
  overflow: hidden;
 
}

.brands-logos-wrapper {
  overflow: hidden;
  width: 100%;
}

.brands-logos {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.brands-logos img {
  height: 60px;
  width: 160px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.brands-logos img:hover {
  opacity: 1;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.who-we-are-section {
 
  background: #fff;
  height: auto;
  width: 100%;
}


.image-box {

  border: 3px solid #fff;
   border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px;
    border-radius: 24px;
    z-index: 2;
    
}
.img-cont{
    /* display: block; */
   
}

.img1 { 
    z-index: 2;
    width: 240px; 
    border: 2px solid #26b34a; 
 }
.img2 { 
 
      width: 240px; 
     
      border: 2px solid #ff6d00; }
.img3 { 
 
  width: 240px;
  border: 2px solid #8e44ad; }

.outline {
  /* position: absolute; */
  border: 2px solid;
  border-radius: 20px;
  opacity: 0.3;
}

.blue {
  left: 206px;
  width: 80px;
  height: 80px;
  border-color: #007bff;
}

.yellow {
 /* bottom: -450px;
  right: 200px; */
  width: 60px;
  height: 60px;
  border-color: #2c7331;
}

.purple {
  /* top: 220px;
  right: 60px; */
  width: 70px;
  height: 70px;
  border-color: #8e44ad;
}
.orange {
  /* bottom: -30px;
  right: 160px; */
  margin-top: 60px;
  width: 70px;
  height: 70px;
  border-color: orange;
}

.who-title{
  font-size: 3rem;
  font-weight: 700;
  color: #084A79;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 2rem;
}


   
        
        .who-title::after {
            content: '';
            position: absolute;
            left: 30%;
            bottom: -10px;
            width: 100px;
            height: 4px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #084A79, #084A79, #fff); /* Two-color gradient */
            border-radius: 2px;
        }
        
         .mission-box {
            /* background: rgba(255, 255, 255, 0.9); */
            border-radius: 10px;
            /* padding: 30px; */
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
            margin-bottom: 60px;
            
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
            color: black;
           
        }

        .mission-box h3 {
            font-size: 1.5rem;
            color: #3498db;
            margin-bottom: 15px;
        }

        .mission-box p {
            color: #555;
        }

        
.services{
    padding: 3rem 0;
    background-color: #F5F8FF;
}

.services h2{
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    text-align: center;
    /* padding-bottom: 2rem; */
    position: relative;
    margin-bottom: 2rem;
}

.services h2::after{
   content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 200px;
            height: 4px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, orange, orange, #fff); /* Two-color gradient */
            border-radius: 2px;
}

.service-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.service-box{
  position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
   display: grid;
   place-items: center;
   padding: 1rem 0.5rem;
   
   
}
.service-box-img{
    background-color: #58BF9C;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-box-img img, .service-box-img-2 img, .service-box-img-3 img{
    height: 70px;
}
.service-box-img-2{
    background-color: #F6D17C;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-box-img-3{
    background-color: #E5F0F5;
    border-radius: 50%;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-box h3{
    font-weight: 600;
    padding-top: 20px;
    text-align: center;
    font-size: 24px;
}

.service-box p{
    text-align: center;
}

 .service-box:hover .service-box-img {
  transform: scale(1.1);
 }

  .service-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 20px;
    text-align: center;
    transition: opacity 0.4s ease;
    border-radius: 10px;
  }

  .service-box:hover .overlay {
    opacity: 1;
  }

  .overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .overlay p {
    font-size: 1rem;
  }
  .overlay h5{
    letter-spacing: 1px;
    font-size: 24px;
  }

   .overlay h5:hover{
    color: orange;
    transition: 0.5s ease all;
   }


.ser-desc{
  padding-bottom: 2rem;
}

.ser-desc h2{
   font-size: 2.4rem;
    font-weight: 700;
    color: #003366;
        text-align: left;
        padding-top: 2rem;
}

.ser-explain{
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-top: 1rem;
}

.ser-desc-img{
    height: 100%;
    width: 100%;
}
.ser-desc-img img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border: 10px solid #F1F4FB;
}

.beta-boxes{
    display: flex;
    flex-wrap: wrap;
}
.beta-box-i{
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    border-radius: 50px;
    /* border: 1px solid gray; */
    margin: 5px;
}

.beta-box-i i{
    padding-bottom: 5px;
    padding-right: 8px;
    color: #32AAB5;
    font-size: 20px;
}
.beta-box-i h5{
    font-weight: 600;
    color: #003366;
}

.ser-explain a{
    position: relative;
            display: inline-block;
            padding: 12px 30px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: #084A79;
            border: none;
            border-radius: 30px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
            z-index: 1;
}
.ser-explain a::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: 0.5s;
            z-index: -1;
}

.ser-explain a:hover{
  transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
}

.ser-explain a:hover::before {
            left: 100%;
        }

.ser-desc-ii{
  background-color: #F4F7FE;
  padding: 2rem 0;
}

.ser-desc-ii .ser-desc h2{
 text-align: right;
 padding-right: 190px;
}

.ser-desc-ii .ser-desc-img img{
  border: 10px solid #fff;
}

.ser-name{
  position: relative;
}
.ser-name::after{
   content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 300px;
            height: 4px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, orange, orange, #084A79, #fff, #fff); /* Two-color gradient */
            border-radius: 2px;
}


.coverage-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.coverage-header {
  text-align: center;
  margin-bottom: 40px;
}

.coverage-header h2 {
  font-size: 2.5rem;
  color: #1d3557;
  position: relative;
  margin-bottom: 20px;
}

.coverage-header h2::after{
   content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 200px;
            height: 4px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, orange, orange, #fff); /* Two-color gradient */
            border-radius: 2px;
}
.coverage-header p {
  font-size: 1.1rem;
  color: #444;
  margin-top: 10px;
}

.coverage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.coverage-map {
  flex: 1;
  min-width: 300px;
}

.coverage-map img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.coverage-areas {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.area-box {
  background: white;
  border: 2px solid #1d3557;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  color: #1d3557;
  transition: all 0.3s ease;
  cursor: default;
}

.area-box:hover {
  background-color: #1d3557;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


 

 .text-content {
      position: relative;
      z-index: 2;
      padding-top: 3rem;
    }

    .text-content h1 {
      font-size: 48px;
      font-weight: bold;
      color: #fff;
      line-height: 1.3;
    }

    .text-content h1 span.yellow {
      color: #E2B811;
    }

    .text-content p {
      margin-top: 20px;
      font-size: 18px;
      /* max-width: 600px; */
    }

     .banner-right-services {
    position: relative;
      background-color: #E2B811;
      padding: 60px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #084A79;
      border-top-left-radius: 80px;
      border-bottom-left-radius: 80px;
      z-index: 2;
    }

    .banner-right-services h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .banner-right-services h4 {
      font-size: 20px;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .banner-right-services ul {
      list-style: none;
      padding-left: 0;
    }

    .banner-right-services ul li {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .banner-right-services ul li a {
      color: #084A79;
      text-decoration: none;
      font-weight: 500;
    }

    .banner-right-services ul li a:hover {
      text-decoration: underline;
    }

    .contact-btn {
      margin-top: 20px;
      padding: 12px 24px;
      background: #ffffff;
      color: #084A79;
      border: 2px solid #084A79;
      font-weight: bold;
      border-radius: 6px;
      text-decoration: none;
      display: inline-block;
    }

    .contact-btn:hover {
      background-color: #084A79;
      color: #ffffff;
    }

    .contact-info {
      margin-top: 20px;
    }

    .contact-info .phone {
      font-size: 20px;
      font-weight: bold;
    }

    .contact-info .web {
      font-size: 16px;
      color: #354855;
    }

    .hero{
 
      background-color: #fff;
      /* background-image: url('assets/img/gaur-city-bg.jpg'); */
      width: 100%;
      /* background-size: cover;
      background-position: center center;
      background-repeat: no-repeat; */

    }

    .banner-left-side{
        padding-top: 3rem;
    }
    .banner-left-side .top{
       display: flex;
       /* justify-content: center; */
       /* align-items: center; */
       background-color: #E2B811;
      display: inline-block;
      justify-content: center;
      align-items: center;
      
      padding: 1px 5px;
      padding-bottom: 0;
      color: #084A79;
      border-radius: 5px;
      margin-bottom: 10px;
      font-family: "Smooch",cursive;
    }

  
    .banner-left-side .top i{
      color: #fff !important;
    }
      
         .banner-left-side h1{
           /* font-size: 3rem; */
      color: #084A79;
      font-weight: 600;
      /* text-transform: uppercase; */
      /* line-height: 1.5; */
      
      /* text-shadow:
        1px 1px 0 #E2B811,
        2px 2px 0 #084A79,
        3px 3px 0 #354855; */
      transform: perspective(500px) rotatey(10deg);
          
         }

         .banner-left-side h1 span{
          color: #E2B811;
          font-weight: 800;
          font-size: 3rem;
          text-transform: uppercase;
         }
.banner-left-side p{
  font-size: 20px;
  font-weight: 600;
}
.banner-left-side p span{
  color: #084A79;
}

.banner-service{
  display: flex;
  flex-wrap: wrap;
  flex: 1 1;
}
.banner-ser-box{
  display: flex;
  /* justify-content: center;
  align-items: center; */
  margin-right: 10px;
  /* width: 250px; */
  
}
.icon-1{
  background-color:#084A79;
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
 display: grid;
 place-items: center;
}
.icon-2{
  background-color:#E2B811;
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
 display: grid;
 place-items: center;
}
.banner-ser-box img{
  height: 30px;
  width: 30px;
}
.ser-title h5{
  color: #E2B811;
  line-height: 24px;
  padding-left: 10px;
  font-weight: 700;
}

.ser-title h5 span{
  font-weight: 500;
 color: #444;
 font-size: 18px;

}
.banner-cta{
  margin-top: 20px;
}

.banner-cta a{
    position: relative;
            display: inline-block;
            padding: 12px 30px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: #084A79;
            border: none;
            border-radius: 30px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
            z-index: 1;
}
.banner-cta a::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: 0.5s;
            z-index: -1;
}

.banner-cta a:hover{
  transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
}

.banner-cta a:hover::before {
            left: 100%;
        }
        .banner-cta-2{
          background-color: transparent !important;
          color: #084A79 !important;
           position: relative;
            display: inline-block;
            padding: 12px 30px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
          
            border: 2px solid #fff !important;
            border-radius: 30px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
             box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4); 
            z-index: 1;
        }


          .wrapper {
      max-width: 1000px;
      margin: auto;
      position: relative;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease;
      pointer-events: none;
      padding: 1rem 0;
    }

    .services-container.active {
      opacity: 1;
      pointer-events: all;
      position: relative;
    }

    .banner-service-box {
      flex: 1 1 190px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
     
    }

    .service-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      flex-shrink: 0;
    }

    .banner-service-content h3 {
      margin: 0;
      font-size: 20px;
      color: #08243b;
    }

    .banner-service-content p {
      margin: 4px 0 0;
      font-size: 15px;
      color: #444;
    }

    .seo     { background: #28c4c2; }
    .ads     { background: #f2a33b; }
    .lead    { background: #ff9f43; }
    .webdev  { background: #4cc1ac; }

    /* Responsive */
    @media (max-width: 600px) {
      .banner-service-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .service-icon {
        margin-bottom: 10px;
      }
    }

    .banner-right-img{
      width: 100%;
      height: 100%;
    }

    .banner-right-img img{
      width: 100%;
      height: 100%;
    }

    .stats-wrapper{
      margin-top: 130px;
      /* background: linear-gradient(to right, #45B4E4,#45B4E4, #fff); */
      background-color: #084A79 !important;
      color: #fff !important;
      border-radius: 10px;
    }

    .stats li:hover{
        transform: scale(1.1);
         box-shadow: 0 4px 15px rgba(180, 96, 96, 0.08);
        transition: all ease 1s;
        
    }
      .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      padding: 10px;
    }

    .card-content {
      padding: 20px;
    }

    .card-title {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 10px;
      color: #354855;
      text-align: center;
    }

    .card-desc {
      font-size: 14px;
      line-height: 1.5;
      color: #555;
    }

    @media (max-width: 500px) {
      .card img {
        height: 160px;
      }
    }

      .scroll-section {
      max-height: 500px;
      overflow-y: auto;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      background-color: #f8f9fa;
    }

    .card-grid .card-desc{
      text-align: center;
    }

    .home-contact-left-i{

    }
    section.home-contact-form .home-contact-left-i {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99;
}

section.home-contact-form .home-contact-left-i i {
 /* color: var(--blue-dark);
  border: solid 2px var(--blue-dark);
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 1px 1px 5px var(--gray);
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  transition: letter-spacing .3s linear; */
}

section.home-contact-form .home-contact-left-i a {
color: var(--blue-dark);
  border: solid 2px var(--blue-dark);
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 1px 1px 5px var(--gray);
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  transition: letter-spacing .3s linear;
}

section.home-contact-form .home-contact-left-i ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}