*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* global color and style for the website */

.site-green{
        background: var(--accent);
    }
    .site-green:hover{
        background: var(--primary-bg);
    }
    .site-blue{
       background: var(--primary-bg);;
    }
    .faq-button{
      color: black !important;
    }
    .site-blue-text{
        color:#0D3B77
    }
    .site-green-text{
        color:var(--accent);
    }

.xl-font-size{
    font-size: 28px !important;
}




/* Navbar  */
.brand-logo img{
height: 50px;

}
        .nav-link {
            transition: all 0.3s ease;
        }
        .nav-link:hover{
          color: #39B54A;
        }
        .nav-link:hover {
            transform: translateY(-2px);
        }
        .hamburger div {
            transition: all 0.3s ease;
        }
        .hamburger.active .line1 {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active .line2 {
            opacity: 0;
        }
        .hamburger.active .line3 {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .bg-hero {
            background-image: url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
        }
        .card-container {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        .vertical-scroll-container {
            max-height: 400px;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .vertical-scroll-container::-webkit-scrollbar {
            display: none;
        }
        #navLinks button{
            background-color: #00203A;
            transition: background-color 0.1s ease-in-out 0.2s;
        }
         #navLinks button:hover{
            background-color: #e24701;
        }

  

        header {
            padding-block: 10px;
            background-color:#00203a;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .header-content ul {
            display: flex;
            align-items: center;
            list-style: none;
            color: #fff;
            flex-wrap: wrap;
        }

        .header-content ul li {
            margin-inline: 5px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .header-content-icon {
            background-color: white;
            transition: background-color 0.2s ease-in-out 0.1s;
            border-radius: 50%;
            height: 23px;
            width: 23px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-inline: 5px;
            color: #E24701;
        }

        .header-content-icon:hover {
            background-color: #E24701;
            color:white;
        }

        .header-content-icon i {
            font-size: 16px;
        }

        .header-social-icon, .header-social-icon ul {
            display: flex;
            align-items: center;
        }

        .header-social-icon {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
        }

        .header-social-icon ul {
            list-style: none;
        }

        .header-social-icon ul li {
            background-color: #fff;
            border-radius: 50%;
            height: 21px;
            width: 21px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-inline: 5px;
            transition: background-color 0.2s ease-in-out 0.1s;
        }

        .header-social-icon ul li:hover {
            background-color: #E24701;
        }
        .header-social-icon ul li:hover i {
           color:white;
        }

        .header-social-icon ul li i {
            color: #E24701;
            padding: 8px;
            font-size: 12px;
        }
        

    /* Mobile: show menu when nav-toggle is checked */
    #nav-toggle:checked ~ #navLinks {
        display: flex;
    }

    /* Mobile: dropdown controlled by checkbox */
    #services-toggle:checked ~ .services-dropdown {
        display: flex;
    }

    /* Desktop behavior */
    @media (min-width: 768px) {
        /* Always show navLinks on desktop */
        #navLinks {
            display: flex !important;
        }

        /* Hide mobile checkbox/hamburger on desktop */
        #nav-toggle,
        #nav-toggle + label {
            display: none;
        }

        /* Desktop dropdown: show on hover */
        .services-group:hover .services-dropdown {
            display: flex;
        }

        /* Disable checkbox-based toggle visual on desktop (but keep structure) */
        #services-toggle {
            display: none;
        }
    }


        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }

            .header-content ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .header-content ul li {
                font-size: 13px;
            }

            .header-content-icon {
                height: 20px;
                width: 20px;
                margin-inline: 3px;
            }

            .header-content-icon i {
                font-size: 14px;
            }

            .header-social-icon {
                font-size: 13px;
            }

            .header-social-icon ul li {
                height: 18px;
                width: 18px;
                margin-inline: 3px;
            }

            .header-social-icon ul li i {
                font-size: 10px;
                padding: 6px;
            }
        }

        @media (max-width: 480px) {
            .header-content ul li {
                font-size: 12px;
            }

            .header-content-icon {
                height: 18px;
                width: 18px;
                margin-inline: 2px;
            }

            .header-content-icon i {
                font-size: 12px;
            }

            .header-social-icon {
                font-size: 12px;
            }

            .header-social-icon ul li {
                height: 16px;
                width: 16px;
                margin-inline: 2px;
            }

            .header-social-icon ul li i {
                font-size: 9px;
                padding: 5px;
            }
        }




