  /* Google Font */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


  /* Navbar transparent (desktop view) */
  .navbar {
    padding: 12px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    position: fixed;
  }
  /* Default Navbar (same as hero gradient) */
.navbar {
  transition: background-color 0.3s ease, background 0.3s ease;
}

/* Scrolled Navbar */
.navbar.scrolled {
  background: #000 !important;
}



  /* Navbar links */
  .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff !important;
    margin-right: 18px;
    transition: all 0.2s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #a020f0; /* purple underline */
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    font-weight: 700;
    font-size: 1.08rem;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Custom button */
  .btn-custom {
    background: linear-gradient(135deg, #434343, #000000);
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
  }

  .btn-custom:hover {
    background: linear-gradient(135deg, #6a11cb, #000000);
    transform: scale(1.05);
    color: white;
  }

  /* Hero Section with gradient */
  .hero-section {
    background: linear-gradient(135deg, #1a1a2e, #000000, #3a0ca3);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px; /* navbar overlap fix */
  }



  /* Heading */
  .hero-section h1 {
    font-weight: 700;
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;

    text-shadow: 2px 2px 6px rgba(103, 101, 104, 0.8); /* White shadow */
  }
  .hero-section {
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* image ko full cover banayega */
    display: block;
  }

 

  @keyframes shipMove {
    from { transform: translateX(-15px); }
    to { transform: translateX(15px); }
  }



  /* Stats Section */
  .stats-section {
    background: #f8f9fa;
    padding: 80px 0;
  }

  .stat-box {
    text-align: center;
    animation: upDown 0.4s ease-in-out infinite alternate; /* Speed increased */
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
  }

  .stat-number .count {
    color: purple; /* number purple */
  }

  .stat-number .plus {
    color: rgb(68, 68, 68); /* + sign color */
  }

  .stat-text {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: black; /* text black */
  }

  /* Keyframes */
  @keyframes upDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
  }

  /* Mobile fix */
  @media (max-width: 991px) {
    .navbar {
      position: relative;
      background: #000 !important; /* Navbar top bar black */
    }

    .navbar-collapse {
      background: #ffffff !important; /* White background for menu */
      text-align: center;
      border-radius: 12px; /* Rounded corners */
      padding: 20px 0;
      margin-top: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* Light shadow */
    }

    .nav-link {
      color: #000 !important; /* Black text */
      font-size: 1.1rem;
      margin: 10px 0;
    }

    .nav-link:hover {
      color: #6a11cb !important; /* Purple hover */
    }

    .btn-custom {
      background: linear-gradient(135deg, #6a11cb, #000000);
      color: #fff !important;
      margin-top: 10px;
      border-radius: 8px;
    }
  }



  .supply-section h2 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .highlight {
    color: #7D3C98; /* Purple highlight */
  }

  .card-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s ease;
  }

  .card-box:hover {
    border-color: #7D3C98;
    box-shadow: 0 4px 15px rgba(125, 60, 152, 0.2);
  }

  .card-box h5 {
    color: #7D3C98;
  }



  /* Modern button */
  .btn-modern {
    background: linear-gradient(135deg, #434343, #000000);
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
    
  }

  .btn-modern:hover {
    background: linear-gradient(135deg, #5d07b8, #000000);
    transform: scale(1.05);
    color: #fff;
  }

  /* Purple Text */
  .text-purple {
    color: #6f42c1; /* Bootstrap purple */
  }

  /* Black Button with Purple Hover */
  .btn-black {
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
  }

  .btn-black:hover {
    background-color: #6f42c1;
    color: #fff;
  }
  .text-purple {
    color: #6a0dad; /* Purple shade */
    font-family: 'Poppins', sans-serif; /* Professional clean font */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
  }

  .text-purple:hover {
    color: #4b0082; /* Darker purple on hover */
    transform: translateY(-2px);
  }
  /* Outline button style */
  .btn-outline-gradient {
    background: transparent;
    color: #000;            /* Default text color */
    border: 2px solid #000; /* Outline */
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  /* Hover effect with gradient */
  .btn-outline-gradient:hover {
    background: linear-gradient(135deg, #7a0099, #000000); /* Gradient on hover */
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
  }


  /* Floating animation for images */
  .img-float {
    animation: float 0.5s ease-in-out infinite;
  }

  @keyframes float {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); } /* Thoda bara */
    100% { transform: scale(1); }
  }
  .info-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
  }

  .info-box {
    flex: 1 1 200px;
    background: #000; /* Black background */
    color: #fff;       /* White text */
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(122, 0, 153, 0.8); /* Purple shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(122, 0, 153, 1); /* Stronger purple shadow on hover */
  }

  .info-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0px 0px 8px rgba(122, 0, 145, 0.8); /* Purple glow */
  }


  .info-text {
    font-size: 1rem;
    font-weight: 600;
  }


  /* Blink Effect */
  .typewriter {
    color: #fff;
    animation: blink 5s infinite;
  }

  /* Keyframes for blinking */
  @keyframes blink {
    0%, 50%, 100% { opacity: 1; }  /* visible */
    25%, 75% { opacity: 0; }      /* hidden */
  }

  /* Sustainability Section */
  .sustainability-section h2,
  .sustainability-section h3,
  .sustainability-section h6 {
    font-weight: bold;
  }

  .sustainability-section .purple-text {
    color: #6f42c1; /* Bootstrap purple shade */
  }

  .sustainability-section ul li {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .sustainability-section ul li::marker {
    color: #6f42c1; /* Purple bullets */
  }

  /* sustainability.css */

  /* Images smooth animation */
  .img-fluid {
    max-width: 100%;
    height: auto;
    display: inline-block;
    will-change: transform;
  }

  /* Fast animation */
  .img-animate {
    animation: floatLR 1.5s ease-in-out infinite; /* tez speed */
    transform-origin: center;
    transition: transform 0.2s;
  }

  .img-animate-slow {
    animation: floatLRSlow 2.5s ease-in-out infinite; /* thoda slow but fast */
    transform-origin: center;
    transition: transform 0.2s;
  }

  /* Hover par pause */
  .img-animate:hover,
  .img-animate-slow:hover {
    animation-play-state: paused;
    cursor: pointer;
  }

  /* Keyframes faster motion */
  @keyframes floatLR {
    0%   { transform: translateX(0) rotate(0deg); }
    25%  { transform: translateX(-10px) rotate(-1deg); }
    50%  { transform: translateX(0) rotate(0deg); }
    75%  { transform: translateX(10px) rotate(1deg); }
    100% { transform: translateX(0) rotate(0deg); }
  }

  @keyframes floatLRSlow {
    0%   { transform: translateX(0) rotate(0deg); }
    20%  { transform: translateX(-15px) rotate(-1.2deg); }
    40%  { transform: translateX(0) rotate(0deg); }
    60%  { transform: translateX(15px) rotate(1.2deg); }
    80%  { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(0) rotate(0deg); }
  }

  /* Accessibility: agar user reduced motion prefer kare to disable */
  @media (prefers-reduced-motion: reduce) {
    .img-animate,
    .img-animate-slow {
      animation: none;
    }
  }

  /* ========== Header Section ========== */
  .testimonial-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-label {
    color: #6a3d9a; /* Purple color */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .main-heading {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
  }

  .subtext {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ========== Testimonial Cards ========== */
  .testimonial-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }

  .testimonial-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(106, 61, 154, 0.7); /* Purple shadow on hover */
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .testimonial-card h4 {
    color: #6a3d9a; /* Purple */
    font-size: 16px;
    margin: 10px 0;
  }

  .testimonial-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .testimonial-card .client-title {
    color: #777;
  }

  .stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
  }
      /* Footer Styles */
      .footer {
        background: linear-gradient(135deg, #2c003e, #000000);
        color: #ffffff;
        padding: 50px 0 20px;
      }
      .footer h5 {
        color: #b366ff;
        margin-bottom: 20px;
        font-weight: 600;
      }
      .footer a {
        position: relative;
        display: inline-block;
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
      }
      /* Hover underline animation */
      .footer a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #ffffff;
        transition: width 0.3s ease-in-out;
      }
      .footer a:hover::after {
        width: 100%;
      }
      .footer a:hover {
        color: #ffffff;
      }
      .footer .contact-info p {
        margin: 0;
      }
      .footer-bottom {
        border-top: 1px solid #444;
        margin-top: 30px;
        padding-top: 15px;
        text-align: center;
        font-size: 14px;
        color: #bbb;
      }
