  :root {
      --primary-blue: #0066CC;
      --secondary-blue: #004999;
      --accent-blue: #3399FF;
      --light-bg: #F8F9FA;
      --dark-text: #212529;
      --light-text: #6C757D;
  }

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

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      color: var(--dark-text);
  }

  /* Smooth Scroll */
  html {
      scroll-behavior: smooth;
  }

  /* Navbar Styling */
  .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-blue) !important;
      letter-spacing: -0.5px;
  }

  .nav-link {
      color: var(--dark-text) !important;
      font-weight: 500;
      margin: 0 10px;
      transition: color 0.3s ease;
      position: relative;
  }

  .nav-link:hover {
      color: var(--primary-blue) !important;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background: var(--primary-blue);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }

  .nav-link:hover::after {
      width: 80%;
  }


  /* Updated Hero Section Styles */
  .hero-section {
      height: 100vh;
      background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 100px 0 50px;
  }

  .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
      background-size: cover;
      animation: wave 15s ease-in-out infinite;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      color: white;
      padding-right: 20px;
      padding-top: 20px;
  }

  .hero-title {
      font-size: 3.2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.5px;
  }

  .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      line-height: 1.6;
  }

  .hero-actions {
      display: flex;
      gap: 15px;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
  }

  .cta-btn.primary {
      padding: 15px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      border: none;
      background: white;
      color: var(--primary-blue);
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .cta-btn.secondary {
      padding: 15px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      border: 2px solid white;
      background: transparent;
      color: white;
      transition: all 0.3s ease;
  }

  .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .cta-btn.primary:hover {
      background: var(--light-bg);
  }

  .cta-btn.secondary:hover {
      background: rgba(255, 255, 255, 0.1);
  }

  .hero-categories {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
  }

  .category-tag {
      padding: 8px 16px;
      background-color: #007bff;
      /* button color */
      color: #fff;
      border-radius: 20px;
      text-decoration: none;
      /* remove underline */
      cursor: pointer;
      transition: 0.3s;
  }

  .category-tag:hover {
      background-color: #0056b3;
      /* hover color */
  }


  .category-tag {
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 30px;
      font-weight: 500;
      font-size: 0.95rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }

  .category-tag:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
  }

  .hero-image-container {
      position: relative;
      text-align: center;
  }

  .hero-image {
      max-width: 85%;
      border-radius: 20px;
      padding-top: 50px;

      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-15px);
      }
  }

  .floating-card {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: white;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 15px;
      animation: pulse 4s ease-in-out infinite;
      max-width: 250px;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }
  }

  .card-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      flex-shrink: 0;
  }

  .card-content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--dark-text);
  }

  .card-content p {
      font-size: 0.9rem;
      color: var(--light-text);
      margin: 0;
  }

  /* Section Styling */
  section {
      padding: 100px 0;
  }

  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark-text);
  }

  .section-subtitle {
      font-size: 1.1rem;
      color: var(--light-text);
      margin-bottom: 3rem;
  }


/* Corporate Section Styles - Compact Layout */
.corporate-section {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230066CC" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

.corporate-content-landscape {
    padding: 40px 40px;
    text-align: center;
}

.corporate-inner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.corporate-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--dark-text);
}

.corporate-title .highlight {
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.corporate-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
    animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%, 100% { transform: scaleX(0.8); opacity: 0.7; }
    50% { transform: scaleX(1); opacity: 1; }
}

.corporate-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.corporate-subtitle::before,
.corporate-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.corporate-subtitle::before { left: 0; }
.corporate-subtitle::after { right: 0; }

@keyframes pulseDot {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}

.corporate-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Simplified Features Row */
.corporate-features-row {
    margin-bottom: 2rem;
}

.corporate-feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
}

.corporate-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    transition: all 0.4s ease;
}

.corporate-feature-card:hover .feature-icon-box {
    transform: rotateY(360deg) scale(1.1);
}

.corporate-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.corporate-feature-card p {
    font-size: 1rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

/* Compact CTA */
.corporate-cta-landscape {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 133, 255, 0.1));
    padding: 35px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.corporate-cta-landscape:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
}

.corporate-cta-landscape h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
    position: relative;
}

.corporate-btn-landscape {
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.corporate-btn-landscape:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.4);
}

.corporate-btn-landscape::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.corporate-btn-landscape:hover::after {
    left: 100%;
}

