
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;  
    }
input.error-field, select.error-field, textarea.error-field {
  border: 1px solid red;
}
    .typing-container {
    text-align: left;display: flex;gap: 8px;width: 100%;
  }

  .top-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff; 
    margin: 0 0 0.3rem 0;
  }

  .typing-row {
    font-size: 24px;
    font-weight: 700;
    color: #ff6600; 
  
    margin: 0;-webkit-text-stroke-color: white;
  }

  .cursor {
    /* display: inline-block; */
    display: none;
    width: 2px;
    height: 1.2em;
    background: #FF9A00;
    margin-left: 0.2rem;
    animation: blink 1s steps(2, end) infinite;
  }

  @keyframes blink {
    50% { opacity: 0; }
  }

  /* 📱 Responsive: stack nicely */
  @media (max-width: 480px) {
    .typing-container {
      text-align: center; display: block;/* optional for mobile */
    }
    .top-text {
      font-size: 1rem;
    }
    .typing-row {
      font-size: 1.5rem;
    }
  }


    h1, h2, h3 ,h5{
  font-family: "Poppins", sans-serif;
  font-weight: 100; /* Bold */
  letter-spacing: 1px; /* Slight spacing for style */
}
    #heading{
     color: #000;padding-top: 40px;
    }html ,body{
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  overflow-x: hidden;
}
  p, a, li {
    font-family: 'josefin sans', sans-serif;
    font-weight: 400; /* Normal text */
  }  nav {
      background:#1a73e8;
      padding: 15px 20px;
      position: relative;
      z-index: 1000;
      position: fixed;width: 100%; 
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-left, .nav-right {
      display: flex;
      align-items: center;
      /* gap: 15px; */
    } .nav-left {
  /* position: absolute;left: 22px;top: 50px; */
  display: none;
    }
     .nav-left .fa-solid{
    padding: 18px;border-radius: 50%;cursor: pointer;
      background-color:aliceblue;position: absolute;left: 9px;
    }
#dropdown-arrow{
display: flex;
}
    .nav-center {
      position: absolute;
     left: 10%;cursor: pointer;
      transform: translateX(-50%);top:35px;
    } .nav-center h5 {
     color: rgb(255, 255, 255);
     font-weight:600 ;text-align: center;
    }

    .nav-center img {
      height: 30px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: black;
      font-size: 1em;
      cursor: pointer;
    }

    .nav-menu {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
      gap: 20px;
      margin-top: 10px;
    }

    .nav-menu > li {
      position: relative;
    }
.nav-menu > li > ul {
  width: 100%;              /* fill the LI’s width */
}.nav-menu ul li a {
  display: block;
  padding: 10px 20px;       /* horizontal padding you like */
  white-space: nowrap;
}.nav-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;      /* kill any UL margin */
  padding: 0;     /* kill UL padding */
  list-style: none;
}
.nav-menu a {
      color:rgb(255, 255, 255);
      text-decoration: none;
      padding: 10px;
      display: block;
      font-weight: 400;
    }

    .nav-menu li:hover > ul {
      display: block;
    }

    .nav-menu ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;list-style-type: none;
      background:#1a73e8;
      min-width: 200px;
      z-index: 999;
    }

    .nav-menu ul li {
      position: relative;
    }

    .nav-menu ul ul {
      left: 100%;
      top: 0;
    }

    .nav-menu ul a:hover {
      background: #dfe5f838;
    }.nav-menu > li > a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 10px;
  display: block;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

/* Bottom underline animation */
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
   /* Mega Menu */
.mega-menu {
    position: absolute;
       right: -450%;
    transform: translate(-50%, 15px); 
    top: 100%;
    width: 1000px;
    background: #1a73e855;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
    /* opacity: 0.30; */
    visibility: hidden;
   
    transition: all 0.3s ease;
    z-index: 99;
}
nav ul li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.nav-service-card {
    background: #ffffff;
    border-radius: 10px;
    display: inline-block;
    /* text-align: center; */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}.nav-service-card a{
  display: inline-block !important;color: black !important;
}
.nav-service-card a span{
 display: none;
}
.nav-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px #000000b8;cursor: pointer;
}
.nav-service-card img {
    width: 40px;
    color: #000;
    margin-bottom: 10px;
}
.nav-service-card p {
    margin: 0;display: inline-block;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center; 
    }
    .mega-menu {
        width: 100vw;
        left: -5%;
        transform: translateX(-50%) translateY(15px); 
}
/* .nav-service-card p {
    margin: 0;display: inline-block;
   font-size: 13px;
} */
 .nav-service-card p {
  display: none;
   font-size: 10px;
} 
.nav-service-card img {
  display: none;
}.nav-service-card{
  align-items: center;justify-content: center;
}
.nav-service-card a span{
   display: inline-block;
   font-size: 13px;
}
}
@media (max-width: 320px) {
    
 .nav-service-card p {
  display: none;
   font-size: 10px;
} 
.nav-service-card img {
  display: none;
}.nav-service-card{
  align-items: center;justify-content: center;
}
.nav-service-card a span{
   display: inline-block;
   font-size: 13px;
}
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center; 
    }
 
}

