body {
    font-family: 'Poppins', sans-serif;
     background: linear-gradient(135deg, #414141, #625e4a);
   /* background: #414141;#383737*/
    color: #fff;   
}
/*#383737*/

/* NAVBAR 
.custom-nav {
    background: #000;
    border-bottom: 1px solid #222;
}*/



/* BUTTON */
.btn-yellow {
    background: #ffc107;
    color: #000;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-yellow:hover {
    background: #ffcc00;
}


/* HERO */
.hero {
    padding: 100px 0;
  background: linear-gradient(135deg, #414141, #625e4a);
    /* background: linear-gradient(135deg, #2c2b2b, #111);*/
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
}

.hero h1 span {
    color: #ffc107;
}

.hero-img {
    max-height: 400px;
}

/* CATEGORY */
.categories {
    padding: 80px 0;
}

.card-box {
    background: #111;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255,193,7,0.4);
}

.card-box img {
    height: 80px;
    margin-bottom: 15px;
}

/* FOOTER */
/* FOOTER */
.footer {
   background: linear-gradient(135deg, #f7c704, #ffc107);
    padding: 50px 0 20px;
    margin-top: 50px;
    color: #000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(255, 193, 7, 0.4);
}

/* Headings */
.footer h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    position: relative;
}

/* Stylish underline */
.footer h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 5px;
}

/* Text */
.footer p {
    margin: 0;
    font-weight: 500;
    color: #111;
}

/* Links */
.footer a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: 0.3s;
}

/* Hover effect */
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Divider */
.footer hr {
    border-top: 1px solid rgba(0,0,0,0.2);
    margin: 30px 0;
}

/* Bottom text */
.footer .text-center p {
    font-size: 14px;
    color: #111;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero {
        text-align: center;
    }

    .card-box {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 60px 0;
    }

    

    .hero-img {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ===== RESPONSIVE NAVBAR FIX ===== */
body {
    overflow-x: hidden;
    padding-top: 70px;
}



    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .categories {
        padding: 50px 0;
    }

    .card-box {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }


@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-img {
        max-width: 260px;
    }

    .navbar-brand img {
        height: 45px;
    }
}




.tag{
  display:inline-block;
  background:#facc15;
  color:#000;
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
}

.hero-btns{
  margin-top:35px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
  padding:14px 30px;
  border-radius:10px;
  text-decoration:none;
  transition:.3s;
  font-weight:600;
}

.btn-primary{
  background:#facc15;
  color:#000;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-outline{
  border:1px solid #facc15;
  color:#facc15;
}

.btn-outline:hover{
  background:#facc15;
  color:#000;
}



/* STATS */

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-bottom:100px;
}

.stat-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:35px;
  border-radius:20px;
  text-align:center;
  transition:.3s;
}

.stat-box:hover{
  transform:translateY(-6px);
  border-color:#facc15;
}

.stat-box h2{
  color:#facc15;
  font-size:42px;
  margin-bottom:10px;
}



/* RESPONSIVE */

@media(max-width:991px){

  .hero-content h1{
    font-size:42px;
  }

  .ahero-stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .hero-page{
    padding:70px 0;
  }

  .hero-content h1{
    font-size:34px;
  }

  

  .hero-stats{
    grid-template-columns:1fr;
  }

}



/* ===========about us page ========================== */

about-page{
  padding:100px 0;
     background: linear-gradient(135deg, #414141, #625e4a);
  color:#fff;
}

/* HERO */

.about-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  margin-bottom:80px;
  flex-wrap:wrap;
}

.about-content{
  flex:1;
  min-width:300px;
}

.about-content h1{
  font-size:52px;
  line-height:1.2;
  margin:20px 0;
  font-weight:700;
}

.about-content p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:17px;
}




.about-image{
  flex:1;
  text-align:center;
  min-width:300px;
}

.about-image img{
  width:100%;
  max-width:500px;
}



/* RESPONSIVE */

@media(max-width:991px){

  .about-content h1{
    font-size:42px;
  }

  .about-stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .about-page{
    padding:70px 0;
  }

  .about-content h1{
    font-size:34px;
  }

  .why-content h2{
    font-size:32px;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

}

/* contact page */

form .form-control {
  background: rgba(56, 56, 56, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

form .form-control::placeholder {
  color: #aaa;
}

form .form-control:focus {
  border-color: #ffcc00;
  box-shadow: none;
}
.glass-contact p {
  margin-bottom: 10px;
  color: #ddd;
}

.glass-contact strong {
  color: #ffcc00;
}

.glass-contact {
  background: rgba(240, 236, 236, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgb(246, 246, 4);
  transition: 0.4s;
}