/* B2B Clients Section - Compact */
.b2b-clients-section {
    margin: 15px auto 10px;
    max-width: 1000px;
}

.b2b-clients-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.b2b-clients-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.b2b-clients-container {
    padding: 15px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.b2b-clients-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .corporate-title { font-size: 2.7rem; }
    .corporate-feature-card { padding: 30px 22px; }
    .feature-icon-box { width: 65px; height: 65px; font-size: 1.7rem; }
}

@media (max-width: 1200px) {
    .corporate-section { padding: 50px 0; }
    .corporate-content-landscape { padding: 30px 30px; }
    .corporate-title { font-size: 2.5rem; margin-bottom: 0.8rem; }
    .corporate-subtitle { font-size: 1.4rem; margin-bottom: 0.8rem; }
    .corporate-description { font-size: 1.05rem; margin-bottom: 1.8rem; }
    .corporate-features-row { margin-bottom: 1.8rem; }
}

@media (max-width: 992px) {
    .corporate-section { padding: 40px 0; }
    .corporate-title { font-size: 2.2rem; }
    .corporate-subtitle { font-size: 1.3rem; }
    .corporate-description { font-size: 1rem; margin-bottom: 1.5rem; }
    .corporate-features-row { margin-bottom: 1.5rem; }
    .corporate-feature-card { padding: 25px 20px; }
    .feature-icon-box { width: 60px; height: 60px; font-size: 1.6rem; margin-bottom: 15px; }
    .corporate-feature-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
    .corporate-cta-landscape { padding: 30px 30px; }
    .corporate-btn-landscape { padding: 14px 40px; font-size: 1.05rem; }
    .b2b-clients-section { margin: 12px auto 8px; }
    .b2b-clients-title { font-size: 1.8rem; margin-bottom: 6px; }
    .b2b-clients-title::after { bottom: -4px; }
    .b2b-clients-container { padding: 12px 20px; }
}

@media (max-width: 768px) {
    .corporate-section { padding: 30px 0; }
    .corporate-content-landscape { padding: 20px 20px; }
    .corporate-title { font-size: 1.9rem; margin-bottom: 0.7rem; }
    .corporate-subtitle { font-size: 1.15rem; padding: 0 20px; margin-bottom: 0.7rem; }
    .corporate-description { font-size: 0.95rem; margin-bottom: 1.2rem; }
    .corporate-features-row { margin-bottom: 1.2rem; }
    .corporate-feature-card { padding: 25px 18px; }
    .feature-icon-box { width: 55px; height: 55px; font-size: 1.4rem; margin-bottom: 15px; }
    .corporate-feature-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
    .corporate-feature-card p { font-size: 0.92rem; }
    .corporate-cta-landscape { padding: 25px 20px; }
    .corporate-cta-landscape h3 { font-size: 1.3rem; margin-bottom: 15px; }
    .corporate-btn-landscape { padding: 12px 30px; font-size: 1rem; }
    .b2b-clients-section { margin: 10px auto 5px; }
    .b2b-clients-title { font-size: 1.6rem; margin-bottom: 5px; }
    .b2b-clients-title::after { bottom: -3px; }
    .b2b-clients-container { padding: 10px 15px; }
}

@media (max-width: 576px) {
    .corporate-section { padding: 25px 0; }
    .corporate-title { font-size: 1.7rem; }
    .corporate-subtitle { font-size: 1.05rem; }
    .corporate-description { font-size: 0.9rem; }
    .corporate-feature-card h4 { font-size: 1rem; }
    .corporate-feature-card p { font-size: 0.88rem; }
    .feature-icon-box { width: 50px; height: 50px; font-size: 1.3rem; }
    .b2b-clients-title { font-size: 1.4rem; margin-bottom: 4px; }
    .b2b-clients-title::after { bottom: -3px; width: 60px; }
    .b2b-clients-container { padding: 8px 12px; }
}

