/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

/* body {
  background: url('https://img.freepik.com/free-photo/blue-denim-jeans-texture-background_53876-142087.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  position: relative;
  margin: 0;
  padding: 0;
} */
body {
  margin: 0;
  padding: 0;
  color: #fff;
  position: relative;
  min-height: 100vh; /* allow content to grow beyond 1 screen */
  overflow-x: hidden; /* prevent horizontal scroll, but allow vertical */
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  animation: backgroundSlide 12s infinite;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes backgroundSlide {
  0% {
    background-image: url('./Images/Img1.png');
  }
  33.33% {
    background-image: url('./Images/Img4.jpeg');
  }
  66.66% {
    background-image: url('./Images/Img6.jpeg');
  }
  100% {
    /* background-image: url('https://img.freepik.com/free-photo/blue-denim-jeans-texture-background_53876-142087.jpg'); */
     background-image: url('./Images/Img2.jpg');
  }
}


a {
  text-decoration: none;
  color: inherit;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 3;
}

.search-container {
  position: relative;
}

.search-icon {
  font-size: 22px;
  cursor: pointer;
}

.search-box {
  display: none;
  position: absolute;
  top: 30px;
  background: #000;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}

#search-toggle:checked ~ .search-box {
  display: flex;
  gap: 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
}

.right-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-number {
  color: #fff;
  text-decoration: underline;
}

.talk-btn {
  padding: 10px 14px;
  border: 1px solid #000;
  /* background: #e91e63 !important; */
  background: #e91e63 !important;
  color: #fff !important;         /* Make text white for contrast */
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;      /* Rectangle style */
  cursor: pointer;
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: #ccc;
  margin: 0 ;
    padding: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  gap: 25px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  z-index: 2;
}
.top-bar-section,
.navbar-section {
  background: #fff; /* Match the background to eliminate unwanted white gaps */
}
/* Hero */
.hero {
  position: relative;
  padding: 80px 30px;
  text-align: center;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e91e63;
}

.hero-content p {
  margin-bottom: 20px;
  color: #D2B48C;
}

.cta-btn {
  background: #e91e63;
  color: #000;
  padding: 10px 20px;
  display: inline-block;
  /* border-radius: 25px; */
  font-weight: bold;
   border-radius: 0; 
}

/* Chat button */
.chat-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: green;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
}

/* Scroll down */
.scroll-down {
  position: fixed;
  bottom: 20px;
  right: 30px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 15px;
}

/* Right menu icon */
.menu-icon {
  position: fixed;
  top: 130px;
  right: 30px;
  font-size: 24px;
  cursor: pointer;
  z-index: 4;
  color: white;
}

/* Right modal panel */
.right-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: #fffffff6;
  color: #000;
  transition: right 0.4s ease;
  z-index: 5;
}

#social-toggle:checked ~ .right-modal {
  right: 0;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  position: relative;
}
.modal-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-logo img {
  width: 50px;
  margin: 0; /* removes margin-bottom and any extra spacing */
  display: block;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.bottom-contact {
  font-size: 14px;
  text-align: center;
  color: #000;
}

/* Contact modal */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

#contact-toggle:checked ~ .contact-modal {
  display: flex;
}
.contact-content label:hover {
  background-color: #ff3300;
}
  
