
      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      background: #fffaf5;
      color: #333;
    }

    /* ================= NAVBAR ================= */

    .navbar {
      background: #11111142;
      /* padding: 12px 0; */
    }

    .navbar-brand {
      display: flex;
      align-items: center;
    }

    .navbar-brand img {
      height: auto;
      /*width: 62%;*/
      object-fit: contain;
    }

    .navbar-nav {
         align-items: flex-start;
          white-space: nowrap;
    }

    .nav-link {
      color: black !important;
      margin-left: 20px;
      font-size: 17px;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-link:hover {
      color: black !important;
    }

    /* ================= HERO ================= */

    .hero {
      height: 100vh;
      background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;

      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .hero h1 {
      font-size: 60px;
      font-weight: bold;
    }

    .hero p {
      font-size: 20px;
      margin: 20px 0;
    }

    .btn-gold {
      background: white;
      color: black;
      padding: 12px 30px;
      border: none;
      font-weight: bold;
      transition: 0.3s;
      border-radius: 5px;
    }

    .btn-gold:hover {
      background: #d4af37;
      color: white;
    }

    /* ================= SECTION TITLE ================= */

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 40px;
      font-weight: bold;
      color: #0294df;
    }

    /* ================= ABOUT ================= */

    .about {
      padding: 100px 0;
    }

    .about img {
      border-radius: 10px;
      width: 100%;
    }

    /* ================= PRODUCTS ================= */

    .products {
      padding: 100px 0;
      background: #fff;
    }

    .product-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: 0.4s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .product-card:hover {
      transform: translateY(-10px);
    }

    .product-card img {
      height: 250px;
      object-fit: cover;
    }

    .card-title {
      font-weight: bold;
    }

    /* ================= FAQ ================= */

    .faq {
      padding: 100px 0;
    }

    .accordion-button:not(.collapsed) {
      background: #0294df;
    color: #ffffff;
    }

    /* ================= TESTIMONIALS ================= */

    .testimonials {
      padding: 100px 0;
      background: #fff;
    }

    .testimonial {
        background: white;
    padding: 30px;
    box-shadow: 0px 0px 10px #c1bdba;
    text-align: center;
    border-radius: 0px 20px 0px 20px;
    border: 1px solid #01a0f0;
    }

    .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    /* ================= FOOTER ================= */

    footer {
      background: #111;
      color: white;
      padding: 40px 0;
    }

    footer a {
      color: white;
      text-decoration: none;
    }

    footer a:hover {
      color: white;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:768px) {

      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 16px;
      }

      .navbar-nav {
        margin-top: 15px;
        text-align: center;
      }

      .nav-link {
        margin: 10px 0;
      }

      .navbar-brand img {
               height: 100px;
      }
      .navbar-brand img {
    width: 100%;
    object-fit: contain;
}
.about {
    padding: 40px 0;
}

.products {
    padding: 50px 0;
    background: #fff;
}
.faq {
    padding: 40px 0;
}

.navbar {
    background: #000000 !important;
    padding: 10px 0;
}


.nav-link{
    color: white !important;
}




    }
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     .hero-section{
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
            url('https://images.unsplash.com/photo-1617038220319-276d3cfab638?q=80&w=1400&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
        }

        .hero-section h1{
            font-size: 48px;
            font-weight: 700;
        }

        .terms-card{
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-top: -50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .terms-card h3{
            color: #0080cd;
            font-weight: 600;
            margin-top: 30px;
        }

        .terms-card p,
        .terms-card li{
            line-height: 1.8;
            color: #555;
        }

        .terms-card ul{
            padding-left: 20px;
        }

        .highlight-box{
            background: #fff8e7;
            border-left: 5px solid #019bed;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .btn-gold{
            background: #019bed;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            transition: 0.3s;
        }

        .btn-gold:hover{
            background: #019bed;
            color: white;
        }

        @media(max-width:768px){
            .hero-section h1{
                font-size: 34px;
            }

            .terms-card{
                padding: 25px;
            }
        }
