/* Global Reset and Layout */
/* ✅ Fix for preventing section auto-jump (especially on mobile) */
html, body {
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  overflow-anchor: none !important;
  overscroll-behavior: none !important;
}
section {
  scroll-margin-top: 80px !important;
}
.hero {
  scroll-margin-top: 0 !important;
  min-height: auto !important;
}


body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px !important;
  overflow-x: hidden;
}

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

img, video, iframe, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

section, header, footer, main, nav {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

/* Remove scrollbar from navbar on mobile */
.navbar-collapse {
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  max-height: 100vh;
}

/* Hide scrollbars globally if needed */
::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Bootstrap container fix */
.container, .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* Hero Section */
.hero {
  overflow: hidden;
  position: relative;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-toggler {
  margin-left: auto;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar-nav {
    gap: 20px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .navbar .nav-link {
    color: #000 !important;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content h2, h3 {
    font-size: 1.2rem;
  }

  section, .hero, .solutions-section, .why-choose-section {
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .solution-image,
  .solution-card,
  .testimonial,
  .blog-card,
  .slider-card,
  .service-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .testimonial-track,
  .slider-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .testimonial-track::-webkit-scrollbar,
  .slider-track::-webkit-scrollbar {
    display: none;
  }

  .main-visual {
    max-width: 100% !important;
  }
}

/* Section specific */
.about-section-light {
  background: #fff0f5;
  padding: 5rem 0;
  position: relative;
}

.about-section-light h2 {
  font-size: 2.5rem;
  color: #2c2c2c;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-section-light .text-gradient {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section-light p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

.btn-gradient {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  display: inline-block;
}

.btn-gradient:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Image inside the about section */
.about-section-light img.main-visual {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

/* Optional chat bubble element (if used) */
.chat-bubble {
  position: absolute;
  background: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section-light {
    padding: 3rem 1rem;
    text-align: center;
  }

  .about-section-light h2 {
    font-size: 1.8rem;
  }

  .about-section-light p {
    font-size: 1rem;
  }

  .main-visual {
    max-width: 100% !important;
    height: auto !important;
  }

  .btn-gradient {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}
/* 1️⃣ Define the pop‑up animation */
@keyframes popUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2️⃣ Apply it only on desktop (screens wider than 992px) */
@media (min-width: 992px) {
  .about-section-light .main-visual {
    /* start invisible/down */
    opacity: 0;
    transform: translateY(20px);

    /* animate into place */
    animation: popUp 9s ease-out 0.5s forwards;
    /* (duration 0.8s, delay 0.3s, keep final state) */
  }
}




/* Animations */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes fadeInText {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .about h2 {
    font-size: 2rem;
  }

  .about p,
  .about span {
    font-size: 1rem;
  }
} 
/* ================================
   NAVBAR BASE STYLES
   ================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible; /* allow dropdown to overflow */
  background: linear-gradient(to right, #b64f6a, #84c7d3);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 0;
}

/* ================================
   ANIMATED WAVE BACKGROUND
   ================================ */
.navbar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23fcd3e1" fill-opacity="0.4" d="M0,224L60,229.3C120,235,240,245,360,245.3C480,245,600,235,720,202.7C840,171,960,117,1080,101.3C1200,85,1320,107,1380,117.3L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"/></svg>') repeat-x;
  background-size: contain;
  animation: wave-move 8s linear infinite;
  z-index: 0;
  opacity: 0.5;
}

@keyframes wave-move {
  0% { background-position-x: 0%; }
  100% { background-position-x: 100%; }
}

/* ensure navbar children sit above the wave */
.navbar > * {
  position: relative;
  z-index: 2;
}

/* ================================
   NAV ITEMS
   ================================ */
.navbar-nav {
  gap: 60px;
}

.navbar .nav-link {
  color: #111 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #00c7b7 !important;
}

/* ================================
   DROPDOWN: DESKTOP BEHAVIOR
   ================================ */
@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative; /* anchor for absolute dropdown */
  }
  .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;                /* hidden until hover */
    min-width: 200px;
    margin-top: .5rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 8px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    z-index: 3000;                /* above everything */
  }
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  /* remove default caret */
  .nav-item.dropdown .dropdown-toggle::after {
    display: none;
  }
}

/* ================================
   OFFCANVAS / MOBILE BEHAVIOR
   ================================ */
/* allow dropdown to overflow the offcanvas */
.offcanvas, 
.offcanvas-body {
  overflow: visible !important;
}

.offcanvas .dropdown {
  position: relative; /* anchor for absolute menu */
}

.offcanvas .dropdown-menu {
  position: absolute !important;
  top: 100%;
  left: 0;
  display: none;
  min-width: 200px;
  margin-top: .5rem;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  z-index: 3000;
}

.offcanvas .dropdown.show .dropdown-menu {
  display: block !important;
}

/* ================================
   CUSTOM DROPDROPS (if used)
   ================================ */
.custom-dropdown {
  position: absolute !important;
  top: 100%;
  left: 0;
  margin-top: 5px;
  z-index: 3000;
  background-color: #fff;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  color: #222;
  font-weight: 500;
  transition: background 0.3s ease;
}
.custom-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #00c7b7;
}

/* ================================
   SOCIAL ICONS
   ================================ */
.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f3f3f3;
  color: #1e09dd;
  font-size: 16px;
  transition: transform 0.3s, background 0.3s, color 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #00c7b7;
  color: #fff;
  transform: scale(1.1);
}

/* ================================
   MOBILE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {
  .navbar .nav-link {
    font-size: 13px;
    padding: 6px 8px;
  }
  .navbar-nav {
    gap: 30px;
  }
}

/* Hero Section */
 .hero {
  position: relative;
  width: 100%;
  height: 100vh;                 /* full viewport height */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://thumbs.dreamstime.com/z/close-up-businessmen-handshake-creative-glowing-marketing-hologram-digital-online-commerce-sale-partnership-concept-309584020.jpg?ct=jpeg');
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-weight: bold;
  transition: all 0.2s ease;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.cta-button:hover {
  background: rgba(214,5,5,0.2);
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content h2 { font-size: 1.2rem; }
  .hero-content h3 { font-size: 1rem; }
}

/* our solutions */
.solution-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  /* padding: 30px; */
  transition: all 0.3s ease;
  animation: slideLeft 1s ease-in-out;
}


@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
 to{
    transform: translateX(0);
    opacity: 1;
  }
}

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