/* Hide top nav on mobile */
/* @media (max-width: 768px) {
  .nav-right {
    display: none;
  }
 
} */
 /* search */
  /* Search Bar Container */
  .search-bar-container {
    position: fixed;
    top: -70px;
    left: 50%;display: none;
    transform: translateX(-50%);
    background: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 9999;
  }

  /* Input Field */
  .search-bar-container input {
    border: none;
    outline: none;
    padding: 12px;
    font-size: 16px;
    flex: 1;
    border-radius: 20px;
  }

  /* Close Button */
  .close-search {
    font-size: 20px;
    margin-left: 10px;
    color: #333;
    cursor: pointer;
  }

  /* Show Search Bar */
  .search-bar-container.active {
    top: 80px;
    opacity: 1;
    pointer-events: auto;
  }

   
/* Home page */
/* Floating background animation */
@keyframes floatImage {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Text fade-up animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Base styles */
.homepage {
  background-image: url('./img/home-img\ \(2\).webp');
  background-repeat: no-repeat;
  background-size:cover;
  width: 100%;
  height: 550px;
  background-position: left;
  position: relative;
  animation: floatImage 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;margin-top: 5%;
}

.hometext {
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
  max-width: 400px;
}

#tagline {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3; }

#tagline span {
  font-weight: 800;
}

.form-contact {
  margin-top: 20px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  color: white;
  background-color: #1a73e8;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: 60%;margin-left: 15%;
  transition: background-color 0.3s ease;
}

.form-contact:hover {
  background-color: #000000;
}
/* .register-form {
  margin-top: 20px;
  padding: 13px;
  border: none;
  border-radius: 10px;
  color: white;
  background-color: #1a73e8;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  width: 60%;margin-left: 15%;
  transition: background-color 0.3s ease;
}

.register-form:hover {
  background-color: #000000;
} */

/* contact form  */
/* Modal Overlay */
.modal {
  display: none;
  /* position: fixed; */
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeInBg 0.4s ease-in;
}

/* Modal Content */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 30px 25px;
  border-radius: 14px;
  max-width: 450px;
  position: relative;
  animation: slideUp 0.5s ease-out;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.modal-content h2 {
  color: #1a73e8;
  text-align: center;
  margin-bottom: 20px;
}
.form-footer-con {
  margin-top: 25px;display: flex;
  flex-direction: row;gap: 20px;
}

.form-footer-con button {
  background-color: #1a73e8;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  margin-bottom: 20px;
}

.form-footer-con button:hover {
  background-color: #0958bf;
} .call-btn a {
    color: white;text-decoration: none;
  }
@media (max-width: 1024px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-form {
    width: 100%;
    margin: 200px auto;
  }

  .form-footer-con {
    flex-direction: column;
    gap: 15px;
  }

  .form-footer-con button {
    width: 100%;
    font-size: 15px;
  }

  .contact-form .title {
    font-size: 24px;
  }
}

/* Mobile Devices (≤768px) */
@media (max-width: 768px) {


  .form-footer-con {
    flex-direction: column;
    gap: 12px;
  }

  .form-footer-con button {
    font-size: 15px;
    padding: 12px 15px;
    width: 100%;
  }

  .call-btn a {
    display: inline-block;
    font-size: 14px;
  }
}

/* Small Mobile Devices (≤480px) */
@media (max-width: 480px) {
 

  .form-footer-con button {
    font-size: 14px;
    padding: 10px;
  }

  .call-btn a {
    font-size: 13px;
  }

}

/* ---------------- RESPONSIVE BREAKPOINTS ---------------- */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {

  .contact-form {
   
    padding: 25px;
  margin: 160px auto;
    width: 90%;
  
  }
}
/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Inputs */
.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  border-color: #1a73e8;
}

/* Submit Button */
.submit-btn {
  background: #1a73e8;
  color: white;
  border: none;
  width: 100%;
  padding: 13px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #000000;
  transform: scale(1.03);
}

