
/* Navbar container */
.navbar {
  background:#1f2933; /* Gradient background */
  padding: 15px 0;
  position: sticky !important;
  top: 0px;
  padding:5px 50px !important;
  position: sticky !important;
}

/* Navbar list */
.nav-list {
  list-style: none !important;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

/* Navbar links */
.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Active link */
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffeb3b;
}

/* Hover effect */
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffeb3b;
  text-decoration: underline;
}

.cart{
    margin-left: 50px;
    font-size: 20px;
    color: #ffffff;

}
.cart:hover{
     transition: transform 0.3s ease;
  transform: translateY(-5px) scale(1.1); /* Slight lift & scale */
}
.logo{
    height: 50px;
    margin-left: 50px;
}

 
 
.about-us{
  width:100%;
  padding:80px 8%;
  
  color:black;
  margin-top: 3px;
}

.about-wrapper{
  display:flex;
  align-items:center;
  gap:70px;
}

/* LEFT IMAGE GRID */
.about-images{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.about-images img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  transition:transform 0.3s ease;
}

.about-images img:hover{
  transform:scale(1.05);
}

/* RIGHT TEXT */
.about-text{
  flex:1;
  margin-right: 100px;
}

.about-text h2{
  font-size:36px;
  margin-bottom:25px;
  border-left:5px solid #f4c430;
  padding-left:15px;
}

.about-text p{
  font-size:17px;
  line-height:1.8;
  margin-bottom:20px;
}

.about-text strong{
  color:rgb(15, 15, 104);
}

/* MOBILE */
@media(max-width:900px){
  .about-wrapper{
    flex-direction:column;
  }

  .about-images img{
    height:160px;
  }
}
.new{
 margin-left: 500px;
 margin-bottom: 50px;

    
}



.product-alt{
  padding:90px 8%;
  background:#1f2933;
  color:#fff;
}

.product-title{
  font-size:38px;
  text-align:center;
  margin-bottom:60px;
  position:relative;
}

.product-title::after{
  content:"";
  width:70px;
  height:4px;
  background:#f4c430;
  display:block;
  margin:15px auto 0;
}

/* LIST */
.product-list{
  display:flex;
  flex-direction:column;
  gap:35px;
}

/* ITEM */
.product-item{
  display:flex;
  gap:40px;
  align-items:center;
  background:#243447;
  border-radius:18px;
  padding:25px;
  transition:transform 0.3s ease;
}

.product-item:hover{
  transform:translateX(10px);
}

/* IMAGE */
.product-img img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:14px;
}

/* TEXT */
.product-info h3{
  font-size:24px;
  margin-bottom:10px;
  color:#f4c430;
}

.product-info p{
  font-size:16px;
  line-height:1.7;
  color:#d6d6d6;
}

/* MOBILE */
@media(max-width:768px){
  .product-item{
    flex-direction:column;
    text-align:center;
  }

  .product-img img{
    width:100%;
    height:auto;
  }
}

.about-title{
  font-size:38px;
  text-align:center;
  margin-bottom:60px;
  position:relative;
}

/*photos*/
.product-grid-section{
  padding:80px 8%;
  background:#f9f9f9;
}

.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:50px;
}

/* GRID */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* CARD */
.product-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.product-card:hover{
  transform:translateY(-6px);
}

/* IMAGE */
.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:15px;
}

/* TEXT */
.product-card h3{
  font-size:18px;
  margin-bottom:6px;
}

.price{
  font-size:17px;
  font-weight:600;
  color:#f4c430;
  margin-bottom:6px;
}

.stars{
  color:#f4c430;
  font-size:16px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .product-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:576px){
  .product-grid{
    grid-template-columns:1fr;
  }
}
.address-section{
  padding:80px 8%;
  background:#1f2f3f; /* same dark theme */
}

.address-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* ADDRESS CARD */

.address-light{
  background:#f9fafb;
  padding:90px 8%;
}

.address-wrapper{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

/* LEFT CARD */
.address-info{
  background:#ffffff;
  padding:45px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.address-info h2{
  font-size:32px;
  margin-bottom:30px;
  color:#1f2933;
  border-left:6px solid #f4c430;
  padding-left:15px;
}

/* INFO ROWS */
.info-item{
  display:flex;
  gap:15px;
  margin-bottom:18px;
  font-size:16px;
  color:#444;
}

.info-item span{
  font-size:22px;
}

/* MAP */
.address-map iframe{
  width:100%;
  height:360px;
  border:0;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:900px){
  .address-wrapper{
    grid-template-columns:1fr;
  }
}


/*footer*/
.footer-blue{
  background:linear-gradient(135deg,#1e2f45,#0f1c2e);
  color:#ffffff;
  padding:70px 8% 30px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-box h3,
.footer-box h4{
  color:#f4c430;
  margin-bottom:20px;
}

.footer-box p{
  color:#d1d5db;
  font-size:15px;
  line-height:1.7;
}

.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  color:#d1d5db;
  text-decoration:none;
  transition:0.3s;
}

.footer-box ul li a:hover{
  color:#f4c430;
  padding-left:5px;
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:15px;
}

.social-icons a{
  width:40px;
  height:40px;
  background:#f4c430;
  color:#1e2f45;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-size:18px;
  transition:0.3s;
}

.social-icons a:hover{
  background:#ffffff;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.15);
  font-size:14px;
  color:#d1d5db;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
  }
}


.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-link.active {
  background-color: #4b5563; /* dark gray */
  color: #facc15;           /* yellow */
}


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  height:70px;
  background:#1f2933;
  display:flex;
  align-items:center;
  padding:0 30px;
  z-index:1000;
}

/* LOGO FIX */
.logo{
  height:45px;
  width:auto;
  object-fit:contain;
}

/* NAV LIST */
.nav-list{
  list-style:none;
  display:flex;
  gap:30px;
  margin-left:auto;
  align-items:center;
}

.nav-link{
  text-decoration:none;
  color:white;
  font-weight:600;
  padding:8px 14px;
  border-radius:6px;
}

.nav-link.active{
  background:#4b5563;
  color:#facc15;
}

.nav-link:hover{
  background:#4b5563;
  color:#facc15;
}

/* CART */
.cart{
  margin-left:30px;
  font-size:20px;
  color:white;
}

/* SECTION FIX (NAV OVERLAP) */
section{
  scroll-margin-top:90px;
}

/* ABOUT */
.about-us{
  padding:80px 8%;
}

.about-wrapper{
  display:flex;
  gap:60px;
}

.about-images{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.about-images img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
}

.about-text h3{
  margin-bottom:15px;
}

/* PRODUCT */
.product-alt{
  padding:80px 8%;
  background:#1f2933;
  color:white;
}

.product-item{
  display:flex;
  gap:30px;
  background:#243447;
  padding:25px;
  border-radius:15px;
}

.product-img img{
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:12px;
}

/* TITLES */
.product-title{
  font-size:36px;
  text-align:center;
  margin-bottom:50px;
}


.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.nav-list{
  color: white;
}

.carousel-item {
  height: 600px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* THIS FIXES THE ISSUE */
  background-color: #000;
}

