* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* body {
    height: 2000px; ;
     
} */
.image-wrap{
  max-width:100%;
  margin:auto;
  text-align:center;
  overflow:hidden;
}

/* Images responsive */
.image-wrap img{
  max-width:100%;
  height:auto;
  display:block;
  margin:15px auto;
}

/* HEADER STYLE */
header {
    width: 100%;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    /* transition: 0.3s ease;
    background: transparent; */
}

header.scrolled {
    background:#222222;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.logo {
  width: 100px; /* default desktop size */
  height: 50px;
  overflow: hidden;
  border-radius: 30px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
  .logo {
    width: 80px;  /* mobile me chhota */
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 60px;  /* chhote phones ke liye */
    height: 30px;
  }
}


/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Normal links */
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #D4A017;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 150px;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  border-radius: 5px;
  z-index: 999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #222222;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #f2f2f2;
  color: #000;
}

/* Hover show */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* BUTTONS */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-call, .btn-shop {
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}

.btn-call {
    background: transparent;
    border: 1px solid #000;
    color: white;
}

.btn-shop {
    background: #D4A017;
    color: #fff;
}

/* MOBILE MENU */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    }

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    position: fixed;
    top: 70px;
    right: 0;
    width: 70%;
    box-shadow: -2px 0px 10px rgba(0,0,0,0.1);
}

.mobile-menu a {
    padding: 15px 10px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }
}
.bg-section {
    width: 100%;
    height:750px;
    background-image: url('./image2/bgimage.png'); /* apni image ka naam */
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 50px;
}

/* Overlay color */
.overlay {
    position: absolute;
    inset: 0; /* top:0, left:0, right:0, bottom:0 */
    background-color: rgba(0,0,0,0.3); /* opacity yahan control hogi */
}

/* Text on top */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;
}


       /* my css */
      
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 80px;
    background: #f7f7f7;
    gap: 50px;
}

/* ------ LEFT CONTENT ------ */
.left-content {
    width: 50%;
}

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #444;
}

.left-content h1 {
    font-size: 45px;
    margin: 20px 0;
    font-weight: 700;
}

.left-content p {
    font-size: 17px;
    line-height: 27px;
    color: #555;
    margin-bottom: 20px;
}