/* corporate-section end */

  /* About Us Button */
  .about-btn-container {
      text-align: center;
      margin-top: 20px;
  }

  .about-us-btn {
      display: inline-block;
      padding: 15px 40px;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  }

  /* Hover Animation */
  .about-us-btn:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 12px 30px rgba(0, 102, 204, 0.45);
  }

  /* Shine Animation */
  .about-us-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 120%;
      height: 100%;
      background: rgba(255, 255, 255, 0.25);
      transform: skewX(-25deg);
      transition: all 0.6s ease;
  }

  .about-us-btn:hover::after {
      left: 120%;
  }


  /* Modern Service Cards */
  .service-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      height: 100%;
  }

  .service-card-link:hover {
      text-decoration: none;
      color: inherit;
  }

  .modern-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }

 

  .modern-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
      border-color: var(--primary-blue);
  }

 
  .card-icon-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 25px;
  }

  .service-icon {
      width: 95px;
      height: 95px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2.8rem;
      background: linear-gradient(145deg, #007bff, #00c6ff);
      position: relative;
      box-shadow: 0 8px 20px rgba(0, 140, 255, 0.35);
      animation: iconFloat 3s infinite ease-in-out;
  }

  /* Soft glowing aura */
  .service-icon::after {
      content: '';
      position: absolute;
      width: 140%;
      height: 140%;
      border-radius: 50%;
      background: radial-gradient(rgba(0, 140, 255, 0.35), transparent 70%);
      animation: auraPulse 3s infinite ease-in-out;
  }

  /* Icon animations */
  @keyframes iconFloat {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-12px);
      }
  }

  @keyframes auraPulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 0.7;
      }

      50% {
          transform: scale(1.2);
          opacity: 1;
      }
  }

  /* New looping animations for icons */
  .pulse-animation {
      animation: iconPulse 2.2s infinite ease-in-out;
  }

  .float-animation {
      animation: floatingLoop 4s infinite ease-in-out;
  }

  .rotate-animation {
      animation: spinLoop 6s infinite linear;
  }

  @keyframes iconPulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.08);
      }
  }

  @keyframes floatingLoop {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-14px);
      }
  }

  @keyframes spinLoop {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .service-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--dark-text);
      text-align: center;
  }

  .service-description {
      color: var(--light-text);
      line-height: 1.7;
      text-align: center;
      margin-bottom: 20px;
  }

  .card-hover-effect {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-blue);
      font-weight: 600;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
  }

  .hover-text {
      margin-right: 8px;
  }

  .modern-card:hover .card-hover-effect {
      opacity: 1;
      transform: translateY(0);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .modern-card {
          padding: 30px 20px;
      }

      .service-icon {
          width: 70px;
          height: 70px;
          font-size: 2rem;
      }
  }

  /* Modern Stats Section Styles */
  .modern-stats-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
      position: relative;
      overflow: hidden;
  }

  .modern-stats-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230066CC" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
      background-size: cover;
      animation: wave 20s ease-in-out infinite;
  }

  .stats-header {
      text-align: center;
      margin-bottom: 60px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .stats-subtitle {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--light-text);
      margin-top: 20px;
  }

  .stats-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 50px 0;
      position: relative;
  }

  .divider-line {
      flex: 1;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
      opacity: 0.3;
  }

  .divider-content {
      padding: 0 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .since-badge {
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
      animation: badgePulse 3s ease-in-out infinite;
  }

  @keyframes badgePulse {

      0%,
      100% {
          transform: scale(1);
          box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
      }

      50% {
          transform: scale(1.05);
          box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
      }
  }

  .serving-text {
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary-blue);
      letter-spacing: 1px;
  }


  /* Modern Stat Cards start*/
  .modern-stat-card {
      background: white;
      border-radius: 20px;
      padding: 20px 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      border: 2px solid transparent;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }


  .modern-stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
      border-color: var(--primary-blue);
  }


  .stat-glow {
      position: absolute;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.4s ease;
      z-index: 0;
  }

  .modern-stat-card:hover .stat-glow {
      transform: translate(-50%, -50%) scale(2);
  }

  .stat-icon-wrapper {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      position: relative;
      z-index: 1;
      box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
      transition: all 0.4s ease;
  }

  .modern-stat-card:hover .stat-icon-wrapper {
      transform: rotate(10deg) scale(1.1);
      box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
  }

  .stat-icon {
      font-size: 2rem;
      color: white;
  }

  .stat-content {
      position: relative;
      z-index: 1;
  }

  .stat-number-wrapper {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 5px;
      margin-bottom: 10px;
  }

  .stat-number {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
      position: relative;
      display: inline-block;
  }

  .stat-number::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
  }

  .modern-stat-card:hover .stat-number::after {
      transform: scaleX(1);
  }

  .stat-suffix {
      font-size: 2.65rem;
      font-weight: 800;
      color: var(--primary-blue);
      opacity: 0.9;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
      line-height: 1;
      vertical-align: middle;
      margin-left: 5px;
  }

  .stat-label {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--dark-text);
      margin: 0;
      position: relative;
      padding-top: 15px;
  }

  /* Compact Card Styles */
  .modern-stat-card.compact {
      padding: 25px 20px;
      min-height: 200px;
  }

  .modern-stat-card.compact .stat-icon-wrapper {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
  }

  .modern-stat-card.compact .stat-icon {
      font-size: 1.5rem;
  }

  .modern-stat-card.compact .stat-number {
      font-size: 2.5rem;
  }

  .modern-stat-card.compact .stat-suffix {
      font-size: 1.25rem;
  }

  .modern-stat-card.compact .stat-label {
      font-size: 1rem;
      padding-top: 12px;
  }

  .modern-stat-card.compact .stat-label::before {
      width: 25px;
  }

  /* Adjust spacing for single row */
  .modern-stats-section .row {
      margin-top: 30px;
  }

  /* Responsive adjustments for single row */
  @media (max-width: 1200px) {
      .modern-stat-card.compact .stat-number {
          font-size: 2.2rem;
      }

      .modern-stat-card.compact .stat-suffix {
          font-size: 1.1rem;
      }
  }

  @media (max-width: 992px) {
      .modern-stat-card.compact {
          padding: 20px 15px;
          min-height: 180px;
      }

      .modern-stat-card.compact .stat-icon-wrapper {
          width: 50px;
          height: 50px;
          margin-bottom: 15px;
      }

      .modern-stat-card.compact .stat-icon {
          font-size: 1.3rem;
      }

      .modern-stat-card.compact .stat-number {
          font-size: 2rem;
      }
  }

  @media (max-width: 768px) {
      .modern-stat-card.compact {
          margin-bottom: 15px;
      }

      .modern-stat-card.compact .stat-number-wrapper {
          flex-direction: row;
          align-items: baseline;
      }
  }

  /* Number Counting Animation */
  .counter {
      display: inline-block;
  }

  .counter.animate {
      animation: numberPop 0.6s ease-out;
  }

  @keyframes numberPop {
      0% {
          transform: scale(0.5);
          opacity: 0;
      }

      70% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .stats-divider {
          flex-direction: column;
          gap: 20px;
      }

      .divider-line {
          width: 100%;
          height: 1px;
      }

      .divider-content {
          padding: 0;
      }

      .stat-number {
          font-size: 3rem;
      }
  }

  @media (max-width: 768px) {
      .modern-stats-section {
          padding: 80px 0;
      }

      .modern-stat-card {
          padding: 30px 20px;
      }

      .stat-icon-wrapper {
          width: 70px;
          height: 70px;
      }

      .stat-icon {
          font-size: 1.8rem;
      }

      .stat-number {
          font-size: 2.5rem;
      }

      .stat-suffix {
          font-size: 1.25rem;
      }

      .stat-label {
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .stats-header {
          margin-bottom: 40px;
      }

      .stats-subtitle {
          font-size: 1rem;
      }

      .stat-number-wrapper {
          flex-direction: column;
          align-items: center;
          gap: 0;
      }
  }

  /* Modern Stat Cards end*/


  /* Features Section */
  .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
  }

  .feature-icon {
      width: 60px;
      height: 60px;
      background: var(--accent-blue);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      margin-right: 20px;
      flex-shrink: 0;
  }

  .feature-content h4 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 10px;
  }



  /* Testimonials Section */
  .testimonials-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
      overflow: hidden;
  }



  .modern-testimonial {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }

 

  .modern-testimonial:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
      border-color: var(--primary-blue);
  }

 



  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
      }
  }

  .testimonial-content {
      position: relative;
      z-index: 1;
  }

  .testimonial-text {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 25px;
      color: var(--dark-text);
      font-style: italic;
      position: relative;
      padding-left: 20px;
  }



  .testimonial-author {
      display: flex;
      align-items: center;
      margin-top: 20px;
  }

  .author-avatar {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
      margin-right: 15px;
      box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
      transition: all 0.3s ease;
  }

  .modern-testimonial:hover .author-avatar {
      transform: scale(1.1);
  }

  .author-name {
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--dark-text);
  }

  .author-role {
      color: var(--light-text);
      font-size: 0.9rem;
  }

  .testimonial-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.testimonial-link .modern-testimonial {
    cursor: pointer; /* already set, just in case */
}


  /* Responsive adjustments */
  @media (max-width: 768px) {
      .modern-testimonial {
          padding: 30px 20px;
      }

      .testimonial-badge {
          top: 15px;
          right: 15px;
      }
  }





  /* Contact Form Styles */
  .contact-form {
      background: white;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
  }



  .form-label {
      font-weight: 600;
      color: var(--dark-text);
      margin-bottom: 8px;
      font-size: 0.95rem;
  }

  .form-control,
  .form-select {
      padding: 15px;
      border-radius: 10px;
      border: 2px solid #e0e0e0;
      transition: all 0.3s ease;
      font-size: 1rem;
  }

  .form-control::placeholder {
      color: #adb5bd;
      font-size: 0.95rem;
  }

  .form-control:focus,
  .form-select:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
      outline: none;
  }

  .form-control:hover {
      border-color: var(--accent-blue);
  }

  textarea.form-control {
      resize: vertical;
      min-height: 120px;
  }

  .submit-btn {
      padding: 15px 50px;
      background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      width: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
  }

  .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
  }

  .submit-btn:hover::before {
      left: 100%;
  }

  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
  }

  .submit-btn:active {
      transform: translateY(0);
  }

  .submit-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
  }

  /* Form Messages */
  #formMessage {
      border-radius: 10px;
      padding: 15px;
      animation: slideDown 0.3s ease;
  }

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

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  #formMessage.alert-success {
      background: #d4edda;
      border: 2px solid #c3e6cb;
      color: #155724;
  }

  #formMessage.alert-danger {
      background: #f8d7da;
      border: 2px solid #f5c6cb;
      color: #721c24;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .contact-form {
          padding: 30px 20px;
      }

      .submit-btn {
          padding: 12px 40px;
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .contact-form {
          padding: 25px 15px;
      }

      .form-control,
      .form-select {
          padding: 12px;
          font-size: 0.95rem;
      }
  }

  /* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
    font-size: 1rem;
}

.modal-footer {
    border-top: none;
    padding: 15px 25px 25px;
}

.modal-footer .btn {
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
}

  /* Footer */
  .footer {
      background: var(--dark-text);
      color: white;
      padding: 80px 0 30px;
  }

  .footer-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 25px;
  }

  .footer-links {
      list-style: none;
  }

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

  .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .footer-links a:hover {
      color: white;
      padding-left: 5px;
  }

  .social-links a {
      display: inline-flex;
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      color: white;
      margin-right: 10px;
      font-size: 1.2rem;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background: var(--primary-blue);
      transform: translateY(-3px);
  }

  .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      margin-top: 50px;
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero-title {
          font-size: 2.5rem;
      }

      .hero-subtitle {
          font-size: 1.1rem;
      }

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

      .stat-number {
          font-size: 2.5rem;
      }

      .contact-form {
          padding: 30px;
      }

      .pricing-card.featured {
          transform: scale(1);
      }
  }

  /* Responsive Design newly added*/
  @media (max-width: 992px) {
      .hero-section {
          height: auto;
          padding: 120px 0 80px;
      }

      .hero-content {
          padding-right: 0;
          margin-bottom: 40px;
          text-align: center;
      }

      .hero-title {
          font-size: 2.5rem;
      }

      .hero-actions {
          justify-content: center;
      }

      .floating-card {
          position: relative;
          bottom: auto;
          right: auto;
          margin: 30px auto 0;
          max-width: 300px;
      }
  }

  @media (max-width: 576px) {
      .hero-title {
          font-size: 2rem;
      }

      .hero-subtitle {
          font-size: 1.1rem;
      }

      .cta-btn.primary,
      .cta-btn.secondary {
          padding: 12px 30px;
          font-size: 1rem;
          width: 100%;
      }

      .hero-actions {
          flex-direction: column;
      }

      .category-tag {
          padding: 8px 16px;
          font-size: 0.9rem;
      }
  }

  /* Loading Animation */
  .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
  }

  .page-loader.hidden {
      opacity: 0;
      pointer-events: none;
  }

  .loader-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid #f3f3f3;
      border-top: 5px solid var(--primary-blue);
      border-radius: 50%;
      animation: spin 1s linear infinite;
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }


  /* Licensed Partners Section start */

  /* Section Base */
  .partners-area {
      padding: 80px 0;
      background: #f7faff;
  }

  /* Header */
  .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
  }

  .section-header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-blue);
  }

  /* Simple Card (Licensed Under) */
  .simple-card {
      text-align: center;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      margin-bottom: 50px;
      animation: fadeUp 0.6s ease;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .simple-card .title {
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 20px;
  }

  .simple-card .logo-box {
      margin: 0 auto 15px;
  }

  .simple-card .logo-box img {
      max-width: 130px;
      filter: none !important;
      /* always colored */
      transition: transform 0.3s ease;
  }

  .simple-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .simple-card:hover .logo-box img {
      transform: scale(1.08);
      /* subtle zoom on hover */
  }

  .simple-card .label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark-text);
  }

  /* Licensed Logos Row (for multiple logos in a row) */
  .licensed-logos-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 25px;
  }

  .logo-item {
      text-align: center;
      flex: 0 1 150px;
      /* controls width per logo */
  }

  .logo-item img {
      max-width: 100px;
      filter: none !important;
      /* always colored */
      transition: transform 0.3s ease;
      margin-bottom: 10px;
  }

  .logo-item:hover img {
      transform: scale(1.1);
  }

  .logo-item p {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--dark-text);
  }

  /* Category Box */
  .category {
      margin-bottom: 50px;
  }

  .category .title {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark-text);
      margin-bottom: 25px;
  }

  /* Grid of Logos */
  .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
  }

  .logo-card {
      background: #fff;
      padding: 20px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
      transition: 0.3s ease;
  }

  .logo-card img {
      max-width: 120px;
      max-height: 70px;
      filter: none !important;
      /* always colored */
      transition: transform 0.3s ease;
  }

  .logo-card p {
      margin-top: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark-text);
  }

  .logo-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .logo-card:hover img {
      transform: scale(1.1);
      /* smooth zoom */
  }

  /* Animation */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-up {
      animation: fadeUp 0.6s ease;
  }

  /* Responsive */
  @media(max-width: 576px) {
      .simple-card {
          padding: 20px;
      }

      .section-header h2 {
          font-size: 1.6rem;
      }

      .logo-item {
          flex: 0 1 120px;
      }

      .grid {
          gap: 15px;
      }
  }

  /* Licensed Partners Section end */