/* Animations */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
  }
.feature-box-section {
  background: #f5f8ff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;margin-top: -5%;
}

.feature-box {
  background: #fff;
  border-top: 3px solid #1a73e8;  
  border-bottom: 3px solid #1a73e8;
  border-radius: 60px 60px 60px 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;  z-index: 10;
  position: relative;
  gap: 30px;
   transform: perspective(800px) translateZ(20px);
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: perspective(800px) translateZ(40px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} .line{
  background-color: black;
  width: 2px;height: 80px;
}
.feature-item {
  flex: 1 1 250px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.feature-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: #0b1e3f;text-align: center;
}

.feature-item p {
  margin: 0;
  font-size: 15px;
  color: #555;
  max-width: 300px;text-align: center;
}


/* slider img */

   /* body {
      font-family: Arial, sans-serif;
      background: #fff;
      margin: 0;
      padding: 0;
    } */

    .slide {
      padding: 40px 10px;align-items: center;justify-content: center;display: flex;
      text-align: center;
    } .slide h1{
    line-height: 3.4rem;
    }

    .circle-slider {
      max-width: 1200px;
      margin: auto;height: 450px;
    }

    .circle-card {
      text-align: center;
      padding: 50px;margin-top: 10px;
    }

    .circle-card .img-wrapper {
      width: 250px;
      height: 250px;
      margin: 0 auto 15px;
      border-radius: 50%;
      border: 10px solid #f0f2f6;
      overflow: hidden;
      position: relative;
      transition: all 0.4s ease;
    }

    .circle-card .img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .circle-card .img-wrapper:hover {
      border-color: #1a73e8;
    }

    .circle-card .img-wrapper:hover img {
      transform: scale(1.05);
    }

    .circle-card .img-wrapper::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.05) 100%
      );
      transform: skewX(-25deg);
      z-index: 2;
      pointer-events: none;
    }

    .circle-card .img-wrapper:hover::after {
      animation: shine 0.8s forwards;
    }

    @keyframes shine {
      0% { left: -75%; }
      100% { left: 125%; }
    }

    .circle-card h2{
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .circle-card p {
      font-size: 14px;
      color: #555;
      max-width: 250px;
      margin: 0 auto;
    }

    .slick-slide {
      transform: scale(0.95);
      transition: all 0.4s ease; padding: 0 10px;}

    .slick-center {
      transform: scale(1.05);
    }

    /* REMOVE arrows and dots */
    .slick-prev,
    .slick-next,
    .slick-dots {
      display: none !important;
    }
/* about */
.hero-section {
      padding: 0px 20px;
      position: relative;
    }

    .hero-image {
  position: relative;
  border-radius: 30px;
  margin-left: 8%;
  max-width: 80%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInLeft 1s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit; /* Important! */
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

   .video-thumb {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  border-radius: 20px;
  border: 5px solid white;  /* ✅ Fixed */
 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.639);
  z-index: 2;
  transition: transform 0.3s ease;
}

    .video-thumb:hover {
      transform: scale(1.05);
    }

    .video-thumb img {
      width: 100%;
      display: block;
    }

    .content-title {
      font-size: 46px;
      font-weight: 400;
      color: #1e1e2f;
      animation: fadeInRight 1s ease;
    }

    .section-label {
      display: inline-block;
 
      color: #1a73e8;
      font-size: 18px;
      padding: 5px 12px;font-weight: 400;
      border-radius: 4px;
      margin-bottom: 15px;
      animation: fadeInRight 1s ease;
    }

    .content-text {
      font-size: 16px;
      color: #555;
      margin-top: 15px;
      margin-bottom: 25px;
      animation: fadeInRight 1.2s ease;
    }

    .icon-list {
      list-style: none;
      padding: 0;
    }

    .icon-list li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;color: black !important;
      animation: fadeInRight 1.4s ease;font-weight: 700;
    }

    .icon-list i {
      background: #1a73e8;
      color: white;
      padding: 15px;
      border-radius: 50%;
      margin-right: 10px;
    }

    .learn-btn {
      background: #000000;
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      border: none;
      transition: background 0.3s ease;
      animation: fadeInRight 1.6s ease;
    }

    .learn-btn:hover {
      background:#1a73e8;
    }  

   

    /* Animations */
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }.right-img img{
width: 50%;top: 40%;
    position: absolute; z-index: -1; right: 0%;
  opacity: 0.10;}

  /* sliding content-title */

  /* card */