/* style for custom button on the banner of the all pages   */

.custom-btn {
  position: relative;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
}

.custom-btn::before {
  content: '';
  position: absolute;
  top: 75%;
  left: 25%;
  width: 0;
  height: 0;
  background: var(--primary-bg);
  color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.8s ease-out, height 0.8s ease-out;
}

.custom-btn:hover::before {
  width: 300%;
  height: 300%;
  color: white;
}

.custom-btn:active {
  background-color: #15488C;
}

@keyframes expandBackground {
  0% {

    transform: scale(0);
  }
  50% {

    transform: scale(0.5); 
  }
  100% {

    transform: scale(1); 
  }
}



/* Navbar  */

.navbar-custom {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 30px rgba(227,228,237,0.37);
    backdrop-filter: blur(30px);
    border: 2px solid rgb(255,255,255,0.18);
    z-index: 10;
  }
  
  .hero-content {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
  }
  .hero-content::after{
    position: absolute;
    content: "";
    background-color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
    z-index: -9999;
  }
  
  .navbar-nav .nav-link {
    color: white !important;
  }
  
  .navbar-nav .nav-link:hover {
    color: #E24701 !important;
  }
  
  .btn-orange {
    background-color: #f5a623;
    color: white;
  }
  
  .btn-orange:hover {
    background-color: #e69500;
  }
  
  @media (max-width: 768px) {
    .navbar-collapse {
      background-color: rgba(0, 0, 0, 0.85);
      padding: 1rem;
    }
  }
  
  .navbar-list{
      margin-inline: auto !important;
  }
  .about-us-hero-content{
    position: relative;
    background-color: rgba(0, 0, 0, 0.627);
    /* z-index: 0; */
  }

.about-us-hero-content::before{
  position: absolute;
  content: "";
  background-image: url('https://softwebgroup.online/img/baout1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;

}




  .about-us-heading {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;

    place-items: center;
  }

  
  .about-us-heading .tagline {
    color: #39B54A;
    font-weight: 600;
    width: 85%;
    text-align: left;
    margin-bottom: 0px;
  }
  
  .section-heading {
    text-align: center;

    font-size: 32px;
    color: #174A8D;
    font-weight: 700;
    position: relative;

    width:100%;
    margin-top: 0;
    padding-bottom: 10px;
  }
  
  .underline {
    width: 150px;
    height: 5px;
    background-color: #39B54A;
    margin: 0 ;
    margin-top: -10px;
  }




.list-disc li{
  color: white;
}

  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), #ffffff);
    left: 50%;
    transform: translateX(-50%);
}
.timeline {
    min-height: 100%; /* Ensure the timeline takes the full height of its content */
}
.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}
.timeline-marker {
  text-align: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 4px solid var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    place-content: center;
    place-items: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
}

.timeline-item {
  padding-top: 50px;
}
.timeline-info h2, .timeline-content h2{
  font-size: 32px;
  padding-block: 20px;
  line-height: 30px;
}
.timeline-info p, .timeline-content p{
  font-size: 18px;
  line-height: 30px;
}