.solution-image {
  max-width: 400px;
   width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  animation: fadeUp 1s ease-in-out;
}
.solutions-section {
  background: linear-gradient(to bottom, #f3faff, #d9f3fb); /* subtle light gradient */
  padding-top: 100px;
  padding-bottom: 160px;
  position: relative;
  min-height: 100vh; /* force enough height to hold card & image */
  z-index: 1;
}

.solutions-section .carousel-inner {
  min-height: 300px;
}

.solution-card {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border-radius: 1rem;
   transition: transform 0.3s ease;
  animation: slideLeft 1s ease-in-out;
}

/* Remove side padding from the container on mobile */
@media (max-width: 768px) {
  .solutions-section.container,
  .solutions-section .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Ensure carousel and slides span full width */
  #solutionsCarousel,
  #mySolutionsCarousel,
  .carousel-inner,
  .carousel-item {
    width: 100% !important;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  /* Consistent image sizing */
  .solution-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  /* Reduce vertical spacing above and below slides */
  .solutions-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}


/* degital marketing */
   .digital-marketing-image {
      animation: slideUp 12.5s ease-in-out both;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .digital-marketing-content p {
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }

    .digital-marketing-content p:nth-child(1),
    .digital-marketing-content p:nth-child(2),
    .digital-marketing-content p:nth-child(5) {
      display: block;
    }

    .digital-marketing-content p:nth-child(3),
    .digital-marketing-content p:nth-child(4),
    .digital-marketing-content p:nth-child(6) {
      display: none; /* hide excess paragraphs */
    }

    @media (max-width: 768px) {
      .digital-marketing-content p {
        font-size: 0.95rem;
      }
    }
.departments_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team_domain_name {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.team_domain_name:hover {
  transform: scale(1.05);
}

.lottie-animation {
  width: 150px;
  height: 150px;
}



/* About, Solutions, Why Choose */
section {
  padding: 4rem 2rem;
  text-align: center;
  transition: background 0.4s, color 0.4s;
}
.solutions-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9, #e6f7ff);
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-divider span {
  width: 60px;
  height: 100px;
  background-color: #007bff;
}

.section-divider i {
  color: #007bff;
  font-size: 20px;
}

.section-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.highlight {
  color: #007bff;
  font-weight: bold;
}

.carousel-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.solution-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}
.solution-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.carousel-item .row {
  display: flex;
  align-items: stretch;
}

.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.solution-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

.solution-card i {
  margin-bottom: 10px;
  color: #007bff;
  transition: color 0.3s ease;
}

.solution-card:hover i {
  color: #fff;
}

.solution-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 15px;
  color: #555;
  transition: color 0.3s ease;
}

.solution-card:hover p {
  color: #fff;
}
.solution-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
   filter: grayscale(100%) brightness(50%)
}
.carousel-indicators [data-bs-target] {
  background-color: #333;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
/* Why Choose Us section */
 .why-choose-section {
       background: linear-gradient(to right, #e3f2fd, #fce4ec);
      padding: 60px 20px;
      color: #333;
      overflow: hidden;
    }

    .section-heading {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      color: #222;
    }

    .section-divider {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .section-divider span {
      width: 50px;
      height: 2px;
      background: #ccc;
      margin: 0 10px;
    }

    .section-divider i {
      color: #f39c12;
      font-size: 1.2rem;
    }

    .section-subtext {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
      text-align: center;
      color: #555;
    }

    .slider-container {
      overflow: hidden;
      width: 100%;
      position: relative;
    }

    .slider-track {
      display: flex;
      width: calc(320px * 12); /* 6 cards x2 for loop */
      animation: scrollSlider 40s linear infinite;
    }

    .slider-card {
      flex: 0 0 320px;
      margin: 0 15px;
      background: #fff;
      border-radius: 1rem;
      padding: 30px 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.3s ease;
    }

    .slider-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(206, 163, 163, 0.712);
    }

    .slider-card i {
      font-size: 2rem;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
    }

    .slider-card:hover i {
      transform: scale(1.2) rotate(5deg);
    }

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

    @media (max-width: 768px) {
      .slider-track {
        animation-duration: 60s;
      }

      .slider-card {
        flex: 0 0 260px;
      }

      .section-heading {
        font-size: 2rem;
      }

      .section-subtext {
        font-size: 1rem;
        padding: 0 10px;
      }
    }
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
/* services */

.services {
  padding: 60px 20px;
  background: #ddd0d4;
  text-align: center;
}

.services .section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #f9f9f9;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* 👇 Center contents */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.service-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: block;
}

.service-item a {
  text-decoration: none;
}

.service-item p {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  color: black;
  text-align: center;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-item {
    padding: 20px 10px;
  }
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollRTL 35s linear infinite;
}

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

.testimonial {
  flex: 0 0 300px;
  min-width: 300px;
  max-width: 320px;
  background: #fff;
  border-left: 4px solid #007bff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 0 0.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.05);
}

.testimonial h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.testimonial p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.testimonial-date {
  font-size: 0.8rem;
  color: #888;
  margin-top: auto;
}

/* ✅ Remove all mobile-specific overrides */


/* ============================
   Blog Section Styling
============================ */

#blogs{
  background-color: lightblue;
}
/* Blog Card Style */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cards */
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Card Inner Body */
.blog-card .card-body {
  padding: 1.2rem;
}

/* Blog Heading */
.blog h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a0a0a;
  animation: fadeInDown 1s ease-in-out;
  margin-bottom: 20px;  /* Added spacing */
}

