/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}



/* NAVBAR */
.navbar {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 4rem;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
      z-index: 1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
text-decoration:none;
font-size:20px;
font-weight:600;
}

.logo img{
height:40px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

.nav-links a:hover{
opacity:0.7;
}
/* HERO */

.about-hero{
height:50vh;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url("../image/wall.jpg");
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:20px;
}

.about-hero h1{
font-size:48px;
margin-bottom:10px;
}



/* STORY */

.about-page{
padding:80px 10%;
}

.about-story{
display:flex;
gap:60px;
align-items:center;
flex-wrap:wrap;
}

.story-text{
flex:1;
}

.story-text h2{
font-size:34px;
margin-bottom:20px;
}

.story-text p{
margin-bottom:15px;
line-height:1.6;
color:#555;
}

.story-image{
flex:1;
}

.story-image img{
width:100%;
height:420px;
object-fit:cover;
border-radius:10px;
}



/* TEAM */

.team-section{
padding:80px 10%;
background:#f7f7f7;
}

.section-heading{
text-align:center;
font-size:36px;
margin-bottom:50px;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.team-card{
background:white;
padding:25px;
text-align:center;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

.team-card:hover{
transform:translateY(-10px);
}

.team-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}



/* MISSION */

.mission-split{
  padding:80px 10%;
  background:white;
}

.mission-heading{
  text-align:center;
  font-size:36px;
  margin-bottom:60px;
}

.mission-row{
  display:flex;
  align-items:center;
  gap:40px;
}

.mission-left, .mission-right{
  flex:1;
}

.mission-left h3,
.mission-right h3{
  font-size:24px;
  margin-bottom:15px;
}

.mission-left p,
.mission-right p{
  color:#555;
  line-height:1.7;
}

/* CENTER LINE */
.divider{
  width:2px;
  height:200px;
  background:#2f5ab8;
}

@media(max-width:768px){

.mission-row{
  flex-direction:column;
}

.divider{
  width:60px;
  height:2px;
}

}

/* WHY CHOOSE */

.why-choose{
padding:80px 10%;
background:#0d2b3e;
color:white;
text-align:center;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-top:40px;
}

.feature-box{
background:rgba(255,255,255,0.08);
padding:35px;
border-radius:10px;
transition:0.3s;
}

.feature-box:hover{
transform:translateY(-10px);
background:rgba(255,255,255,0.15);
}

.icon-circle{
width:70px;
height:70px;
background:#ffd700;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:20px;
color:#0d2b3e;
font-size:28px;
}



/* FOOTER */

.footer{
  text-align:center;
  padding:25px;
  background:#111;
  color:white;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px; /* reduced gap overall */
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-left h3 {
  font-size: 1.9rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #ffffff;
}

.footer-left p {
  color: #dce8ff;
  line-height: 1.6;
  font-size: 0.96rem;
}

/* Center Section */
.footer-center {
  flex: 1.3;
  display: flex;
  justify-content: space-around;
  min-width: 280px;
  gap: 50px; /* 🔹 reduced the space between Quick Links & Products */
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  position: relative;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  opacity: 0.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #dbe6ff;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

/* 🌈 COOL HOVER EFFECT */
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Right Section */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  color: #ffffff;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #ffffff;
  color: #031a6b;
  transform: scale(1.15) rotate(6deg);
}

.shop-timing p {
  color: #dbe6ff;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #cbd5ff;
}

/* =========================
   📱 MOBILE PERFECT FIX
========================= */
@media (max-width:768px){

/* =========================
   NAVBAR (SCROLL STYLE)
========================= */
.navbar{
  padding: 0.8rem 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.logo{
  margin-bottom: 10px;
}

/* SCROLL NAV */
.nav-links{
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 12px;
  width: 100%;
  padding-bottom: 5px;
}

.nav-links::-webkit-scrollbar{
  display: none;
}

.nav-links a{
  flex: 0 0 auto;
  padding: 6px 12px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
}


/* =========================
   HERO
========================= */
.about-hero h1{
  font-size: 30px;
}


/* =========================
   STORY SECTION FIX
========================= */
.about-page{
  padding: 50px 20px;
}

.about-story{
  flex-direction: column;   /* 🔥 STACK */
  gap: 20px;
}

.story-text{
  text-align: center;
}

.story-text h2{
  font-size: 24px;
}

.story-text p{
  font-size: 14px;
  line-height: 1.6;
}

/* IMAGE FIX */
.story-image img{
  height: 250px;
  width: 100%;
}


/* =========================
   TEAM
========================= */
.team-section{
  padding: 50px 20px;
}

.section-heading{
  font-size: 26px;
}

.team-grid{
  grid-template-columns: 1fr;
}


/* =========================
   MISSION
========================= */
.mission-section{
  padding: 50px 20px;
}

.info-grid{
  grid-template-columns: 1fr;
}




/* =========================
   WHY CHOOSE
========================= */
.why-choose{
  padding: 50px 20px;
}

.features{
  grid-template-columns: 1fr;
}
}

/* FLOATING CONTACT BUTTONS */

.floating-contact{
  position:fixed;
  right:20px;
  bottom:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

/* WHATSAPP */
.whatsapp-btn{
  background:#25D366;
  color:white;
  font-size:22px;
  padding:14px;
  border-radius:50%;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
}

/* CALL */
.call-btn{
  background:#0d2b3e;
  color:white;
  font-size:20px;
  padding:14px;
  border-radius:50%;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
}

.call-btn:hover{
  transform:scale(1.1);
}