.fade-transition {
  transition: opacity 0.5s ease-in-out;
}
.content-hidden {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.content-visible {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.nav-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-button.active {
  background-color: #3b82f6;
  color: white;
}
.why-best-sec i{
  font-size: 32px;
  border-radius: 0px;
}
.why-best-sec{
  padding-bottom: 0px;
}
.why-best-sec .active{
  background-color: white !important;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  transition: transform 3s;

}
.why-best-sec .active i{
  font-size: 38px !important;
  color: var(--primary-bg);
}
.why-best-sec button:hover{
  background-color: white !important;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  transition: transform 3s;
}.why-best-sec button{
  margin-inline: 10px;
}

.answer-content p{
  color: white;
}




.carousel-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  position: relative;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.card {
  flex: 0 0 20%;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  margin: 0 10px;


}
.industries-card{
  backdrop-filter: blur(5px);
  box-shadow: 0 0 30px, rgba(227,228,237,0.37) !important;
  border: 2px solid rgba(255,255,255,0.18);
}

.card span{
  width: 100px;
  height: 100px;
}
.card i {
  font-size: 50px;
  padding: 30px;
  border-radius: 50%;
  color: #007bff;
  margin-bottom: 15px;
  background-color: white;
}

.card h2 {
  font-size: 1.5rem;
  color: white;
  font-weight: 900;
  font-size: 24px;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.controls button {
  /* background: #007bff; */
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s;
  height: 25px;
  width: 25px;
  place-content: center;
}

.controls button:hover {
  background: #0056b3;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #007bff;
}

@media (max-width: 768px) {
  .card {
      flex: 0 0 50%;
  }
}

@media (max-width: 480px) {
  .card {
      flex: 0 0 100%;
  }

  .card i {
      font-size: 2.5rem;
  }

  .card h2 {
      font-size: 1.2rem;
  }

  .controls button {
      padding: 8px;
      font-size: 1rem;
  }
}





/* SEO SERVICE PAGE CSS  */
        .section-services {
            font-family: "Poppins", sans-serif;
            color: #202020;
            padding-top: 50px;
            padding-bottom: 50px;
            background-color: #F9FFF7;
        }

        .section-services .header-section {
            margin-bottom: 34px;
        }
.global-heading-section {
            margin-bottom: 34px;
            place-items: center;
        }

                .global-heading-section .heading {
                  margin-top: 10px;
            position: relative;
            padding-bottom: 8px;
            margin-bottom: 50px;
            font-weight: 700;
            font-size: 32px;
            text-align: center;
            color:var(--primary-bg);
        }

        .global-heading-section .heading::after{
          content: "";
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(50px);
            width: 20px;
            height: 3px;
            background-color: white;
            border-radius: 3px;
        }
          .global-heading-section .heading::before{
         content: "";
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 3px;
        }




                        .global-heading-section .title {
                                position: relative;
                            color: #242424;
                          font-size: 18px;
                          text-align: center;
                          margin: 12px 0 8px 0px;
                          padding: 0px 25px 0px 25px;
        }

                                .global-heading-section .bold-title {
                                position: relative;
                            color: #242424;
                            font-weight: bold;
                          font-size: 20px;
                          /* text-align: left; */
                          margin: 12px 0 18px 0px;
                          padding: 18px 25px 12px 25px;
        }
         

        .global-heading-section .description {
            font-size: 16px;
            margin-bottom: 8px;
            line-height: 30px;
            color: #282828;
            text-align: left;
        }


        

        .section-services .single-service {
            position: relative;
            margin-top: 30px;
            background-color: #fff;
            border-radius: 10px;
            padding: 40px 30px;
            overflow: hidden;
        }

        .section-services .single-service .content {
            position: relative;
            z-index: 20;
        }

        .section-services .single-service .circle-before {
            position: absolute;
            top: 0;
            right: 0px;
            transform: translate(40%, -40%);
            width: 150px;
            height: 150px;
            background-color: #174A8D;
            border: 6px solid #39B54A;
            border-radius: 50%;
            opacity: 0.5;
            z-index: 10;
            transition: all .6s;
        }

        .section-services .single-service:hover .circle-before {
            width: 100%;
            height: 100%;
            transform: none;
            border: 0;
            border-radius: 0;
            opacity: 1;
        }

        .section-services .single-service .icon {
            display: inline-block;
            margin-bottom: 26px;
            width: 70px;
            height: 70px;
            background-color: #174A8D;
            border-radius: 5px;
            line-height: 70px;
            text-align: center;
            color: #fff;
            font-size: 30px;
            transition: all .3s;
        }

        .section-services .single-service:hover .icon {
            background-color: #fff;
            color: #174A8D;
        }

        .section-services .single-service .title {
            margin-bottom: 18px;
            font-weight: 700;
            font-size: 23px;
            transition: color .3s;
        }

        .section-services .single-service:hover .title {
            color: #fff;
        }

        .section-services .single-service .description {
            margin-bottom: 20px;
            font-size: 14px;
            transition: color .3s;
        }

        .section-services .single-service:hover .description {
            color: #fff;
        }

        .section-services .single-service a {
            position: relative;
            font-size: 18px;
            color: #202020;
            text-decoration: none;
            font-weight: 500;
            transition: color .3s;
        }

        .section-services .single-service:hover a {
            color: #fff;
        }

        .section-services .single-service a:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #39B54A;
            transition: background-color .3s;
        }

        .section-services .single-service:hover a:after {
            background-color: #fff;
        }

        .card {
            position: relative;
            overflow: hidden;
            background-color: var(--primary-bg);
        }
        

        .card::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            transition: clip-path 0.6s ease-in-out;
            z-index: 0;
            background-color: var(--accent);
        }

        .card:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.53);
        }

        .card:nth-child(1)::before {
            bottom: 0;
            right: 0;
            clip-path: circle(120px at 100% 100%);
        }


        .card:nth-child(2)::before {
            bottom: 0;
            left: 0;
            clip-path: circle(120px at 0% 100%);
        }

        .card:nth-child(3)::before {
            top: 0;
            right: 0;
            clip-path: circle(120px at 100% 0%);
        }


        .card:nth-child(4)::before {
            top: 0;
            left: 0;
            clip-path: circle(120px at 0% 0%);
        }

        .card:hover::before {
            clip-path: circle(150% at 100% 100%);
        }

        .card:hover p {
            color: #fff;
            transition: color 0.8s ease-in-out;
        }

        .circle {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        @media (min-width: 1024px) {
            .circle {
                display: block;
            }
        }
        .circle::after{
          position: absolute;
          content: "";
          height: 100%;
          width: 100%;
          top: 0;
          left: 0;
          background-color: black;
          opacity: 0.6;
        }

        .card:nth-child(1) .circle {
            background: url("https://images.unsplash.com/photo-1587440871875-191322ee64b0?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat 50% 50% / cover;
            bottom: 0;
            right: 0;
            clip-path: circle(120px at 100% 100%);
        }

        .card:nth-child(2) .circle {
            background: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat 50% 50% / cover;
            bottom: 0;
            left: 0;
            clip-path: circle(120px at 0% 100%);
        }

        .card:nth-child(3) .circle {
            background: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat 50% 50% / cover;
            top: 0;
            right: 0;
            clip-path: circle(120px at 100% 0%);
        }

        .card:nth-child(4) .circle {
            background: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat 50% 50% / cover;
            top: 0;
            left: 0;
            clip-path: circle(120px at 0% 0%);
        }




                .sec-icon {
            position: relative;
            display: inline-block;
            padding: 0;
            margin: 0 auto;
        }

        .sec-icon::before {
            content: "";
            position: absolute;
            height: 1px;
            left: -70px;
            margin-top: -5.5px;
            top: 60%;
            background: #333333;
            width: 50px;
        }

        .sec-icon::after {
            content: "";
            position: absolute;
            height: 1px;
            right: -70px;
            margin-top: -5.5px;
            top: 60%;
            background: #333;
            width: 50px;
        }

        .advertisers-service-sec {
            background-color: #f5f5f5;
        }

        .advertisers-service-sec span {
            color: #1D5091;
        }

        .advertisers-service-sec .col {
            text-align: center;
        }

        .advertisers-service-sec .service-card {
            width: 100%;
            height: 100%;
            padding: 2em 1.5em;
            border-radius: 5px;
            box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
            cursor: pointer;
            transition: 0.5s;
            position: relative;
            z-index: 2;
            overflow: hidden;
            background: #fff;
        }

        .advertisers-service-sec .service-card::after {
            content: "";
            width: 100%;
            height: 100%;
         background: linear-gradient(var(--accent), var(--primary-bg));
         /* background: linear-gradient( #174A8D,#39B54A); */
            position: absolute;
            left: 0%;
            top: -98%;
            z-index: -2;
            transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
        }

        .advertisers-service-sec h3 {
            font-size: 20px;
            text-transform: capitalize;
            font-weight: 600;
            color: #1f194c;
            margin: 1em 0;
            z-index: 3;
        }

        .advertisers-service-sec p {
            color: #575a7b;
            font-size: 15px;
            line-height: 1.6;
            letter-spacing: 0.03em;
            z-index: 3;
        }

        .advertisers-service-sec .icon-wrapper {
            background-color: #2c7bfe;
            position: relative;
            margin: auto;
            font-size: 30px;
            height: 2.5em;
            width: 2.5em;
            color: #ffffff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            transition: 0.5s;
            z-index: 3;
        }

        .advertisers-service-sec .service-card:hover:after {
            top: 0%;
        }

        .service-card .icon-wrapper {
            background-color: #ffffff;
            color: var(--accent);
            
        }
        .service-card .icon-wrapper i{
          font-size: 40px;
        }

        .advertisers-service-sec .service-card:hover .icon-wrapper {
            color: var(--primary-bg);
        }

        .advertisers-service-sec .service-card:hover h3 {
            color: #ffffff;
        }

        .advertisers-service-sec .service-card:hover p {
            color: #f0f0f0;
        }


                .carousel-container {
            position: relative;
            max-width: 1200px;
            width: 100%;
            padding: 2rem;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }




        /* style for cards with watermorphism effect on seo-service page   */

        .icon-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            --neon-color: rgba(0, 162, 255, 0.5);
            flex: 0 0 200px; 
            margin-right: 2rem;
          }

        .icon-box:nth-child(2) {
            --neon-color: rgba(255, 105, 180, 0.5);
        }


        .icon-box:nth-child(3) {
            --neon-color: rgba(57, 255, 20, 0.5);
        }


        .icon-box:nth-child(4) {
            --neon-color: rgba(147, 112, 219, 0.5);
        }


        .icon-box:nth-child(5) {
            --neon-color: rgba(255, 165, 0, 0.5);
        }


        .icon-box:nth-child(6) {
            --neon-color: rgba(255, 255, 0, 0.5);
        }


        .icon-box:nth-child(7) {
            --neon-color: rgba(0, 255, 255, 0.5);
        }


        .icon-box:nth-child(8) {
            --neon-color: rgba(255, 0, 0, 0.5);
        }


        .icon-box:nth-child(9) {
            --neon-color: rgba(50, 205, 50, 0.5);
        }

        .icon-inner {
            width: 150px;
            height: 150px;
            border-radius: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow:
                inset 0 0 10px var(--neon-color);
            transition: transform 0.3s ease;
            position: relative;
        }

        .icon-inner::before {
            position: absolute;
            content: "";
            height: 50px;
            width: 50px;
            top: 25%;
            left: 50%;
            background-color: var(--neon-color);
            z-index: 9999;
            filter: blur(20px);
            transform: translate(-50%, -25%);
        }

        .icon-inner::after {
            position: absolute;
            content: "";
            height: 20px;
            width: 80%;
            bottom: 0%;
            left: 50%;
            background-color: var(--neon-color);
            z-index: 9999;
            filter: blur(14px);
            transform: translate(-50%, 0);
            border-radius: 50%;
        }

        .icon-inner:hover {
            transform: scale(1.05);
        }

        .icon-img {
            width: 70px;
            height: auto;
            filter: brightness(1.2);
        }

        .icon-label {
            color: #fff;
            font-size: 1rem;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .carousel-btn:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }







        /* cta button style */
            .cta-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 100px;
    }

    .cta-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to right, #0046ad, #914cd8);
      color: white;
      padding: 40px 60px;
      border-radius: 16px;
      position: relative;
      overflow: visible;
    }

    .cta-text {
      z-index: 2;
      max-width: 65%;
      place-items: center;
    }

    .cta-text h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .cta-button {
      background: white;
      color: black;
      padding: 12px 24px;
      font-weight: bold;
      border: none;
      border-radius: 24px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .cta-button:hover {
      background: #eaeaea;
    }

    .cta-image img {
      height: 300px;
      object-fit: contain;
      position: absolute;
      bottom: 0 ;
      right: 0;
      z-index: 999999;
    }


        @media (max-width: 980px) {
      .cta-wrapper {
        padding-right: 0;
      }
      .cta-wrapper h2{
        font-size: 24px;
      }
    }

    @media (max-width: 768px) {
      .cta-wrapper {
        padding-right: 0;
      }
      .cta-wrapper h2{
        font-size: 30px;
      }
      

      .cta-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
      }

      .cta-text {
        max-width: 100%;
      }
      .cta-image img {
        height: auto;
        width: 100%;
        max-width: 300px;
        position: static;
      }
    }




        /*second cta button style */

            .second-cta-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 100px;
    }

    .second-cta-section {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to right, #0046ad, #39B54A);
      color: white;
      padding: 40px 60px;
      border-radius: 16px;
      position: relative;
      height: 250px;
    }
    .second-cta-wrapper::before{
        position: absolute;
        content: "";
        height: 160px;
        width: 140px;
        bottom: 0;
        left: 0;
        background-image: url("img/cta-2-bg.svg");
        background-position: center;
        background-repeat: no-repeat;
        z-index: 9999999999;
    }
        .second-cta-wrapper::after{
        position: absolute;
        content: "";
        height: 160px;
        width: 140px;
        top: 0;
        right: 0;
        background-image: url("img/cta-2-bg.svg");
        background-position: center;
        background-repeat: no-repeat;
        z-index: 9999999999;
        transform: rotate(180deg);
    }

    .second-cta-text {
      z-index: 2;
      width: 70%;
      justify-content: space-between;
      place-items: center;
    }

    .second-cta-text h2 {
      font-size: 28px;
      margin-bottom: 20px;
      width: 65%;
    }

    .second-cta-button {
      background: white;
      color: black;
      padding: 12px 24px;
      font-weight: bold;
      border: none;
      border-radius: 24px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .second-cta-button:hover {
      background: #eaeaea;
    }

    .second-cta-image img {
      height: 300px;
      object-fit: contain;
      position: absolute;
      bottom: 0 ;
      right: 0;
      z-index: 999999;
    }


        @media (max-width: 980px) {
      .second-cta-wrapper {
        padding-right: 0;
      }
      .second-cta-wrapper h2{
        font-size: 24px;
      }
    }

    @media (max-width: 768px) {
      .second-cta-wrapper {
        padding-right: 0;
      }
      .second-cta-wrapper h2{
        font-size: 30px;
      }
      

      .second-cta-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
      }

      .second-cta-text {
        max-width: 100%;
      }
      .second-cta-image img {
        height: auto;
        width: 100%;
        max-width: 300px;
        position: static;
      }
    }








     /* Footer styling  */
        
        .footer-second-sec {
            position: relative;
              background: var(--primary-bg);
            z-index: 9999999;
        }

        .footer-second-sec::before {
            content: "";
            position: absolute;
            height: 60%;
            width: 60%;
            opacity: 0.1;
            bottom: 0;
            left: 0;
            background-image: url("img/sec-bg.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -9;
        }

        .footer-second-sec::after {
            content: "";
            position: absolute;
            height: 60%;
            width: 60%;
            opacity: 0.1;
            top: 0;
            right: 0;
            background-image: url("img/sec-bg.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: rotate(180deg);
            z-index: -999;
        }


        @media (max-width: 768px) {
            .footer-first-sec .container {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .main-footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .newsletter-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                width: 100%;
            }

            .newsletter-content h2 {
                font-size: 1.5rem;
            }

            .newsletter-content p {
                width: 100%;
                padding: 0.5rem;
            }

            .newsletter-form {
                width: 100%;
            }

            .newsletter-form input {
                width: 100%;
                max-width: none;
            }

            .footer-second-sec::before,
            .footer-second-sec::after {
                height: 30%;
                width: 100%;
            }
        }

        @media (max-width: 640px) {


            .footer-first-sec .space-x-4 {
                gap: 0.5rem;
            }

            .footer-first-sec .text-2xl {
                font-size: 1.25rem;
                height: 32px;
                width: 32px;
            }

            .green-contact-bar .container {
                flex-direction: column;
                gap: 0.5rem;
            }
        }





        /* style for faq section   */

                .faq-button.active {
            background: var(--accent);;
            color: white;
        }


        .faq-ques{
          height: 300px;
          overflow-y: auto;
          scrollbar-width: none;
        }

        .scrollable-faq::-webkit-scrollbar {
    width: 8px;
}

.scrollable-faq::-webkit-scrollbar-thumb {
    border-radius: 4px;
}
.scrollable-faq::-webkit-scrollbar {
    display: none;
}


          /* style for Footer section  */
        
        .footer-second-sec {
            position: relative;
              background: var(--primary-bg);
            z-index: 9999999;
        }

        .footer-second-sec::before {
            content: "";
            position: absolute;
            height: 60%;
            width: 60%;
            opacity: 0.1;
            bottom: 0;
            left: 0;
            background-image: url("../img/sec-bg.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -9;
        }

        .footer-second-sec::after {
            content: "";
            position: absolute;
            height: 60%;
            width: 60%;
            opacity: 0.1;
            top: 0;
            right: 0;
            background-image: url("../img/sec-bg.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: rotate(180deg);
            z-index: -999;
        }


        @media (max-width: 768px) {
            .footer-first-sec .container {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .main-footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .newsletter-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                width: 100%;
            }

            .newsletter-content h2 {
                font-size: 1.5rem;
            }

            .newsletter-content p {
                width: 100%;
                padding: 0.5rem;
            }

            .newsletter-form {
                width: 100%;
            }

            .newsletter-form input {
                width: 100%;
                max-width: none;
            }

            .footer-second-sec::before,
            .footer-second-sec::after {
                height: 30%;
                width: 100%;
            }
        }

        @media (max-width: 640px) {


            .footer-first-sec .space-x-4 {
                gap: 0.5rem;
            }

            .footer-first-sec .text-2xl {
                font-size: 1.25rem;
                height: 32px;
                width: 32px;
            }

            .green-contact-bar .container {
                flex-direction: column;
                gap: 0.5rem;
            }

            .industry-tabs-button{
              flex-direction: row !important;
              overflow-x: auto !important;
              flex-wrap: nowrap !important;
              padding-inline: 10px !important;


              button{
                border: 1px solid white !important;
              }
            }
            
        }



        .green-contact-bar{
          background: var(--accent);
          
        }
        .footer-links{
          color: white;
        }
        .footer-links:hover{
          color: var(--accent);
          
        }

        .footer-main-link{
          border-bottom: 1px  solid var(--accent);;
        }

        .footer-first-sec i{
          color: var(--accent);
        }
        .tab-button:hover{
            background: var(--accent);

        }
        .industry-tab h2{
          color: var(--primary-bg);
          border-bottom: 1px solid var(--primary-bg);
        }

        .news-letter-sec form button:hover{
         background-color: var(--primary-bg);
        }

        .aboutus-card span{
          color: black;
        }

        .footer-link-icons{
          color: var(--accent);
        }
        .answer-content p{
          color: white;
        }

        .our-services-sec a{
          color: var(--accent);
        }

        .our-process-sec p{
          color: white;
        }

        .process-card{
          border: 1px solid var(--accent);
        }



