* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #fff;
     margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('img/bg1.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    padding: 20px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #c2185b;
  }
  .about-section {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 80px 40px;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .about-text {
    flex: 1 1 500px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e91e63;
  }
  
  .about-text p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ccc;
  }
  
  .about-image {
    flex: 1 1 400px;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  }
  .featured-section {
    background-color: #121212;
    color: #f0f0f0;
    padding: 80px 40px;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #e91e63;
  }
  
  .section-header p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 50px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
  }
  
  .product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .product-info p {
    color: #e91e63;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .view-all {
    margin-top: 40px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #c2185b;
  }
  


/** {*/
/*  box-sizing: border-box;*/
/*  margin: 0;*/
/*  padding: 0;*/
/*}*/

/*body {*/
/*  font-family: Arial, sans-serif;*/
/*  background-color: #000;*/
/*  color: #fff;*/
/*}*/

/* Section Style */
.vision-section {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

/* Header */
.vision-section .section-header h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e91e63;
}

.vision-section .section-header p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
  padding: 0 10px;
}

/* Grid */
.vision-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .vision-grid {
    flex-direction: row;
    justify-content: center;
  }
}

/* Card Item */
.vision-item {
  flex: 1;
  max-width: 500px;
  margin: auto;
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.vision-item:hover {
  transform: scale(1.02);
}

/* Content */
.vision-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.vision-overlay span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e91e63;
  display: block;
  margin-bottom: 10px;
}

.vision-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}


  
  
 
/* Distributors */

  .distributors-line {
    background-color: #121212;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
  }
  
  .distributors-heading {
    font-size: 2.5rem;
    /* margin-bottom: 40px; */
    color: #e91e63;
  }
  .distributors-subheading {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .distributors-outer {
    overflow: hidden;
    width: 100%;
  }
  
  .distributors-track {
    display: flex;
    gap: 30px;
    width: calc(300px * 20); /* 20 logos width estimation */
    animation: scroll 40s linear infinite;
  }
  
  .distributor-item {
    flex: 0 0 auto;
    width: 250px;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }
  
  .distributor-item img {
    height: 80px;
    width: 90%;
    object-fit: contain;
  }
  
  /* Auto-scroll animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  

  .contact-section {
    background: linear-gradient(to right, #1a1a1a, #2c2c2c);
    color: #f0f0f0;
    padding: 60px 30px;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #e91e63;
  }
  
  .contact-section p {
    color: #ccc;
    margin-bottom: 30px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    width: 250px;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background-color: #e91e63;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #c2185b;
  }
  
  .social-proof-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
  }
  
  .social-icons a {
    font-size: 2rem;
    color: #e91e63;
    margin: 0 15px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  .embed-container {
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .embed-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  }

  .contact-section {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 60px 40px;
    text-align: center;
  }
  
  .contact-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e91e63;
  }
  
  .contact-section .section-header p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 40px;
  }
  
  .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .contact-logo img {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  .contact-details {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
  .contact-details p {
    font-size: 1rem;
    color: #ddd;
    margin: 10px 0;
  }
  
  .contact-details a {
    color: #e91e63;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  



  .site-footer {
    background-color: #0d0d0d;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-top h3 {
    font-size: 1.8rem;
    color: #e91e63;
  }
  
  .footer-top p {
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 20px;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .footer-social a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #e91e63;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
  }
  .designer-name {
    color: #e91e63; /* You can choose any color */
    font-weight: bold;
    text-decoration: none; /* To remove underline */
  }
  
  .designer-name:hover {
    color: #c2185b; /* Darker shade for hover effect */
    text-decoration: underline;
  }

  /* General Responsive Styles */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    height: auto;
    width: 80%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .product-info h3 {
    font-size: 1rem;
  }
  .vision-item {
    padding: 15px;
  }
  .vision-overlay {
    padding: 15px;
  }
  .container {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .cta-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .product-card img {
    height: 250px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 200px;
  }
  .footer-top h3 {
    font-size: 1.5rem;
  }
}

  

 
             