/* cards */
 
#viewbtn {
  cursor: pointer;
  color: rgb(255, 255, 255);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;background-color: #1a73e8;
  transition: box-shadow 0.3s ease;
}

#viewbtn:hover {
  box-shadow:  5px 15px 20px rgba(0, 0, 0, 0.5);
}
/* card */
/* cards */
.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 20px;
  color: white;
}


/* cards */
/* body {
      background: #f4f4f4;
      font-family: sans-serif;
    } */

    .items {
      width: 90%;
      margin: 80px auto;
    }

    .card {
      background: #fff;
      padding: 20px;
      margin: 10px;
      border-radius: 10px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
      text-align: center;
      font-size: 1.5rem;
    }

  .small-text {
  font-size: 15px;
  color: #555;
}.projects{
  display: flex;justify-content: space-evenly;
}.card-body{
  line-height: 20px;
}


@media (max-width: 468px) {
  .card {
    width: 100% !important;
    margin: 10px 0;
    font-size: 1rem;
  }

  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .card-body {
    padding: 10px;
    line-height: 1.4;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.8rem;
  }

  .items {
    width: 100% !important;
    margin: 20px auto !important;
    padding: 0 10px;
  }
}

/* numbers counts */
.counter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  padding: 80px 20px;
  background: #fff;
}
/* .counter {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
  justify-items: center;
  padding: 60px 20px;
  background: #fff;
} */

.stat-card {
  width: 250px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 2px #0f58d6f5;
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.997);
  animation: glowPulse 2s infinite alternate;
}

.stat-card::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background-color: #f5f8fc;
  border-radius: 50%;
  z-index: 0;
}

.ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #2169e1;
  animation: rotateRing 2s linear infinite;
  z-index: 1;
  opacity: 0.15;
}

.percent-counter {
  font-weight: bold;
  font-size: 2.2rem;
  /* font-family: 'Segoe UI', sans-serif; */
  z-index: 2;
  color: #000;
  position: relative;
}

.stat-card p {
  margin-top: 10px;
  font-size: 1rem;
  color: #222;
  z-index: 2;
  position: relative;
}

.stat-card::after {
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(25deg);
  transition: all 0.5s ease;
  z-index: 3;
}

.stat-card:hover::after {
  left: 100%;
  transition: all 0.75s ease;
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(0, 102, 255, 0.15); }
  100% { box-shadow: 0 0 25px rgba(0, 102, 255, 0.3); }
}

/* Responsive */
/* Base styles (Desktop-first, 1025px and above) */
.clients {
  margin: 0;
  /* font-family: 'Segoe UI', sans-serif; */
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  padding: 40px 20px;
}

.slider-container {
  padding: 0px 25px 60px;
  border-radius: 15px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  position: absolute;
  right: 6%;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
}

.review {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: -13px;
  width: 100%;
  padding: 0px 20px;
}

.review.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.review p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.review h3 {
  color: #666666;
  font-weight: normal;
  margin-bottom: 10px;
}

.stars {
  color: #f39c12;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: #003edd;
}

/* Client review images */
.img-client-1 img {
  position: absolute;border: 10px solid rgb(243, 243, 243);
  width: 30%;
  left: 7%;
  top: 1%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.20);
  border-top-left-radius: 40%;
  border-end-end-radius: 40%;
}

.img-client-2 img {
  position: absolute;
  border: 10px solid rgb(243, 243, 243);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.20);
  width: 23%;
  left: 30%;
  top: 13%;
  border-top-left-radius: 40%;
  border-end-end-radius: 40%;
}

.head {
  position: absolute;
  top: 17%;
  right: 0%;
  width: 50%;
  font-size: 60px;
  font-weight: bolder;
  text-align: left;
}.head h2{
  font-weight: 600;text-align: center;
}

/* Tablet styles (max-width: 1024px) */
/* Tablet styles (max-width: 1024px) */
@media (max-width: 1024px) {
  .clients {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-top: 40px;
  }

  /* Remove absolute positioning for images */
  .img-client-1 img,
  .img-client-2 img {
    position: relative;
    width: 40%;
    left: 0;
    top: 0;
    margin: 10px auto;
    display: block;
    border-width: 8px;
  }

  /* Stack the two images vertically with gap */
  .client-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .head {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 36px;
    margin: 20px 0;
  }

  .slider-container {
    position: relative;
    right: 0;
    max-width: 90%;
  }
}


/* Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
  .clients {
    padding: 40px 10px;
  }

  .img-client-1 img,
  .img-client-2 img {
    position: relative;
    width: 50%;
    left: 0;
    top: 0;
    border-width: 5px;
    margin-bottom: 20px;
  }

  .head {
    font-size: 28px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .slider-container {
    max-width: 100%;
    padding: 0 15px 50px;
  }

  .review p {
    font-size: 1rem;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .head {
    font-size: 22px;
  }

  .img-client-1 img,
  .img-client-2 img {
    width: 70%;
  }

  .thumb {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1024px) {
  .clients {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-top: 40px;
  }}
    /* contact-page */
    
.contact-section {
  padding: 60px 20px;
  background: url('https://images.unsplash.com/photo-1607746882042-944635dfe10e') no-repeat center center / cover;
}

.contact-container {
  max-width: 1200px;
  background: white;
  border-radius: 20px;
  display: flex;
  margin: auto;
  overflow: hidden;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 500px;
  padding: 40px;
  background-color: #fff;
  color: #333;
}

.contact-info {
  flex: 1 1 500px;
  padding: 40px;
  background: #0b1120;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 50px 16px 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.form-group i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.form-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-footer button {
  background-color: #0b5ed7;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 16px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-footer button:hover {
  background-color: #000000;
}

.form-footer span {
  color: #0b5ed7;
  font-weight: bold;
}
.content-title span {
  color: #0b5ed7;
  font-weight: bold;font-size: 20px;
}

.contact-info .subtitle {
  font-size: 16px;
  color: #03223f;
  margin-bottom: 10px;
}

.contact-info .title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-info .desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #0b5ed7;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: 0.3s;text-align: center;
}

.cta-btn:hover {
  background-color: #094ab6;
}
.form-group select {
  transition: all 0.3s ease;
}

.form-group select:focus {
  border-color: #0b5ed7;
  box-shadow: 0 0 10px rgba(11, 94, 215, 0.3);
  transform: scale(1.02);
}
 /* small blog */
    h2 {
      text-align: center;
      font-size: 2rem;
      margin-top: 40px;
      /* color: #fff;*/
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 250px;
      gap: 30px;
      padding: 60px;
    }

    .blog-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: row;
      height: 100%;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: #000;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .blog-card img {
      width: 50%;
      height: 100%;
      object-fit: cover;
    }
.blog-card #digital {
      width: 90%;
      height: 100%;
      background-size: cover;
    }
    .blog-card .content {

      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 50%;
    }

    .blog-card h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
      color: #111;
    }

    .blog-card .read-more {
      display: inline-block;
      font-size: 0.85rem;
      color: #fff;
      text-decoration: none;
      padding: 10px 18px;
      border-radius: 8px;
      background-color: #1a73e8;
      width: fit-content;
      transition: background-color 0.3s ease;
    }

    .blog-card .read-more:hover {
      background-color: #000;
    }

    /* Make 2nd card taller */
    .blog-grid .blog-card:nth-child(2) {
      grid-row: span 2;
      flex-direction: column;
    }

    .blog-grid .blog-card:nth-child(2) img {
      width: 100%;
      height: 60%;
    }

    .blog-grid .blog-card:nth-child(2) .content {
      width: 100%;
      height: 40%;
      padding: 20px;
    }

/* img */


    .slide-img {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 50vh;
      background: #dbdbdb;
      overflow: hidden;
    }

    .slider-wrapper {
      width: 100%;
      overflow: hidden;
    }
