/* General Styles */

 body{
      margin: 0 !important;
      padding:0 !important;
      font-family: Arial, sans-serif;
    }
 .marquee-section {
    background-color: #01023dde; /* Light blue background */
    padding: 10px 0;
    overflow: hidden;
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-text {
    display: flex;
    width: max-content;
    animation: scroll-left 18s linear infinite;
}

.brand-single-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #004aad;
    white-space: nowrap;
    margin-right: 60px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
h1,h2{
  font-size: 34px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h3,h4,h5{
   font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}
p{
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}
    .navbar {
      background-color: #0866ff !important;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }
.nav-item{
  margin-left: 10px;
}
    .navbar-brand img {
      max-height: 60px;
    }

    .navbar-nav .nav-link {
      font-size: 20px;
      font-weight: 500;
      color: #fff !important;
      transition: 0.3s;
      padding: 8px 12px;
    }

    .navbar-nav .nav-link:hover {
      background-color: rgb(147, 165, 245);
      border-radius: 12px;
    }

    .dropdown-menu {
      background-color: rgba(243, 246, 244, 0.9); 
      border-radius: 5px;
      font-size: 18px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
      color: black !important;
      transition: background 0.3s ease-in-out;
    }

    .dropdown-item:hover {
      color: white !important;
      background-color: #04acdf;
    }

    .navbar-toggler {
      border-color: white !important;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='white'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }

    .social-icons a {
      color: white;
      font-size: 18px !important;
      padding: 0 5px;
       transition: transform 0.3s ease;
       margin-left: 15px;
    }

     .social-icons a:hover{
      color:#f9d423 !important;
       transform: scale(1.2);
     }
     
.carousel-control-prev i{
  font-size: 20px;
  margin-bottom: 15px;
  color: black;
}
    .social-icons a:hover {
      color: #cbd9ff;
    }
    @media  (max-width:576px) {
      .navbar-brand img{
        margin-left:16px;
      } 
    }
    @media (max-width:1220px) {
      .navbar{
        width: 100%;
      }
      .navbar-brand{
        margin-left: -8px;
      }
      .navbar-nav{
       width: 795px;
      }
      .navbar-collapse{
        margin-left: -22px;
        width: 100%;
      }
      .social-icons{
        margin-right: 105px;
      }
    }
    /*navbar end  */

    /* hero section  */
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.pushp img {
    width: 100%;
    height: 690px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #fff;
}


.btn-primary {
  background: linear-gradient(45deg, #e65c00, #f9d423);
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
}


.social-icons a:hover {
    color: #0dcaf0; /* Bootstrap info color */
}
@media (max-width: 768px) {
    .carousel-caption {
        width: 100%;
        padding: 15px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* about */

/* Carousel Styling */
.page-container-fluid {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.carousel-inner img {
    width: 100%;
    height: 690px;

}

.carousel-caption {
    position: absolute;
  width: 50%;
    top: 50%;
    left: 30% !important;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;

    padding: 15px;
    border-radius: 10px;
}
.carousel-caption p{
    text-align: left;
    font-size: 20px;
}


@media (max-width: 768px) {
    .carousel-caption {
      left: 50% !important;
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
}

/* contact section */
.contact-banner {
    
    color: #fff;
    height: 60vh;
    min-height: 400px;
    position: relative;
    padding: 60px 20px;
    text-align: center;
}

.contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.contact-banner .container {
    position: relative;
    z-index: 2;
}

.contact-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-banner p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    background: url('https://preview.colorlib.com/theme/bootstrap/contact-form-10/images/bg_1.jpg.webp') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    z-index: 2;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 20px;
    color:#fff;
    margin-right: 15px;
}
.info-item a{
    color: #fff;
    text-decoration: none;
}
/* Contact Form */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    border-color: #a8cf45;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.3);
}

.contact-form button {
    width: 100%;
     background: linear-gradient(45deg, #e65c00, #f9d423);
    border: none;
    padding: 12px;
    font-weight: bold;
    color: black;
    transition: 0.3s;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #0072ff, #00c6ff); 
    color: #fff;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 30px;
    }
    
    .info-item p {
        font-size: 14px;
    }
    
    
    .contact-form button {
        padding: 10px;
    }
}
/* Our Services */
.services {
  padding: 80px 0;
  background:linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
}

*, ::after, ::before {
  box-sizing: border-box;
}

.sec-heading .title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.sec-heading .subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  border:1px solid #fff;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.service-box:hover {
  background:linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hover effect - override all content colors to white */
.service-box:hover .font-icon,
.service-box:hover .service-title,
.service-box:hover .service-text,
.service-box:hover .read-more,
.service-box:hover .read-more .icon,
.service-box:hover .hollow-text {
  color: #ffd700 !important;
}

.service-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

.hollow-text {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  font-weight: bold;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #333;
}

.service-text {
  margin-bottom: 20px;
  color: #444;
}

.read-more {
  color: #007bff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s;
}

.read-more .icon {
  font-size: 18px;
  margin-left: 5px;
  transition: color 0.3s;
}

.cta-btn {
 background: linear-gradient(45deg, #e65c00, #f9d423);
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
}

/* FAQ Section Styling */
.faq-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.faq-section h2 {
    font-weight: bold;
    color: #333;
}

.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background: white;
}

.accordion-button {
    font-weight: 600;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
    border: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background: #ffcc00;
    color: black;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 18px;
    background: #fff;
    padding: 15px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.accordion-item i {
    color: #ffcc00;
}
.footer-section {
    position: relative;
   
    padding: 60px 0;
    color: white;
}
.footer-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 3, 3, 0.6);
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.social-icons a:hover {
    color: rgb(147, 165, 245) ;
}
.small{
  font-size: 18px;
}
.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: rgb(147, 165, 245) ;
}

.footer-section .text-warning {
    font-weight: bold;
}
/* Floating WhatsApp & Call Icons */
 .whatsapp-icon, .phone-icon {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    font-size: 22px;
    padding: 12px 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }

  .whatsapp-icon:hover,
  .phone-icon:hover {
    transform: scale(1.1);
  }

  .whatsapp-icon {
    left: 20px;
    background-color: #25D366; /* WhatsApp green */
  }

  .phone-icon {
    right: 20px;
    background-color: #007bff; /* Bootstrap primary or choose another */
  }
@media (max-width: 576px) {
  .whatsapp-icon,
  .phone-icon {
    display: none;
  }
}
.mobile-footer{
  width: 100%;
}
.mobile-footer a {
  width: 100%;
    text-decoration: none;
    font-size: 20px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image {
    clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
   background: linear-gradient(135deg, #25D366, #128C7E); 
   
}

.footer-image2 {
    clip-path: polygon(0% 0, 100% 0%, 101% 100%, 0 100%);
    background: linear-gradient(135deg, #0052cc, #3399ff);
 
}

@media (min-width: 768px) {
    .mobile-footer {
        display: none !important;
    }
}

/* Back To Top Button */
.back-top {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color:  rgba(16, 5, 167, 0.932);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
}

.back-top:hover {
  color: white;
    background-color:  rgb(147, 165, 245);
}
.modal-header {
    border-bottom: 2px solid #b30606;
}

.modal-title {
    font-size: 22px;
}

.modal-body .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.modal-body .btn {
    border-radius: 5px;
}
/* Slider1-section  */

.slider1-section-area {
  background-color: #0866ff; 
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-text {
  display: flex;
  gap: 50px;
  animation: scroll-left 25s linear infinite;
  white-space: nowrap;
}

.brand-single-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-single-box h3 {
  font-size: 20px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-single-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* other section */
.subtitle {
  color: #ccc;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.info-box {
  background-color: #111827;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.info-box:hover {
  background-color: #0956ca;
  color:#ffd700;
}

.info-box .info-icon {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0d6efd;
}

.info-box:hover .info-icon {
  color: #ffd700;
}

.info-box h5 {
  font-size:22px;
  font-weight:600 ;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin: 0;
}
/* tracking section */
.tracking-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}
.row-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reverse-mobile {
  flex-direction: row;
}
@media (max-width: 768px) {
  .reverse-mobile {
    flex-direction: column-reverse;
  }
}
.align-center {
  align-items: center;
}
.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.button-group a {
  margin-right: 15px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 5px;
  text-decoration: none;
}
.btn:hover{
   background: linear-gradient(45deg, #0072ff, #00c6ff);
   color: white;
}
.btn-primary {
 background: linear-gradient(45deg, #e65c00, #f9d423);
  font-size: 18px;
  font-weight: 500;
  border: 1px solid rgb(6, 120, 250);
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}
.btn-outline {
  border: 1px solid #0073e6;
   font-size: 18px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  color: #0073e6;
  background: transparent;
}
.btn-outline:hover{
 background: linear-gradient(45deg, #0072ff, #00c6ff);
  color: white;
}
.image-wrapper img {
  width: 100%;
  height: auto;
}
.clients-section {
  margin-top: 60px;
}
.clients-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.client-logo img {
  width: 150px;
  height: auto;
}

/* client-section */
.clients-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}

.clients-carousel {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  padding: 0 30px;
}

.client-logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

/* Keyframes for scrolling left */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* our Founder */
/* Founder Section Styles */
section.bg-light {
  background: #f8f9fa;
}

section.bg-light h2 {
  color: #2c3e50;
  font-weight: 700;
  padding-left: 15px;
  margin-bottom: 25px;
}

/* Image styling */
section.bg-light .king {
  width: 350px; 
  height: 350px; 
  border-radius: 12px;
  background-position: center;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto; /* centers horizontally */
}

.slide1 {
  margin-right: 50px;
}

section.bg-light .img-fluid:hover {
  transform: scale(1.03);
}

.pks {
  width: 300px !important;
  height: 120px !important;
}

@media (max-width: 576px) {
  section.bg-light .king {
    width: 350px; /* full width on mobile */
    height: 350px; /* full width on mobile */
    margin: 0 auto; /* center on small screens */
  }
  .slide {
    margin-right: 0px;
  }
  .pks {
    width: 300px !important;
    height: 90px !important;
  }
}
/* Copyright text */
section.bg-light p.small {
  font-size: 13px;
  color: #888;
}

/* Responsive spacing */
@media (max-width: 767.98px) {
  section.bg-light h2 {
    font-size: 24px;
    padding-left: 10px;
  }

  section.bg-light h5 {
    font-size: 18px;
  }

  section.bg-light p {
    font-size: 15px;
  }
}


/* web development  */
.webdev-banner {
  
  object-fit: cover;
  background-position: center;
  min-height: 80vh;
  padding: 60px 0;
}
.PKS{
  font-size: 18px;
  font-weight: 600;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.webdev-banner h1,
.webdev-banner p {
    color: white;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.webdev-banner .btn {
    background: linear-gradient(45deg, #e65c00, #f9d423);
  padding: 10px 25px;
  font-size: 1.1rem;
  border-radius: 50px;
}
.webdev-banner .btn:hover{
    background-color: #00D3EA;
    color: black;
}

  .Static {
    background-color: #3d444e;
  }

  .Static h2 {
    color: #fff;
  }

  .info-card {
    background: linear-gradient(45deg, #83b6f0ee, #1302fcf3);
    color: #fff;
    border-radius: 10px;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
  }

  .info-card:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
    color: #ffd700;
    transform: translateY(-5px);
  }

  .info-card:hover h4,
  .info-card:hover p {
    color: #fff;
  }

  .info-card h4,
  .info-card p {
    transition: color 0.4s ease;
  }
  
  /* ecommerce */
  .ecommerce-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    color: #000;
  }
  
  .ecommerce-card:hover {
    transform: translateY(-8px);
    border: 1px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color:#0866ff;
  }
  
  .ecommerce-card h5,
  .ecommerce-card p {
    transition: color 0.3s ease;
  }
  
  .ecommerce-card:hover h5,
  .ecommerce-card:hover p {
    color:  #ffd700;
  }
  .list-unstyled{
    font-size: 18px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
  }
  
/*serve-section-area */
.scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-track {
  display: inline-flex;
  animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused; 
}

.brand-box {
    border-radius: 50px;
  transition: transform 0.3s ease;
}
.brand-box span{
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}
.brand-box:hover {
  transform: translateY(-5px);
}
/* PPC Management */
.ppc-banner {
  object-fit: cover;
  background-position: center;
  min-height: 80vh;
  padding: 60px 0;
} 

.ppc-banner h1,
.ppc-banner p {
    color: white;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
.ppc-section {
  background-color: #0f172a; /* Dark background */
}

.ppc-card {
  background-color: #f8fafc;
  border-radius: 12px;
  box-shadow: 
  0 4px 16px rgba(0, 0, 0, 0.15);
  color: #0f172a;
  transition: all 0.4s ease;
}

.ppc-card i {
  color: #0866ff;
  transition: color 0.3s ease;
}

.ppc-card:hover {
  background-color: #0866ff;
  color:#ffd700 ;
  border: 1px solid #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ppc-card:hover i,
.ppc-card:hover h5,
.ppc-card:hover p {
  color: #ffd700;
}
/* SEO */
.seo-banner {
 object-fit: cover;
  background-position: center;
  min-height: 80vh;
  padding: 60px 0;

}

  #seo-services {
    background-color: #0f172a;
  }

  .seo-service-box {
    background-color: #f8fafc;
    color: #0f172a;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
  }

  .seo-service-box i {
    color: #0866ff;
    transition: color 0.3s ease;
  }

  .seo-service-box:hover {
    background:  linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: #ffffff;
    border: 1px solid #fff;
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .seo-service-box:hover i,
  .seo-service-box:hover h5,
  .seo-service-box:hover p {
    
    color:#ffd700 !important;
  }

/* socail media markenting */
.smm-banner{

  object-fit: cover;
  background-position: center;
  min-height: 80vh;
  padding: 60px 0;
}

.smm-banner h1,
.smm-banner p {
    color: white;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
.card.shadow-sm.border-0.text-dark.transition-all {
  background-color: transparent !important;
  color: white !important;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.card.shadow-sm.border-0.text-dark.transition-all .list-group-item {
  background-color: transparent !important;
  color: white !important;
  font-size: 18px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
}

.card.shadow-sm.border-0.text-dark.transition-all:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.card.shadow-sm.border-0.text-dark.transition-all a.btn-primary {
  background: linear-gradient(45deg, #e65c00, #f9d423);
  border-color: #0d6efd;
  color: white;
  transition: background-color 0.3s ease;
}

.card.shadow-sm.border-0.text-dark.transition-all a.btn-primary:hover {
background: linear-gradient(45deg, #0072ff, #00c6ff);
  border-color: #0b5ed7;
  color: white;
}
/* Hover effect for the card */
.card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Button hover effects */
.btn-primary:hover {
 background: linear-gradient(45deg, #0072ff, #00c6ff);
  border-color: #004085;
}

.btn-outline-dark:hover {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
  color: #fff;
}
/* e-commerce  */
.ppcservice {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
  color: white;
  transition: background 0.3s ease;
}

.ppcservice h2.text-center {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.ppcservice .p-4.border {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.ppcservice .p-4.border:hover {
  background-color: #0d47a1;
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.7);
  color: #ffd700;
  border-color: #ffd700;
  transform: translateY(-8px);
}

.ppcservice .p-4.border:hover i {
  color: #ffd700;
  transition: color 0.3s ease;
}

.ppcservice h5 {
  color: white;
  transition: color 0.3s ease;
}

.ppcservice p {
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.ppcservice .p-4.border:hover h5,
.ppcservice .p-4.border:hover p,
.ppcservice .bi:hover i {
  color: #ffd700;
}

/* Portfolio Banner Styling */
.portfolio-banner {
  height: 60vh;
  color: white;
  position: relative;
}

.portfolio-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.portfolio-banner .container {
  position: relative;
  z-index: 2;
}

/* Portfolio Section */
#portfolio-section {
  background-color: #f9f9f9;
}

#portfolio-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  border: 1px solid #007bff;
}

#portfolio-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#portfolio-section .card-img-top {
  width: 350px;
  height: 200px;
  object-fit: cover;
  
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

@media (max-width: 768px) {
  #portfolio-section .card-img-top {
    width: auto;
  }
}
@media (max-width: 2560px) {
  #portfolio-section .card-img-top {
    width: auto;
  }
}
#portfolio-section .card-body {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.counter-section{
  background-color: #00D3EA;
  color: white;
}
.counter-section .counter{
  font-weight: 800;
  margin-top: 20px;
  font-size: 2.813rem;
}
.counter-section span{
  display: block;
  font-size:17px;
  font-weight: 500;
  line-height: 26px;
}
/* Blog Post */
.blog-banner{
  min-height: 80vh;
  padding: 60px 0;
}
.blog-image{
  width: 100%;
  height: 60%;
}
.custom-blog-image{
  width: 100%;
  height: 400px;
  border-radius: 15px;
}
.custom-blog-title{
  font-size: 20px;
  font-weight: 600;
}
.custom-blog-date{
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 400;
}
.custom-blog-text{
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 400;
}
.recent-blogs-section {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    position: absolute;
}

.blog-entry h5.blog-title {
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0;
}

.blog-entry p {
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-entry small {
    font-size: 0.8rem;
}
/* Counter Section */
.count{
  background-color: #00D3EA;
  color: white;
}
.count p{
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
 .counter-section h3 {
        font-size: 2rem;
        font-weight: bold;
    }

    .currency {
        font-size: 1.5rem;
        vertical-align: middle;
        margin-right: 2px;
    }

    .unit {
        font-size: 1rem;
        vertical-align: middle;
        margin-left: 2px;
    }
     .counter {
        font-size: 2.2rem;
        font-weight: bold;
        display: inline-block;
    }

    .prefix{
        font-size:35px;
        font-weight: 600;
        vertical-align: middle;
    }
    .suffix ,.unit{
      font-size: 24px;
      font-weight: 800;
    }

/* software */
.software-banner {
  height: 100%;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 10px 2px;
  position: relative;
}
.software-banner .container{
  margin-top: 15vh !important;
  margin-bottom: 5vh;
}
.software-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.software-banner p {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.software-banner .btn {
   background: linear-gradient(45deg, #e65c00, #f9d423);
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
 
.software-banner .btn:hover {
 background: linear-gradient(45deg, #0072ff, #00c6ff); /* Darker shade on hover */
  transform: scale(1.05);
}
  .project-section {
      min-height: 100vh;
      padding: 50px 20px;
      display: flex;
      justify-content: center;
    }

    .project-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 1200px;
      width: 100%;
    }

    .card-item {
      background: linear-gradient(45deg, #0ea4df, #00f7ff);
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      padding: 25px;
      width: 250px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
.card-item a{
  text-decoration: none;
  color: black;
}
    .card-item:hover {
      
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .card-item h3 {
      font-size: 18px;
      color:rgb(14, 13, 13);
      margin: 0;
    }

    @media (max-width: 768px) {
      .card-item {
        width: 100%;
        max-width: 300px;
      }
    }
    .bba{
      background-color: #000000;
      padding: 20px;
      border-radius: 10px;
      opacity: 0.8;
    }
    /* ashvani app development css */
      
/* <!-- PROCESS SECTION START --> */
      
      .Process{
        background:none;

      }
  .step {
      text-align: center;
      padding: 30px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 150px;
      height: 150px;
      margin: auto;
      position: relative;
    }
     .step img{
      width: 100%;
      height: 100%;
     }

    .step-number {
      position: absolute;
      bottom: -1px;
      right: -7px;
      background-color: #004b5b;
      color: #fff;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .process-step {   
      margin-bottom: 40px;
    margin-top: 30px;
    background-image: url(/assets/images/logo/Line.png);
    background-position: 46% 36%;
    background-repeat: no-repeat;
   
    }

    .step-title {
      margin-top: 15px;
      font-weight: 600;
    }

    .dotted-line {
      border-top: 2px dotted #ccc;
      margin: 20px auto;
      max-width: 90%;
    }

    @media (min-width: 768px) {
      .step-title {
        min-height: 48px;
      }
    }
    /* <!-- PROCESS SECTION END --> */

    /* <!-- TECHNOLOGIES SECTION  START--> */
    .technologies{
      background-color: antiquewhite;
    }
  .tech-card {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    background-color: #ffffff;
  }

  .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(4, 2, 12, 0.1);
    border-color: #0d6efd;
  }

  .tech-card h5 {
    color: rgb(56, 56, 56);
    transition: color 0.3s ease;
    font-size: 20px;
  }

  .tech-card:hover h5 {
    color: black;
    font-size: 21px;
  }

  @media (max-width: 767.98px) {
    .tech-card {
      text-align: center;
    }
  }
  /* <!-- TECHNOLOGIES SECTION  END--> */
        /* SERVICES SECTION START */

        .services h2{
              font-size: 48px;
        font-weight: 700;
        }
.service-card {
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: fadeUp 0.7s ease-in-out;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service-card h5 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: #004b5b;
}
.service-card:hover{
  h5 {
 color: black;
  }
  
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

        /* SERVICES SECTION END  */

         /* <!-- APPLICATIONS SECTION START --> */
         
.application{
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/images/bg1.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  height:auto;
  text-align: center;
  align-items: center;

}
 /* <!-- APPLICATIONS SECTION END --> */
/* track section */

.stat-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}
.stat-desc {
    font-size: 1rem;
    color: #dddddd;
}
/* gtm-section */
.gtm-section {
    background: #f8f9fa;
}

.gtm-image-wrapper img{
    object-fit: cover;
}
.image-caption {
    font-size: 0.95rem;
    border-radius: 0 0 0.5rem 0.5rem;
}
.display-3{
  font-size: 5rem;
  font-weight: 800;
}
.bba{
  opacity: 0.9;
}
.feature-card {
    transition: all 0.3s ease;
    border: 1px solod black;
    border-radius: 10px;
    padding: 10px;
width:278px;
}
.mycard{
  background-color: #0866ff;
  color: white;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
@media(max-width:768px){
    .feature-card{
        text-align: center;
    }
}

.integration-badge {
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    margin: 5px;
}

.integration-badge img {
    height: 30px;
    margin-right: 10px;
}
.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
@media(max-width:768px){
    .card-title{
        font-size: 1.3rem;
    }
}
.laundry-process {
            position: relative;
            padding-left: 30px;
        }
        
        .laundry-process:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background-color: var(--primary-color);
        }
        
        .process-step2 {
            position: relative;
            margin-bottom: 30px;
        }
        
        .process-step2:before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 3px solid white;
        }
        .integration-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.integration-scroll-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    gap: 1.5rem;
    padding: 1rem 0;
}

.integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 1rem;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* payroll slider */
 .technology-scroll-wrapper {
          position: relative;
          overflow: hidden;
          height: 80px;
      }

      .technology-scroll-track {
          white-space: nowrap;
          animation: scroll-left 30s linear infinite;
      }

      .integration-badge {
          white-space: nowrap;
          flex-shrink: 0;
          padding: 0.5rem 1.5rem;
          background: white;
          border-radius: 2rem;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          font-weight: 500;
          display: inline-flex;
          align-items: center;
      }

      @keyframes scroll-left {
          0% {
              transform: translateX(0);
          }

          100% {
              transform: translateX(-50%);
          }
      } 
      /* thanks you page */
       .thank-you-container-fluid {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        width: 100%;
        height: 100%;
    }

    .Thanks h1 {
        color: white;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 100px;
        margin-bottom: 10px;
    }

    .thank-you-container-fluid p {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .thank-you-container-fluid a {
        display: inline-block;
        padding: 10px 20px;
        /* background-color: rgb(118, 119, 119); */
        border: 2px solid white;
        color: white;
            background: linear-gradient(45deg, #e65c00, #f9d423);
        text-decoration: none;
       
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .thank-you-container-fluid a:hover {
        background-color: rgb(222, 215, 245);
        color:white;
        border: none;
    }

    @media (max-width: 768px) {
        .text-effect {
            font-size: 60px;
        }
    }

    @media (max-width: 480px) {
        .text-effect {
            font-size: 40px;
        }

        .thank-you-container-fluid {
            padding: 30px 20px;
        }

        .thank-you-container-fluid p {
            font-size: 1em;
        }

        .Thanks h1 {
            /* text-transform: uppercase; */
            font-weight: 600;
            font-size: 60px;
        }
    }

/* home page new section just bottom banner */

.image-stacks img{
  position: relative;
  width: 60%;
  flex: 1;
  margin-top: 20px;
}

.content h2 {
  font-size: 26px;
  color: #111827;
}

.content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

  .glass-card {
    backdrop-filter: blur(5px);
    background: rgba(152, 150, 150, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
  }
  .glass-card:hover {
    transform: translateY(-10px);
    background: rgba(193, 192, 192, 0.15);
  }