.contact-content {
  background: #fff;
  color: #000;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.contact-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.contact-content input,
.contact-content textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-content input[type="submit"],
.contact-content .close-btn {
  background: #000;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.contact-content .close-btn {
  margin-top: 10px;
  border-radius: 5px;
}

/* Dismiss modal on outside click */
.overlay-close {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

/* Contact section */
.contact-section {
  background: #fff;
  color: #000;
  padding: 60px 30px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.form-box, .map-box {
  flex: 1 1 300px;
}

.contact-section h2 {
  color: #000;
  margin-bottom: 20px;
}
.contact-modal .contact-content h2 {
  color: #000 !important;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input, .contact-section textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-section button {
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/*own added */
.navbar-section {
  border-top: 1px solid #ccc;
}
.close-icon {
  font-size: 24px;
  color: #000;
  cursor: pointer;
  margin: 20px 0;
  text-align: center;
}


/* Contact Section */
.contact-section {
  background: #fff;
  color: #000;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.form-box, .map-box {
  flex: 1 1 45%;
}

.form-box h2,
.map-box h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #000;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-box button {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 0.8rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.form-box button:hover {
  background-color: #e91e63;
}

/* Footer */
footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
/********/

/******* */
/*own css for menu icon */
/* Modal wrapper */
.right-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px; /* Slightly smaller width */
  height: 100%;
  background: #fff;
  color: #000;
  transition: right 0.4s ease;
  z-index: 1000;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
}

/* Show modal when checkbox is checked */
#social-toggle:checked ~ .right-modal {
  right: 5px; /* Small left margin for popup */
}

/* Modal content layout */
.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

/* Header section: logo left, close right */
/* Modal header: logo left, close icon right */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
/* Logo spacing and size */
.modal-logo {
  width: 48px;
  height: 48px;
  margin-right: 110px; /* Push close icon to the right */
}

.modal-header img {
  width: 40px;
  height: 40px;
}

/* Close icon style */
.close-icon {
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 5px;
  margin-left: 20px; /* Space between logo and icon */
}

/* Close icon animation */
.close-icon:hover {
  transform: rotate(90deg);
  color: #ff0000;
}

/* Centered social links */
.social-links {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px 0;
}

.social-links a {
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.social-links a:hover {
  /* color: #007bff; */
  color: #e91e63;
  transform: scale(1.05);
}
.social-links img {
  width: 24px;
  height: 24px;
}
/* Bottom contact info */
.bottom-contact {
  text-align: center;
  font-size: 14px;
  color: #333;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.bottom-contact a {
  color: #000;
  text-decoration: none;
}

/*own navbar line and searchbar css*/

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Top Bar Section */
.top-bar-section {
  padding: 10px 20px;
  background: none; /* Removes background */
  box-shadow: none;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none; /* No box background */
   margin-bottom: 0;
}

/* Search Container */
.search-container {
  position: relative;
}

.search-icon {
  cursor: pointer;
  font-size: 20px;
  color: #000;
}

.search-box {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: transparent;
  padding: 5px 0;
  z-index: 100;
  align-items: center;
  gap: 5px;
}

#search-toggle:checked ~ .search-box {
  display: flex;
  gap: 5px;
}
.search-box input[type="text"] {
  padding: 6px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.search-box button {
  padding: 6px 12px;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
}

.logo img {
  width: 50px;
  height: 50px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

/* Right Info */
.right-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-number {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.talk-btn {
  padding: 6px 14px;
  border: 1px solid #000;
  background: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0; /* Rectangle style */
  cursor: pointer;
}

/* Divider Line */
.divider {
  border: none;
  border-top: 4px solid #fff;
   margin: 0;
}
/* Navbar Section */
.navbar-section {
  padding:  0;
  background: none; /* Removes background */
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 25px;
  background: none;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0%;
  background: #000;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a:focus::after {
  width: 100%;
}
/*ownnn search box */
.search-container {
    position: relative;
    display: inline-block;
  }

  /* Hide the checkbox but keep it focusable */
  #search-toggle {
    opacity: 0;
    position: absolute;
    left: -9999px;
  }

  .search-icon {
    cursor: pointer;
    font-size: 20px;
    user-select: none;
  }

  .search-box {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: transparent;
    gap: 5px;
    align-items: center;
  }

  /* Show search box when checkbox is checked */
#search-toggle:checked ~ .search-box {
  display: flex;
  gap: 5px;
}
#search-toggle:checked + .search-icon + .search-box {
  display: flex;
  gap: 5px;
}
  /* Optional styling for input and button */
  .search-box input[type="text"] {
    padding: 5px;
    font-size: 14px;
  }

  .search-box button {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
  }
/*own Footer css */

.footer {
  background: #031b35;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-subscribe h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.subscribe-box {
  display: flex;
  max-width: 400px;
}

.subscribe-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #1e3551;
  background: #031b35;
  color: #fff;
  outline: none;
}

.subscribe-box button {
  background: #e53e3e;
  color: #fff;
  border: none;
  padding: 0 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
   flex-wrap: wrap;
  
}

.icon.red {
  background: #e91e63;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
}

.contact-item h4 {
  font-weight: bold;
  margin: 0;
   align-items: center;
     
}

.contact-item p,
.contact-item a {
  margin: 2px 0;
  color: #ccc;
  text-decoration: none;
   align-items: center;
}