/* Card Title */
.blog .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  animation: fadeInUp 1s ease-in-out;
  margin-bottom: 10px;  /* Added spacing */
}

/* Card Text */
.blog .card-text {
  font-size: 0.95rem;
  color: #444; /* Updated from too-light grey to visible grey */
  animation: fadeInUp 1.2s ease-in-out;
  margin-bottom: 15px;  /* Added spacing */
}

/* Button Styling */
.blog .btn {
  margin-top: 10px;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s ease-in-out;
  padding: 10px 20px;
  border-radius: 30px;  /* Rounded button */
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
}

.blog .btn:hover {
  background-color: #0056b3;
  color: #fff;
  transform: scale(1.05);
}

/* Blog Card Hover Extra Effect */
.blog .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Adding subtle animation to buttons */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================
   Clients Section Styling
============================ */
/* ============================
   Clients Section Styling
============================ */
.clients {
  background: #f7f6f6;
  overflow: hidden;
}

.client-line {
  overflow: hidden;
  position: relative;
}

.client-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 80s linear infinite;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: 50px; /* Increased gap between logos */
  padding: 20px 0;
}

.logo-set a {
  display: inline-block;
  flex-shrink: 0;
}

.logo-set img {
  width: 220px;        /* Increased base width */
  height: 120px;       /* Increased base height */
  object-fit: contain;
  background-color: white;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  image-rendering: auto;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.logo-set img:hover {
  transform: scale(1.05);
}

/* Infinite loop keyframes */
@keyframes scroll-loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-set {
    gap: 30px;
    flex-wrap: nowrap;
  }

  .logo-set img {
    width: 160px;  /* Bigger than before on mobile */
    height: 90px;
  }
}