/* ================================
   Modern News Section
================================ */
.news-section-modern {
    background: linear-gradient(135deg, #f5f7fa 0%, #eaf0f7 100%);
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2d3d;
}

.section-subtitle {
    font-size: 1rem;
    color: #6c7a91;
}

/* ================================
   Horizontal Scroll Wrapper
================================ */
.news-slider-wrapper {
    position: relative;
}

.news-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    /*  FIX: allow cards to have independent heights */
     align-items: flex-start;

    /* display: flex;  for all tiles show in same size*/   
   
}


.news-slider::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* ================================
   Individual News Cards
================================ */
.news-card {
    min-width: 320px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.news-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* ================================
   Media (Image / Video)
================================ */
.news-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.news-media img,
.news-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-card:hover .news-media img,
.news-card:hover .news-media video {
    transform: scale(1.1);
}

/* ================================
   Video Play Overlay
================================ */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s ease;
}

.news-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: #fff;
}

/* ================================
   News Content
================================ */
.news-content {
    padding: 18px 20px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2d3d;
    margin-bottom: 8px;
}

/* 3-Line Clamp */
.news-text {
    font-size: 0.9rem;
    color: #5a6473;
    line-height: 1.4;
    max-height: calc(1.4em * 3); /* 3 lines */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.news-text.expanded {
    max-height: 1000px; /* Large enough for full content */
}


/* Read More Button */
.read-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #3b82f6;
    cursor: pointer;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}


/* ================================
   Scroll Navigation Buttons
================================ */
.scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: .25s;
    z-index: 5;
}

.scroll-btn:hover {
    background: #3b82f6;
    color: #fff;
}

.scroll-btn.left {
    left: -15px;
}

.scroll-btn.right {
    right: -15px;
}

/* ================================
   Modal Media Display
================================ */
.modal-content {
    border-radius: 14px;
    overflow: hidden;
}

.modal-body img,
.modal-body video {
    max-height: 80vh;
    object-fit: contain;
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 768px) {
    .news-card {
        min-width: 260px;
    }

    .scroll-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .news-media {
        height: 160px;
    }

    .news-card {
        min-width: 240px;
    }
}