.download-text {
    font-size: 16px;
    color: #444;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.catalog-btn {
    padding: 12px 25px;
    border: 2px solid #222;
    background: transparent;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

/* ------ RIGHT IMAGES ------ */
.right-images {
    width: 45%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Since 2009 Box */
.since-box {
    background: #222;
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    text-align: center;
}

.since-box h2 {
    margin: 0;
    font-size: 30px;
}

/* Image Styles */
.image-box img {
    width: 180px;
    height: 320px;
    object-fit: cover;
    border-radius: 25px;
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .left-content, .right-images {
        width: 100%;
    }

    .right-images {
        justify-content: center;
    }
    .bg-section {
        height: 300px; /* chhote screens ke liye */
    }
}

@media (max-width: 600px) {
    .heading {
        font-size: 40px;
    }

    .image-box,
    .image-box.wide {
        width: 45%;
        height: 250px;
    }

    .right-images {
        flex-wrap: wrap;
    }
}


.facts-section {
    padding: 80px 10%;
    background: #ffffff;
}

.facts-header {
    margin-bottom: 40px;
}

.facts-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #444;
}

.facts-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

.facts-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.fact-box {
    width: 20%;
    text-align: center;
}

.fact-icon {
    background: #111;
    color: #f7f7f7;
    width: 90px;
    height: 90px;
    border-radius: 40% 40% 6% 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact-icon img {
    width: 40px;
    opacity: 0.9;
}

.fact-box h3 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.fact-box p {
    font-size: 15px;
    color: #555;
}

/* Hover effect */
.fact-box:hover .fact-icon {
    background: #000;
    transform: scale(1.08);
    transition: 0.3s;
}

.fact-box:hover h3 {
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .facts-container {
        flex-direction: column;
    }

    .fact-box {
        width: 100%;
        margin-bottom: 30px;
    }
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-float i {
    margin-top: 14px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    transition: 0.3s;
}


.infinite-slider{
  width:100%;
  overflow:hidden;
  padding:20px 0;
}

.slide-track{
  display:flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slide{
  flex:0 0 auto;
  width:250px;
  margin-right:15px;
  position:relative;
}
/* background fill (fake cover) */
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter: blur(18px);
  transform: scale(1.2);
  z-index:1;
  opacity:0.4;
  border-radius:12px;
}
  /* zoom effect */

  
/* background fill (fake cover) */

.slide img,
.slide video{
  width:100%;
  height:180px;
  /* object-fit: contain;
  background:#f3f3f3; */
  border-radius:12px;
  display:block;
}

.slide img,
.slide video overlay{
  position:relative;
  z-index:2;
}
/* 📱 Mobile */
@media (max-width:600px){
  .slide{
    width:160px;
  }
  .slide img,
  .slide video{
    height:120px;
  }
}

/* 🔁 Infinite animation */
@keyframes scroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}




/* Image Figure Style */

.hover-anime {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
}

.hover-anime img {
  width: 100%;
  height: 350px;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.hover-anime:hover img {
  transform: scale(1.1);
}

/* After Layer */
.hover-anime::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.hover-anime:hover::after {
  left: 100%;
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



  /* Image Figure Style */
.testimonials {
    padding: 60px 20px;
    background: #f7faff;
    text-align: center;
}

.testimonials h2 {
    font-size: 28px;
    color: black;
    margin-bottom: 30px;
}

.testi-container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.testi-slider {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

.testi-card {
    width: 450px;
    min-height: 160px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.testi-card p {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

.testi-card h4 {
    color: black;
    font-weight: 700;
    margin: 0;
}



.news-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.news-section h2 {
    font-size: 28px;
    color: black;
    margin-bottom: 30px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

}

.news-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.news-card h3 {
    font-size: 20px;
    margin: 15px;
    color: #222;
}

.news-card p {
    margin: 0 15px 15px;
    font-size: 15px;
    color: #444;
}

.news-card a {
    display: inline-block;
    margin: 0 15px 18px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    font-size: small;
}
/* ;';ligkjhfgzdfgxcvbnml;' */
/* .news-detail {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
} */

.read-btn{
  display:inline-block;
  background:none;
  border:none;
  color:#007bff;
  cursor:pointer;
  font-weight:600;
  padding:0;
  text-decoration:none;
}


/* kjgfvhugfxfcgv */


.chennai-footer {
    background: #000;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
}

/* Footer Boxes */
.footer-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Single box */
.f-box {
    background: #111;
    width: 300px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #2b2b2b;
    border-radius: 20px;
    transition: 0.3s ease;
}

/* Icon circle */
.f-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
}

.f-box .icon i {
    font-size: 28px;
    color: #ffcc00;
}

.f-box h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #fff;
}

.f-box p {
    color: #cccccc;
    font-size: 15px;
}

/* Hover effect SAME as ChennaiHairFactory */
.f-box:hover {
    background: #1a1a1a;
    transform: translateY(-6px);
    border-color: #555;
}
.f-box a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
}

.f-box a:hover {
    color: #ffcc00;
}


/* Footer bottom */
.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #222;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 768px) {
    .f-box {
        width: 100%;
    }
}



.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social-icons a i {
    font-size: 20px;
    color: #ffcc00; /* Same gold color */
}

/* Hover effect (Exact same smooth highlight) */
.footer-social-icons a:hover {
    background: #1a1a1a;
    border-color: #444;
    transform: translateY(-4px);
}

/*responsive */

/* body{
  background:#0b0b12;
  font-family:Arial;
} */
/* 
.about-section{
  max-width:900px;
  margin:80px auto;
  text-align:center;
  color:white;
}

.company-name{
  font-size:36px;
  color:#caa45d;
  margin-bottom:5px;
}

.about-title{
  font-size:20px;
  letter-spacing:2px;
  color:#aaa;
  margin-bottom:40px;
}

.about-images{
  display:flex;
  gap:20px;
  justify-content:center;
  margin-bottom:30px;
}

.about-images img{
  width:45%;
  height:240px;
  object-fit:cover;
  border-radius:15px;
  border:2px solid #caa45d;
  box-shadow:0 0 25px rgba(202,164,93,0.6);
}

.about-text{
  max-width:700px;
  margin:30px auto;
  font-size:17px;
  line-height:1.7;
  color:#ddd;
}

.view-btn{
  display:inline-block;
  padding:14px 40px;
  border:2px solid #caa45d;
  color:#caa45d;
  text-decoration:none;
  border-radius:30px;
  transition:0.4s;
  font-weight:bold;
}

.view-btn:hover{
  background:#caa45d;
  color:black;
  box-shadow:0 0 30px #caa45d;
} */
/* beudjvbdiuvwheudbnodwedbvweuifhoiekfs */

.about-section{
  max-width:900px;
  margin:80px auto;
  padding:0 15px;
  text-align:center;
  color:white;

  /* 🔴 IMPORTANT FIX */
  display:block;          /* force vertical layout */
}

/* About Us */
.about-title{
  font-size:20px;
  margin-bottom:10px;
  color:#0b0404;
  letter-spacing:2px;
}

/* Company Name */
.company-name{
  font-size:36px;
  color:#caa45d;
  margin-bottom:30px;
}

/* Images row */
.about-images{
  display:flex;            /* sirf images ke liye */
  gap:20px;
  justify-content:center;
  margin:30px 0;
}

.about-images img{
  width:100%;
  max-width:420px;
  height:240px;
  object-fit:cover;
  border-radius:15px;
  border:2px solid #caa45d;
  overflow: hidden;
  box-shadow:0 0 25px rgba(202,164,93,0.6);
}

/* Text */
.about-text{
  max-width:700px;
  margin:25px auto;
  font-size:17px;
  line-height:1.7;
  color:#0c0505;
}

/* Button */
.news-detail {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.read-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}


/* .view-btn:hover{
  background:#caa45d;
  color:#000;
} */

/* 📱 Mobile & Tablet */
@media (max-width:768px){
  .company-name{
    font-size:28px;
  }

  .about-images{
    flex-direction:column;   /* images neeche neeche */
  }

  .about-images img{
    height:220px;
  }
}



/* ncibfvdbiewhfweuibcjvnepiufhweous */
/* body{
  margin:0;
  font-family:Arial;
  background:#0c0c14;
} */

.process{
  padding:60px 20px;
  color:white;
  text-align:center;
}

.process h2{
  font-size:36px;
  margin-bottom:40px;
  position:relative;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:#111;
  border:2px solid #caa45d;
  border-radius:15px;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 0 20px rgba(202,164,93,0.3);
}

.card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 0 40px rgba(202,164,93,0.8);
}

.card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

.card p{
  padding:15px;
  font-size:18px;
  background:#000;
  color:#caa45d;
}

      /* videos */
      