/* Section heading */
.section-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}




/* ============================
   Animation Effects
============================ */

/* Hover Animation for Cards */
.animate-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.animate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(166, 26, 194, 0.904);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Down Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .stats-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f0f4f8, #ffffff);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0 5px;
  color: #007bff;
}

.stat-box p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #007bff;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 0 4px rgba(0,123,255,0.2);
}
.stats-modern {
  background: linear-gradient(135deg, #f0f4ff, #eaf6ff);
  padding: 70px 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

.stat-card h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 15px;
  color: #333;
  margin: 0;
}
/* Hover animation for icon */
.stat-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-icon:hover {
  transform: rotate(10deg) scale(1.15);
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
}


}


/* Base */
body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
}

/* Footer Container */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px 30px;
  width: 100%;
}

/* All links default white */
.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover color */
.site-footer a:hover {
  color: #00c7b7;
}

/* Make only Blogs and Clients gray by default */
.site-footer a.blog-link,
.site-footer a.client-link,
.site-footer a[href*="blogs"],
.site-footer a[href*="client"] {
  color: #e7dfdf !important;
}

.site-footer a.blog-link:hover,
.site-footer a.client-link:hover,
.site-footer a[href*="blogs"]:hover,
.site-footer a[href*="client"]:hover {
  color: #6acaca !important;
}

/* Footer Top: Flex Layout */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

/* Three columns */
.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
  min-width: 250px;
}

/* About Section */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
}

/* Links Section */
.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links > div {
  flex: 1 1 150px;
  min-width: 140px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  font-size: 15px;
}

/* Contact Section */
.footer-contact p,
.footer-contact a {
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-contact a:hover {
  color: #00c7b7;
}

/* Social Icons */
.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00c7b7;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
  color: #f8f4f4;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: row;
    /* align-items: flex-start; */
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links > div {
    min-width: 100%;
  }

  .footer-contact {
    margin-top: 20px;
  }

  .footer-about,
  .footer-contact,
  .footer-links {
    width: 100%;
  }
}

/* Apply font globally */
body, h1, h2, h3, h4, h5, h6, p, a, span, div {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px !important;
}
/* === Responsive Layout Adjustments === */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .section {
    padding: 40px 20px;
  }
  .solution-card {
    flex-direction: column;
    text-align: center;
  }
  h1, h2 {
    font-size: 1.75rem;
  }
}

/* Mobile Phones (<= 768px) */
@media (max-width: 768px) {
  .navbar, .footer {
    flex-direction: column;
    text-align: center;
  }

  .main-visual, img {
    width: 100%;
    height: auto;
  }

  .btn-gradient {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .solution-card {
    padding: 20px;
  }

  h1, h2 {
    font-size: 1.5rem;
  }
}

/* Small Devices (<= 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .solution-card, .chat-bubble {
    width: 100%;
  }

  .btn-gradient {
    width: 100%;
    display: block;
    margin: 10px 0;
  }
}
/* ✅ Fix for preventing section auto-jump (especially on mobile) */