.contact-item a:hover {
  color: #fff;
  text-decoration: none;
  color: #e91e63;

}

.highlight a {
  color: #e91e63;
  font-weight: bold;
}

.footer-links h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #1e3551;
  padding-top: 20px;
  text-align: center;
  margin-top: 40px;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  background: #1e3551;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 18px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #e91e63;
}

.bottom-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.whatsapp-icon {
  background-color: #25D366;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  transition: background 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background-color: #1ebe5b;
}
/*footer logo sathi */
.footer-subscribe {
  text-align: center;
}

.footer-subscribe .logo-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.footer-subscribe .logo-footer img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-subscribe .logo-footer span {
  font-size: 24px;
  font-weight: bold;
  color: #fff; /* or adjust to match your footer background */
  letter-spacing: 1px;
  text-transform: uppercase;
}
/*own css for connected now*/
.subscribe-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.subscribe-box input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
  transition: 0.3s;
}

.subscribe-box input:hover,
.subscribe-box input:focus {
  outline: none;
  box-shadow: 0 0 5px #e91e63;
  border-color: #e91e63;
}

.subscribe-box button {
  padding: 10px 20px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-box button:hover {
  background-color: #c2185b;
  transform: scale(1.05);
}

.subscribe-box button span {
  margin-left: 5px;
}

/*own css for hero section text and button*/
/* General Styling */
/* Hero Section Centered */
.hero-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: none;
}

/* Animated Text */
.hero-content h1,
.hero-content p,
.scroll-down a {
  animation: fadeInOut 2s ease-in-out infinite;
}

/* Fade Animation */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-content h1 {
  font-size: 58px;
  font-weight: bold;
  /* color: #222; */
  color: #fff;
}

.hero-content p {
  font-size: 30px;
  /* color: #111010; */
  color: #fff;
  margin: 0;
}

 .hero-content .cta-btn {
  padding: 14px 40px;
  /* background-color: #e91e63; */
  background-color: #c2185b;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
    margin-top: -6px; /* he button var khali sathi ahe */
     position: relative;
  z-index: 2; /* Ensure button is on   top */
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content .cta-btn:hover {
  background-color: #c2185b;
  transform: scale(1.05);/*button scale size (hover kele ki lahan honaar ase)kiti thevayche sathi ahe */
}

/* Presale Chat Button (fixed position) */
.chat-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: green;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
}

.scroll-down {
  position: fixed;
  bottom: 20px;
  right: 30px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 15px;
}
/*own css for navbar and dropdown */
/* Navbar container */
/* Navbar container */
.navbar {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: sans-serif;
  position: relative;
}

/* Common navbar link styles */
.navbar a {
  text-decoration: none;
  /* color: #000; */
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  position: relative;
}
.navbar a.active-link {
  border-bottom: 2px solid #e91e63; /* or any highlight color *//*home pink line continue active sathi*/
}
.navbar a:hover {
  border-bottom: 2px solid #e91e63 ; /* underline uses text color */
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content styles */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.7); /* Black transparent background */
  border-radius: 4px;
  z-index: 999;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hover effect for dropdown items */
.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/*own navbar phone no underline css */
.phone-number {
  text-decoration: none;
    color: #fff;
  position: relative;
}

