 body {
      font-family: 'Poppins', sans-serif;
      color: #333;
    }

    .bg-dark-brown {
      background-color: #4b0f1a !important;
    }

    .hero-section {
      min-height: 100vh;
    }

    /* HERO SECTION */
.hero-section {
  position: relative;
}
/* Hero content exact center */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.hero-overlay {
  background: rgba(0,0,0,0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.carousel-item {
  position: relative;
}

/* Text animation */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Button glow */
.hero-btn {
  background-color:rgb(235, 144, 7) ;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: bold;
  transition: 0.3s;
}

/* .hero-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
} */


    /* ABOUT SECTION STYLING */
.about-section {
  background: linear-gradient(135deg, #fff6e9, #ffe0c3);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 183, 77, 0.25);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.about-card {
  background: #d47c7c;
  border: none;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-card i {
  font-size: 2rem;
  color: #d35400;
  margin-bottom: 12px;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #d65b5b, #d66386);
}

/* Fade animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


    /* CATEGORY SECTION MODERN */
.category-section {
  background: linear-gradient(135deg, #dbc9c5, #f3d9e5);
}

.category-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
}



.category-title {
  background: linear-gradient(135deg, #d35400, #e67e22);
  color: #fff;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== NAVBAR UPGRADE ===== */

.navbar {
  padding-top: 5px;
  padding-bottom: 5px;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(250, 8, 53, 0.95), rgba(250, 8, 73, 0.95)) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.navbar-brand img {
  border-radius: 10px;
  transition: transform 0.3s ease;

  height: 45px;   
  width: auto;
}

.navbar-brand img:hover {
  transform: scale(1.08);
}

.nav-link {
  position: relative;
  color: #fff !important;
  font-weight: 200;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ffcc80;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link {
  padding: 6px 12px;
  font-size: 14px;
}
.nav-link:hover {
  color: #ffcc80 !important;
}

.nav-link:hover::after {
  width: 100%;
}

/* Social icons glow */
.navbar-social a {
  transition: transform 0.3s ease, color 0.3s ease;
}

.navbar-social a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #ffd700 !important;
}

/* Navbar shrink effect on scroll */
.navbar.scrolled {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}



    /* CONTACT SECTION */
.contact-section {
  background: linear-gradient(135deg, #fff3e6, #ffe0cc);
}

.contact-box {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-control:focus {
  box-shadow: none;
  border-color: #d35400;
}

.contact-btn {
  background: linear-gradient(135deg, #d35400, #e67e22);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.footer-dark {
  background: #2c0b14;
  color: #fff;
}

.footer-dark a {
  color: #ffcc80;
  transition: 0.3s;
}

.footer-dark a:hover {
  color: #fff;
}

.footer-social i {
  font-size: 1.2rem;
  margin: 0 8px;
  transition: 0.3s;
}

.footer-social i:hover {
  transform: scale(1.2);
}
