* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
  list-style: none;
}
header {
  position: fixed;
  right: 0;
  top: 0;
  height: 90px;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #000, #fff);
  padding: 17px 11%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

  transition: all 0.45s ease;
}

.logo img {
  width: 100%;
  height: 200px;
  margin-top: 10px;
  transition: all 0.45s ease;
}

.navbar {
  display: flex;
  position: relative;
  left: 10px;
  transition: all 0.45s ease;
}
.navbar li {
  transition: all 0.45s ease;
}
.navbar a {
  font-size: 15px;
  color: black;
  font-weight: 400;
  padding: 15px;

  /* background: transparent; */
  border-radius: 30px;
  transition: all 0.45s ease;
}
.navbar :hover {
  color: #F4C430;
  font-weight: 800;
   /* transition: all 0.3s ease; */
  /* background-color: aliceblue; */
}

.icons {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.icons i {
  height: 50px;
  width: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color:white;
  font-size: 22px;
  margin-right: 25px;
  margin-left: 10px;
  transition: all 0.45s ease;
}

.icons i:hover {
  transform: scale(0.9);
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: black;
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    align-items: center;
  }

  .navbar a{
    color: black;
  }
  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    background: white;
    flex-direction: column;
    align-items: right;
    gap: 20px;
    color: gray;
    padding: 20px 0;

    display: none;
  }

  .navbar.active {
    display: flex;
  }
}
/* home section */
.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:80px 8%;
gap:40px;
  transition: all 0.45s ease;
   background: linear-gradient(to right, #000, #fff);
}
.hero-text h1{
  color: white;
font-size:52px;
line-height:1.2;
margin-bottom:10px;
  transition: all 0.45s ease;
}
.hero-text p{
font-size:16px;
color:white;
/* text-align: right; */
margin-left: 40px;
margin-bottom:10px;
  transition: all 0.45s ease;
}
.btn{
display:inline-block;
padding:12px 30px;
margin: 10px;
background:#F4C430;
color:black;
border-radius:30px;
transition:.3s;
}
.btn:hover{ background:white; color: black; border: 1px solid black; }
.hero-img img{
width:100%;
border-radius:20px;
}
@media(max-width:900px){
.hero{ grid-template-columns:1fr; }
.hero-text h1{ font-size:38px; }
}

/* FEATURE (READY TO WEAR TITLE) */
/* ============================= */

.feature {
  padding: 60px 20px 30px;
  text-align: center;
  background: #fff;
}

.middle-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #111;
}

.middle-text .section-title {
  font-size: 18px;
  color: #555;
  letter-spacing: 1px;
}

/* ============================= */
/* CATEGORY SECTION */
/* ============================= */

.category-section {
  /* padding: 40px 5%; */
  background: #fff;
}

/* MEN / WOMEN HEADINGS */
.content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 10px;
}

.content h2 {
  font-size: 24px;
  letter-spacing: 2px;
  color: #111;
}

/* PRODUCT GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* CARD */
.category-card {
  text-align: center;
  position: relative;
}

.category-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* OVERLAY TEXT */
.overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

/* HOVER EFFECT */
.category-card:hover img {
  opacity: 0.4;
}

/* .category-card:hover .overlay-text {
  opacity: 1;
} */

/* TEXT */
.category-card h3 {
  font-size: 20px;
  margin: 12px 0 5px;
  color: #222;
}

.category-card p {
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.shop-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border: 1px solid #000;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #000;
  color: #fff;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* Tablets */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card img {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .middle-text h1 {
    font-size: 28px;
  }

  .content {
    justify-content: center;
    gap: 40px;
  }

  .content h2 {
    font-size: 18px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 360px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .middle-text h1 {
    font-size: 24px;
  }

  .overlay-text {
    font-size: 20px;
  }
}
 
/* about us */
.about-content{
 font-size: 40px;
    text-align: center;
    /* margin-top: 20px; */
    color: #1a1a1a;
    padding-top: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(20px);
    /* opacity: 0; */
    transition: 0.4s ease;
}
.about-content:hover{
  text-decoration: underline;
  cursor: pointer;
}

  .footer {
  /* background: linear-gradient(to right, #000, #fff); */
  background-color: black;
  color: #fff;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.footer-col p{
  text-align: left;
  /* margin-right: 50px; */
  margin-top: 50px;
  
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.social-links a {
  margin-right: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}
.social-icons a{
  margin-top: 100px;
padding: 10px;
}
.footer-col h4 {
  margin-bottom: 20px;
}
 
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
  .footer-col h4 {
    font-size: 17px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column */
    text-align: center;
  }

  .social-links a {
    margin: 5px;
    display: inline-block;
  }

  .footer-col ul li {
    margin: 6px 0;
  }
}


.floating-contact {
  position: fixed;          /* scroll ke saath gayab nahi honge */
  right: 22px;              /* right side */
  bottom: 30%;              /* vertically center-ish */
  display: flex;
  flex-direction: column;   /* ek ke niche ek */
  gap: 16px;
  z-index: 9999;
}

.floating-contact a {
  width: 64px;              /* ICON SIZE BADAYA */
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;          /* icon bada */
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Individual colors */
.floating-contact .call {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.floating-contact .whatsapp {
  background: linear-gradient(135deg, #25D366, #1aa851);
}

/* Hover animation */
.floating-contact a:hover {
  transform: scale(1.15);
}