.phone-number:hover {
  border-bottom: 2px solid #e91e63;
}
/*own css for What we offer code*/
.offer-section {
  background: linear-gradient(to right, #ffffff 50%, #f9f9f9 100%);
  padding: 20px 20px 80px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #8a6d46;
  margin-bottom: 30px;
}

.text-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.static-text {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

/* Wrapper for animated text to control width */
.animated-wrapper {
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
  border-right: 2px solid rgba(233, 30, 99, 0.8);
}

/* Animated text effect */
.animated-type {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: transparent;
  white-space: nowrap;
  background-image: linear-gradient(90deg, #e91e63, #000, #e91e63);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation:
    typing 10s steps(75, end) infinite,
    shimmer 3s linear infinite;
}

/* Typing effect */
@keyframes typing {
  0% { width: 0; }
  40%, 60% { width: 100%; }
  80%, 100% { width: 0; }
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 300% center;
  }
}

/*own css director section*/
.director-tag {
  margin-top: 30px !important;
  display: inline-block;
  color: #000;          /* white text */
  text-align: center;
  padding: 0;
  background: none;
  border-radius: 0;
  position: static;
  overflow: visible;
  opacity: 1;
  animation: none;
}

.director-name {
  font-weight: 700; /* bold */
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.director-title {
  font-weight: 400; /* normal */
  font-size: 18px;
  letter-spacing: 1px;
  color: #000;
}

.director-tag::after {
  content: none; /* no glowing border */
}
/*own css About us section */
.textile-section {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f5ef;
  padding: 60px 20px;
}

.textile-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.textile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.textile-image {
  flex: 1 1 45%;
}

.textile-content {
  flex: 1 1 50%;
  color: #333;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a6d46;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  text-align: left;
}

.description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #e91e63;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background-color: #b84300;
}
.textile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.textile-image img:hover {
  transform: scale(1.05);
}

/*own current size section css*/

/* ========== Section 1: Title ========== */
.title-section h2 {
  text-align: center;
  /* color: #e91e63; */
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 40px;
}

/* ========== Section 2: Market Cards ========== */
/* Cards Container - Vertical Layout */
/* First Row - 3 Boxes */
.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

/* Second Row - 2 Centered Boxes */
.cards-second-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 640px; /* 2 cards of 300px + 20px gap */
  margin: 15px auto;
}

/* Card Box */
.card {
  background: #fff;
  width: 300px;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  /* background-color: #c12c9e; */
   box-shadow: 0 5px 5px 5px hsla(340, 96%, 48%, 0.925);
}

/* Icon Style */
.card i {
  font-size: 36px;
  color: #e91e63;
  margin-bottom: 15px;
}

/* Headings and Text */
.card h3 {
  font-size: 18px;
  color: #214177;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
/*graph chi css index.html madhe ahe title madhe*/
 h2 {
      font-size: 32px;
      font-weight: bold;
      letter-spacing: 2px;
      margin-bottom: 40px;
      margin-top: 30px;
      text-align: center;
      color: #ffffff;
    }
  canvas {
  max-width: 1100px;          /* fixed max width */
  width: 100%;               /* responsive width */
  height: 400px !important;  /* fixed height */
  display: block;
  margin: 0 auto;            /* center horizontally */
  background-color:rgba(180, 237, 9, 0.838) transparent;  /* transparent background */
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: black;
}

canvas:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(227, 229, 233, 0.838); /* subtle blue shadow */
  margin-bottom: 20px;
}

/*Team and partnership own css*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

.clients-section {
  padding: 1.5rem 0;
  background: #031b35;
  overflow: hidden;
}

.clients-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.clients-showcase {
  position: relative;
  padding: 0 40px;
}

.clients-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  animation: scrollClients 20s linear infinite;
  width: max-content; /* ensures smooth repeat */
  scroll-behavior: smooth;
  padding: 1rem 0;
}

