@font-face {
    font-family: 'Aptos';
    src: url('fonts/Aptos.ttf') format('truetype'), url('fonts/Aptos-Bold.ttf') format('truetype');

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  
}

body{
  background:#fff;
  color:#111;
}

.navbar{
  background:#ffffffee;
  backdrop-filter:blur(10px);
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand{
  font-size:32px;
  font-weight:800;
}

.navbar-brand img{
  object-fit: cover;
}

.navbar-brand span{
  color:#777;
}

.nav-link{
  font-weight:500;
  margin-left:15px;
  transition:0.3s;
}

.nav-link:hover{
  color:#777 !important;
}

.hero{
  height:100vh;
  background:url('../images/banner.jpg') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-overlay{
  background:rgba(0,0,0,0.65);
  padding:60px 40px;
  border-radius:30px;
  max-width:850px;
}

.hero h1{
  color:#fff;
  font-size:65px;
  font-weight:800;
  line-height:1.2;
}

.hero p{
  color:#ddd;
  margin-top:20px;
  font-size:20px;
}

.hero-btn{
  margin-top:35px;
}

.hero-btn a{
  text-decoration:none;
  background:#fff;
  color:#000;
  padding:14px 35px;
  border-radius:15px;
  font-weight:600;
  transition:0.3s;
  display:inline-block;
}

.hero-btn a:hover{
  transform:scale(1.05);
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:50px;
  font-weight:800;
}

.section-title p{
  color:#777;
  margin-top:15px;
  font-size:18px;
}

.product-card{
  border:none;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
  height:100%;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-card img{
  height:350px;
  object-fit:cover;
}

.product-card .card-body h5{
  font-size:24px;
  font-weight:700;
}

.product-card .price{
  font-size:28px;
  font-weight:800;
}

.about-section{
  background:#f5f5f5;
  padding:100px 0;
}

.about-img{
  border-radius:30px;
  width:100%;
  height:100%;
  object-fit:cover;
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.about-content h2{
  font-size:50px;
  font-weight:800;
  margin-bottom:25px;
}

.about-content p{
  color:#555;
  font-size:18px;
  line-height:1.9;
}

.newsletter{
  background:#000;
  color:#fff;
  text-align:center;
  padding:100px 20px;
}

.newsletter h2{
  font-size:50px;
  font-weight:800;
}

.newsletter p{
  color:#bbb;
  margin-top:20px;
  font-size:18px;
}

.newsletter input{
  height:60px;
  border-radius:15px;
  border:none;
  padding-left:20px;
  width:100%;
}

.newsletter button{
  height:60px;
  border:none;
  background:#fff;
  color:#000;
  border-radius:15px;
  padding:0 30px;
  font-weight:600;
  transition:0.3s;
}

.newsletter button:hover{
  transform:scale(1.05);
}

footer{
  background:#111;
  color:#bbb;
  padding:70px 0 30px;
}

footer h4,
footer h5{
  color:#fff;
  font-weight:700;
}

footer a{
  color:#bbb;
  text-decoration:none;
}

footer a:hover{
  color:#fff;
}

.copyright{
  border-top:1px solid #333;
  margin-top:40px;
  padding-top:20px;
  text-align:center;
  color:#777;
}

/* Mission Vision Section */

.mission-vision-section{
    background: #f8f9fa;
}

.mv-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.mv-box p{
    text-align: left;
}

.mv-box:hover{
    transform: translateY(-5px);
}

.mv-box h3{
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-box p{
    color: #666;
    line-height: 1.8;
    margin: 0;
}




@media(max-width:768px){

  .hero h1{
    font-size:42px;
  }

  .section-title h2,
  .about-content h2,
  .newsletter h2{
    font-size:38px;
  }

}