.sliderhead{
  background-color: #dbdbdb ;
}
    .slider {
      display: flex;
      flex-wrap: nowrap;
      width: max-content;
      animation: scroll 30s linear infinite;
    }

    .slider:hover {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .box {
      position: relative;
      width: 275px;
      height: 275px;
      background: #000;
      transition: 0.5s;
      transform-style: preserve-3d;
      overflow: hidden;
      margin: 30px 15px;
      flex-shrink: 0;
    }

    .slider:hover .box {
      transform: rotateY(25deg);
    }

    .box:hover ~ .box {
      transform: rotateY(-25deg);
    }

    .box:hover {
      transform: rotateY(0deg) scale(1.25);
      z-index: 1;
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
    }

    .imgBx {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .imgBx:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #000000b2);
      z-index: 1;
      opacity: 0;
      transition: 0.5s;
      mix-blend-mode: multiply;
    }

    .box:hover .imgBx:before {
      opacity: 1;
    }

    .imgBx img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .box .contents {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      display: flex;
      padding: 20px;
      align-items: flex-end;
      box-sizing: border-box;
    }

    .box .contents h2 {
      color: #fff;
      transition: 0.5s;
      text-transform: uppercase;
      /* margin-bottom: 5px; */
      font-size: 20px;margin: 100px;
      transform: translateY(200px);
      transition-delay: 0.3s;
    }

    .box:hover .contents h2 {
      transform: translateY(0px);
    }
 .box:hover .contents p {
      transform: translateY(0px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .box {
        width: 200px;
        height: 200px;
      }
      .contents h2 {
        font-size: 16px;
      }
      .contents p {
        font-size: 12px;
      }
    }

    /* Optional: Hide scrollbars */
    .slider-wrapper {
      scrollbar-width: none;
    }
    .slider-wrapper::-webkit-scrollbar {
      display: none;
    }

  /* ================== FOOTER BASE ================== */
.footer {
  padding: 60px 20px 20px;
  background-color: #1a73e8;
  color: #fff;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1300px;
  margin: auto;
}

.footer-about img.logo {
  width: 150px;
}

.footer-about h2 {
  font-size: 4rem;
  /* margin-bottom: 20px; */
  color: #ffffff;text-align: left;
  font-weight: bold;
}

.footer-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-about button {
  background-color: transparent;
  padding: 15px 20px;
  flex: 1;
  min-width: 200px;
  border-radius: 25px;
  color: white;
  border: 1px solid white;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer-about button:hover {
  background-color: black;
}

.footer-about button a {
  flex: 1;
  text-decoration: none;
  color: white;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-links ul li i {
  margin-right: 10px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a i {
  font-size: 22px;
  color: white;
}
.social-icons a i:hover {
  color: black;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom p {
  font-size: 14px;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: #005eff;
  color: white;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px #ffffffcd;
}
.scroll-to-top i {
  font-size: 15px;
}

/* ================== RESPONSIVE ================== */

/* Tablets (max 1024px) */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about h2 {
    font-size: 2.5rem;
  }
}

/* Mobile Landscape & Portrait (max 768px) */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-about img.logo {
    margin: auto;
  }
  .footer-about h2 {
    font-size: 2rem;
  }
  .footer-buttons {
    justify-content: center;
  }
  .footer-about button {
    min-width: 180px;
    font-size: 16px;
  }
  .footer-links ul li,
  .footer-contact ul li {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .footer-about h2 {
    font-size: 30px; /* as you requested */
    line-height: 1.3;
  }
  .footer-about button {
    width: 100%;
    min-width: unset;
    font-size: 14px;
    padding: 12px 15px;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }.footer{
    margin-bottom: 50px;
  }
}
   /* Responsive */
    @media(max-width: 900px) {
      #ads-section .ad-section {
        grid-template-columns: 1fr;
        text-align: center;
      }

      #ads-section .ad-image {
        order: -1; /* image above text on mobile */
      }
    }

    .illustration {
      flex: 1;
      background: #f3f3f3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px;
    }
    .illustration img {
      width: 100%;
      max-width: 400px;
      animation: bounce 4s infinite ease-in-out;
    }
    @keyframes bounce {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }




/* mobile responsive navbar */
/* Hidden by default */
.mobile-bottom-nav {
  display: none;
}

/* Show only on mobile */

#bottom-nav{
display: none;
}
/* animation */
/* Keyframes for sliding up */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animated navbar style */
#bottom-nav {
  animation: slideUp 0.4s ease-out;
}
#bottom-nav a {
  transition: transform 0.3s ease, color 0.3s ease;padding: 5px;
}

#bottom-nav a:hover i {
  transform: scale(1.2); /* grow */
  color: #0d6efd; /* Bootstrap primary color or any you like */
  margin: 5px;
}

  /* Hide bottom nav on tablets & desktops */
  @media (min-width: 768px) {
    #bottom-nav {
      display: none;
    }
  }/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  #bottom-nav {
    display: none !important;
  }
}
/* whatapp icon */

    .whatsapp-btn {
      position: fixed;
      bottom: 30%;
      right: 15px;
      width: 60px;
      height: 60px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      cursor: pointer;
      animation: pulse 2s infinite, float 4s ease-in-out infinite;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 999;
    }

    .whatsapp-btn img {
      width: 60px;
      height: 60px;
    }

    .whatsapp-btn:hover {
      transform: scale(1.15);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    /* Pulse glow effect */
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(32, 195, 92, 0.6); }
      70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* Floating up and down */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }


    /*----------------------------- About-page ------------------------------
    -------------------------------------------------------------------------*/
    