.client-card {
  flex: 0 0 auto;
  width: 280px;
  background: #031b35;
  /* background: #222; */
  border-radius: 12px;
 border: 1px solid #e91e63; /* added pink border */
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 16px rgba(#e91e63);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: scale(1.08);
 /* box-shadow: 0 40px 40px 20px hsla(305, 98%, 49%, 0.3); */
 box-shadow: 0 40px 40px 20px hsla(300, 97%, 43%, 0.925);
}

.client-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.client-name {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.2rem;
}

.client-industry {
  font-size: 1rem;
  color: #ccc;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 12px;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.clients-track::-webkit-scrollbar {
  display: none;
}
.clients-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*88888888888888 Mobile View 8888888888888888888888888888888888888888*/
/*Mobile view sathi ahe hi css yacha dusra ky vishy ny */
/* Mobile Responsive CSS */

/* For devices up to 768px width */
@media (max-width: 768px) {
  /* Top bar stacked vertically */
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    align-items: flex-start;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .logo span {
    font-size: 18px;
  }
  .right-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }
  .phone-number {
    font-size: 14px;
  }
  .talk-btn {
    padding: 6px 10px;
    font-size: 13px;
    width: 100%;
  }

  /* Navbar stacked vertically */
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
  }
  .navbar a {
    font-size: 16px;
  }

  /* Search container adjustments */
  .search-container {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  .search-box {
    position: static;
    display: none;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    max-width: 300px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
    padding: 10px;
    top: 40px;
    left: 0;
  }
  #search-toggle:checked ~ .search-box,
  #search-toggle:checked + .search-icon + .search-box {
    display: flex;
  }
  .search-box input[type="text"] {
    width: 70%;
    padding: 8px;
    font-size: 16px;
  }
  .search-box button {
    padding: 8px 16px;
    font-size: 16px;
  }
  .search-icon {
    font-size: 26px;
  }

  /* Contact Section */
  .contact-container {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    padding: 0 15px;
  }
  .form-box,
  .map-box {
    flex: 1 1 100%;
  }
  .contact-section {
    padding: 30px 15px;
  }
  .contact-content {
    max-width: 320px;
    padding: 20px;
  }

  /* Modal */
  .right-modal {
    max-width: 100%;
    right: -100%; /* hidden by default */
  }
  #social-toggle:checked ~ .right-modal {
    right: 0; /* show modal */
  }
  .modal-content {
    padding: 15px;
  }
  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .modal-logo {
    margin-right: 0;
  }
  .close-icon {
    margin-left: 0;
    align-self: flex-end;
  }
  .social-links {
    gap: 15px;
    margin-top: 15px;
  }
  .social-links a {
    font-size: 16px;
  }
  
  /* Divider full width */
  .divider {
    margin: 5px 0;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }
  .footer-subscribe {
    text-align: center;
  }
  .subscribe-box {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .subscribe-box input,
  .subscribe-box button {
    width: 100%;
  }
  .footer-contact {
    gap: 15px;
  }
  .contact-item {
    flex-direction: column;
    /* align-items: flex-start; */
     align-items: center;
  }
  .social-icons {
    text-align: center;
  }
  .social-icons a {
    margin: 0 8px 8px 0;
  }
  .bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

/* For devices up to 600px width */
@media (max-width: 600px) {
  /* Top bar */
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    gap: 10px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }

  .right-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .talk-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
  }

  /* Navbar vertical */
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }
  .navbar a {
    font-size: 16px;
  }

  /* Hero section */
  .hero {
    padding: 60px 15px;
    height: auto;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  /* Chat button smaller and repositioned */
  .chat-button {
    bottom: 20px;
    right: 20px;
    left: auto;
    padding: 8px 14px;
    font-size: 14px;
  }

  /* Scroll down button smaller */
  .scroll-down {
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 10px;
  }

  /* Modal */
  .right-modal {
    max-width: 100%;
    width: 100%;
  }
  .modal-content {
    padding: 30px 15px;
  }

  /* Social links smaller */
  .social-links a {
    font-size: 16px;
  }
  .social-links img {
    width: 20px;
    height: 20px;
  }

  /* Contact modal smaller */
  .contact-content {
    max-width: 320px;
    padding: 20px;
  }

  /* Search box adjustments */
  .search-box {
    top: 35px;
    right: 0;
    left: auto;
  }
  .search-icon {
    font-size: 26px;
  }

  /* Hero content text and buttons */
  .hero-content h1 {
    font-size: 32px;
    padding: 0 10px;
  }
  .hero-content p {
    font-size: 18px;
    padding: 0 10px;
  }
  .hero-content .cta-btn {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 0;
  }

  /* Offer Section */
  .offer-section {
    padding: 15px 10px 60px;
  }
  .section-title {
    font-size: 20px;
  }
  .animated-type {
    font-size: 18px;
  }

  /* Textile (About Us) */
  .textile-container {
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
  }
  .textile-image,
  .textile-content {
    flex: 1 1 100%;
  }
  .main-title {
    font-size: 28px;
    text-align: center;
  }
  .description {
    font-size: 14px;
  }
  .about-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  /* Cards section stacked */
  .cards-container,
  .cards-second-row {
    flex-direction: column;
    max-width: 100%;
    gap: 15px;
  }
  .card {
    width: 100%;
    padding: 20px 15px;
  }
  .card h3 {
    font-size: 16px;
  }
  .card p {
    font-size: 14px;
  }

  /* Graph */
  h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  canvas {
    height: 280px !important;
  }

  /* Clients section */
  .clients-section {
    padding: 1rem 10px;
  }
  .clients-showcase {
    padding: 0 10px;
  }
  .clients-track {
    gap: 1rem;
    animation: scrollClients 20s linear infinite;
     width: max-content; /* ensures smooth repeat */
  }
  .client-card {
    width: 240px;
    padding: 1rem;
  }
  .client-logo img {
    width: 80px;
    height: 80px;
  }
  .client-name {
    font-size: 1rem;
  }
  .client-industry {
    font-size: 0.85rem;
  }
}

/*contact popup css */

#popup-message {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #4caf50;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.popup-visible {
  display: block;
}

.popup-hidden {
  display: none;
}

/*updated mobile view*/
/* UPDATED MOBILE VIEW ONLY */

/*he navin ahe 13/08/2025*/
/* MOBILE VIEW ONLY */
/*responsive for mobile only 29-9-2025*/
/* Mobile Responsive CSS - Only for devices up to 768px */
/* Mobile Responsive CSS - Fixed positions, non-draggable */
@media (max-width: 768px) {

  /* Prevent text/image selection and dragging */
  * {
    user-select: none;       /* Disable text selection */
    -webkit-user-drag: none; /* Disable dragging images */
    touch-action: none;      /* Disable touch scrolling on draggable elements */
  }

  /* Top bar stacked vertically */
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    align-items: flex-start;
    position: relative;
  }

  /* Logo and info adjustments */
  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo span {
    font-size: 18px;
  }

  .right-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

  .phone-number {
    font-size: 14px;
  }

  .talk-btn {
    padding: 6px 10px;
    font-size: 13px;
    width: 100%;
  }

  /* Navbar stacked vertically */
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
  }

  .navbar a {
    font-size: 16px;
  }

  /* Search container adjustments */
  .search-container {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  .search-box {
    position: static;
    display: none;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    max-width: 300px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
    padding: 10px;
  }

  #search-toggle:checked ~ .search-box,
  #search-toggle:checked + .search-icon + .search-box {
    display: flex;
  }

  .search-box input[type="text"] {
    width: 70%;
    padding: 8px;
    font-size: 16px;
  }

  .search-box button {
    padding: 8px 16px;
    font-size: 16px;
  }

  .search-icon {
    font-size: 26px;
  }

  /* Contact Section adjustments */
  .contact-container {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    padding: 0 15px;
  }

  .form-box,
  .map-box {
    flex: 1 1 100%;
  }

  .contact-section {
    padding: 30px 15px;
  }

  .contact-content {
    max-width: 320px;
    padding: 20px;
  }

  /* Right modal adjustments - FIXED */
  .right-modal {
    position: fixed !important; /* Ensure it stays in place */
    top: 50% !important;
    right: -100%; /* hidden by default */
    transform: translateY(-50%);
    max-width: 90%;
    transition: right 0.3s ease;
    z-index: 9999;
  }

  #social-toggle:checked ~ .right-modal {
    right: 0; /* show modal */
  }

  .modal-content {
    padding: 15px;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modal-logo {
    margin-right: 0;
  }

  .close-icon {
    margin-left: 0;
    align-self: flex-end;
  }

  .social-links {
    gap: 15px;
    margin-top: 15px;
  }

  .social-links a {
    font-size: 16px;
  }

  /* Divider full width */
  .divider {
    margin: 5px 0;
  }

  /* Footer adjustments */
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .subscribe-box {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .subscribe-box input {
    width: 100%;
  }

  .subscribe-box button {
    width: 100%;
  }

  /* Hero section adjustments */
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .hero-content .cta-btn {
    font-size: 16px;
    padding: 10px 25px;
  }

  /* Clients section adjustments */
  .clients-track {
    gap: 1rem;
    padding: 1rem 10px;
    animation: scrollClients 20s linear infinite;
  width: max-content; /* ensures smooth repeat */

  }

  .client-card {
    width: 220px;
  }

  .client-logo img {
    width: 80px;
    height: 80px;
  }
}


/*mobile view scrolling*/
/* Make track scroll continuously */
.clients-showcase {
  overflow: hidden;   /* hide overflow */
  width: 100%;
  background: #031b35;
  padding: 1rem 0;
}

.clients-track {
  display: flex;
  gap: 2rem;
  width: max-content;  /* stretch to fit content */
  animation: scrollClients 25s linear infinite;
}

/* duplicate cards in HTML for seamless scroll */
.clients-track::after {
  content: "";
  display: flex;
}

.client-card {
  flex: 0 0 auto;
  width: 280px;
  background: #031b35;
  border: 1px solid #e91e63;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 12px rgba(0,0,0,0.4);
}

/* Continuous scroll (move by half since duplicated) */
@keyframes scrollClients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile view */
@media (max-width: 768px) {
  .clients-track {
    gap: 1rem;
    animation: scrollClientsMobile 30s linear infinite;
  }
  .client-card { width: 200px; }

  @keyframes scrollClientsMobile {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/*30/08/2025 mobile view updated start */

/* =========================
   Global Mobile Fix
   Remove horizontal scroll on all devices
========================= */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* =========================
   Tablet & iPad (≤1024px)
========================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .offer-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact {
    padding: 2rem 1rem;
  }
}

/* =========================
   Surface Duo & Foldables (≤912px)
========================= */
@media (max-width: 912px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* =========================
   Standard Mobiles (Galaxy A51/A71, ≤768px)
========================= */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .hero {
    height: auto;
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn {
    width: 100%;
  }

  .offer-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-content {
    width: 95%;
    max-width: 400px;
  }

  .client-card {
    width: 200px;
  }

  .contact-form {
    width: 100%;
  }
}

/* =========================
   Small Phones (≤480px)
========================= */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .offer-card {
    padding: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .footer {
    font-size: 13px;
  }
}

/* =========================
   Extra Small (Fold Mini / SE) (≤360px)
========================= */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .hero .btn {
    padding: 0.7rem 1rem;
    font-size: 14px;
  }

  .client-card {
    width: 160px;
  }
}
/*30/08/2025 mobile view updated end */

/*remove gap between the hero section start*/

/* Mobile & small tablet adjustments */

/* Mobile & small tablet adjustments */
/* Mobile & small tablet adjustments */
/* Reset body/html for mobile */
/* Mobile view: remove all top/bottom gaps */
/* Remove top and bottom gaps on all mobile devices */

/* Mobile view: remove all gaps for hero-content */
/* MOBILE VIEW ONLY */
/* MOBILE VIEW ONLY */
/* MOBILE VIEW ONLY */
/* MOBILE VIEW ONLY */
/* Mobile view: remove only top and bottom gaps for hero-content */
/* Mobile view: remove all gaps for hero-content */ 
@media only screen and (max-width: 1024px) { 
  .hero-content { 
     margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important; /* remove margin */ 
    padding: 0 !important; /* remove padding */ 
    gap: 0 !important; /* remove flex gap if any */ 
    display: flex; /* ensure flex behavior */ 
    flex-direction: column; /* vertical stacking */ 
    justify-content: flex-start; /* remove extra space at top */ 
    align-items: flex-start; /* align items to top/left */ 
  } 
 
}

/* Mobile view: center hero-content text horizontally */
@media only screen and (max-width: 1024px) {
  .hero-content h1,
  .hero-content p {
    text-align: center;    /* center text horizontally */
    margin-left: auto;     /* optional: ensure centering */
    margin-right: auto;    /* optional: ensure centering */
  }
}


/* bottom gap removed */
/*mi margintop: -700 madhe dile cover hoysathi te change karu shakto */
/* Mobile view: pull offer-section upward */
@media only screen and (max-width: 1024px) {
  .offer-section {
    margin-top: -700px !important; /* adjust the value as needed */
    padding-top: 30 !important;    /* remove any top padding */
  }

  /* Optional: ensure content inside stays aligned */
  .offer-section .section-title,
  .offer-section .text-content,
  .offer-section .director-tag {
    margin: 0;
    padding: 0;
    text-align: center; /* keep centered on mobile */
  }
}




/* Mobile view: center CTA button horizontally */
@media only screen and (max-width: 1024px) {
  .hero-content .cta-btn {
    display: block;          /* make it block to allow margin auto */
    margin-left: auto;       /* center horizontally */
    margin-right: auto;      /* center horizontally */
  }
}



/* Remove only navbar bottom gap on mobile devices */
@media only screen and (max-width: 1024px) {
  .navbar {
    margin-bottom: 0 !important; /* Remove bottom gap */
    padding-bottom: 0 !important; /* Ensure no padding at bottom */
  }
}










/*remove gap between the hero section  end*/