/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 999;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo img {
  height: 60px; /* Fixed height, width adjusts automatically */
  width: auto;
}

/* Nav Links */
.nav-links ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 8px 5px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 100;
}

.dropdown-menu li a {
  padding: 10px;
  color: #222;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Arrow Rotation on Click */
.dropdown.open > a i {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* Mobile */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background: #030303;
  transition: 0.3s;
  z-index: 999;
  padding: 20px;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .close-drawer {
  font-size: 28px;
  cursor: pointer;
  text-align: right;
}

.mobile-drawer ul {
  list-style: none;
  margin-top: 20px;
  color: rgb(255, 255, 255);
}

.mobile-drawer ul li {
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
}

.mobile-drawer ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  color: rgb(255, 255, 255);
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
  display: none;
  padding-left: 10px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media(max-width: 992px){
  .nav-links {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
}

@media(max-width: 768px){
  .logo img {
    height: 50px;
  }
}






    
.about-section {
  background: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
  color: #222;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1300px;
  position: relative;
}
.highlight-red {
  color: #e60000;
  font-weight: bold;
}

.about-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-img {
  flex: 1;
  position: sticky;
  top: 100px;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.5s, box-shadow 0.5s;
}

.about-img img:hover {
  transform: scale(1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.about-text {
  flex: 2;
}

.about-heading {
  display: inline-block;
  position: relative;
}

.about-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #e60000;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.heading-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #e60000, #ff4d4d);
  border-radius: 2px;
  margin: 8px auto 25px;
}

/* Force black text for paragraphs and lists */
.highlight-text,
.brand-list li {
  color: #000 !important;
  font-weight: 500;
  line-height: 1.5;
}

.brand-list {
  padding-left: 25px;
  list-style-type: none;
  margin-bottom: 20px;
}

.brand-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.brand-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #000 !important;
}

.brand-list li:hover {
  transform: translateX(0);
  color: #000 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    position: relative;
    top: auto;
  }

  .about-img img {
    max-width: 95%;
    margin-bottom: 20px;
  }

  .about-text {
    width: 100%;
  }

  .about-heading {
    display: block;
    text-align: center;
  }

  .about-heading h2 {
    font-size: 2.4rem;
  }

  .about-section {
    padding: 20px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 100;
  height: 100px; /* Fixed height */
  display: flex;
  align-items: center; /* Center vertically */
  padding: 0 20px;
}

.navbar-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo left, links right */
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 150px; /* Logo bada ho */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end; /* Links right aligned */
  align-items: center; /* Vertical center */
}

.nav-links ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links ul li a:hover {
  color: #27ae60;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #000;
  color: #fff;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 200;
}

.mobile-drawer ul {
  list-style: none;
  padding-left: 20px;
}

.mobile-drawer ul li {
  margin: 20px 0;
}

.mobile-drawer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-drawer.show {
  left: 0;
}

.close-drawer {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}



/* Hero / Banner */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px auto 0; /* navbar height offset */

  flex-wrap: wrap;
}

.hero-content {
  flex:1;
}

.hero-content h1 {
  font-size: 2.5rem;
  color:#27ae60;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-hero {
  display: inline-block;
  background:#27ae60;
  color:#fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-hero:hover {
  background:#1e8449;
}

.hero-image {
  flex:1;
  text-align:center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media(max-width:992px){
  .nav-links ul { display: none; }
  .mobile-menu-icon { display: block; }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}










/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  max-width: 250px;
}

.footer-brand .footer-logo {
  height: 100px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #27ae60;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #27ae60;
}

/* Responsive Footer */
@media(max-width: 768px){
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}















/* Dropdown - Desktop */
.nav-links ul li.dropdown {
  position: relative;
  cursor: pointer;
}

.nav-links ul li.dropdown .dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
  display: none; /* hide by default */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 50;
}

.nav-links ul li.dropdown .dropdown-menu li {
  padding: 10px 20px;
}

.nav-links ul li.dropdown .dropdown-menu li a {
  color: #333;
  font-weight: 500;
}

/* Show dropdown on hover */
.nav-links ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Show dropdown when open class is added via JS (click) */
.nav-links ul li.dropdown.open .dropdown-menu {
  display: block;
}

/* Add caret icon styling */
.nav-links ul li.dropdown > a,
.mobile-drawer ul li.mobile-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive adjustments */
@media(max-width:768px){
  .nav-links {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
}









/* About Section - White & Red Theme */
.about-section {
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow: hidden;
  background: #fdfdfd; /* light white */
}

.about-container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Image */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 1.5s ease;
  display: block;
}

/* Right Text Content */
.about-content {
  flex: 1;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1.5s ease;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #c0392b;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
  font-weight: 500;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-cards .card {
  background: #fff;
  border: 2px solid #c0392b;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1.5s ease;
}

.about-cards .card h5 {
  font-size: 1.3rem;
  color: #c0392b;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-cards .card .arrow {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.about-cards .card:hover .arrow {
  transform: translateX(5px);
}

.about-cards .card p {
  font-size: 0.95rem;
  color: #555;
}

/* Show elements when scroll into view */
.about-section.show .about-image,
.about-section.show .about-content,
.about-section.show .about-cards .card {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media(max-width: 992px){
  .about-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 768px){
  .about-container {
    flex-direction: column;
    align-items: center;
  }
  .about-image {
    order: 2;
    margin-top: 20px;
    width: 90%;
  }
  .about-content {
    order: 1;
    text-align: center;
    width: 90%;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
}










/* Brand Section */
.brand-section {
  padding: 20px 0 50px 0; /* top 20px, bottom 50px */
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.brand-header {
  text-align: center;
  margin-bottom: 50px;
}

.brand-header h1 {
  font-size: 2.5rem;
  color: #c0392b;
  font-weight: 700;
  line-height: 1.2; /* reduced line-height */
  margin-bottom: 15px;
}

.brand-header p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5; /* reduced for better spacing */
  max-width: 700px;
  margin: auto;
}

/* Brand Cards */
.brand-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.brand-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border: 2px solid #c0392b;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-card img {
  width: 100%;
  max-width: 150px;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* Hover effect */
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 992px){
  .brand-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media(max-width: 768px){
  .brand-header h1 {
    font-size: 2rem;
  }
  .brand-header p {
    font-size: 0.95rem;
  }

  .brand-container {
    flex-direction: column;
    align-items: center;
  }

  .brand-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}










.count-section {
  padding: 50px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.count-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.count-card {
  flex: 1 1 calc(25% - 20px);
  background: #c0392b;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.count-card h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.count-card p {
  font-size: 1rem;
  font-weight: 500;
}

/* Hover effect */
.count-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 992px){
  .count-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media(max-width: 768px){
  .count-container {
    flex-direction: column;
    align-items: center;
  }
  .count-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}





/* faq */
.faq-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  font-size: 2.5rem;
  color: #c0392b;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

/* FAQ Items */
.faq-item {
  background: #fff;
  border: 2px solid #c0392b;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease; /* slow animation */
}

.faq-item.show {
  transform: translateY(0);
  opacity: 1;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c0392b;
}

.faq-answer {
  padding: 0 20px 20px 20px;
  display: none;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

.faq-arrow.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Responsive */
@media(max-width:768px){
  .faq-container h2 {
    font-size: 2rem;
  }
}





.contact-section {
  padding: 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.5s ease;
}

.contact-section.show .contact-container {
  transform: translateY(0);
  opacity: 1;
}

.contact-container h2 {
  font-size: 2.5rem;
  color: #c0392b;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-container p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border: 2px solid #c0392b;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.contact-card i {
  font-size: 2rem;
  color: #c0392b;
  margin-bottom: 15px;
}

.contact-card h5 {
  font-size: 1.3rem;
  color: #c0392b;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-card p {
  font-size: 1rem;
  color: #555;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form-container {
  max-width: 700px;
  margin: auto;
  text-align: left;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1.5s ease;
}

.contact-section.show .contact-form-container {
  transform: translateY(0);
  opacity: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #c0392b;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e74c3c;
}

.contact-form button {
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  background: #c0392b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button span {
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  background: #e74c3c;
}

.contact-form button:hover span {
  transform: translateX(5px);
}

/* Responsive */
@media(max-width:768px){
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    width: 90%;
  }
  .contact-form-container {
    width: 90%;
  }
}

























.mobile-drawer {
  position: fixed;
  top:0;
  left:-250px;
  width: 250px;
  height: 100%;
  background:#111;
  color:#fff;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 200;
  overflow-y: auto;
}

.mobile-drawer.show { left: 0; }

.mobile-drawer ul {
  list-style: none;
  padding-left: 0;
}

.mobile-drawer ul li {
  margin: 20px 0;
  position: relative;
}

.mobile-drawer ul li a {
  color:#fff;
  text-decoration:none;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.close-drawer {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #222;
  margin-top: 5px;
  border-radius: 5px;
}

.mobile-dropdown-menu li a {
  padding: 10px 40px;
  font-size: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 500px; /* enough to show all items */
}




    /* Floating Contact Buttons */
    .floating-contact {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .contact-btn {
      background: #25D366; /* WhatsApp green */
      color: #fff;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 20px;
      text-decoration: none;
      transition: 0.3s;
      border: none;
      cursor: pointer;
    }

    .contact-btn.phone { background: #007bff; }
    .contact-btn.form-btn { background: #ff4b5c; }

    .contact-btn:hover {
      transform: scale(1.1);
    }

    /* Contact Form Modal */
    .contact-form-modal {
      display: none;
      position: fixed;
      z-index: 1500;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0,0,0,0.6);
    }

    .contact-form-content {
      background: #fff;
      margin: 10% auto;
      padding: 20px;
      width: 90%;
      max-width: 400px;
      border-radius: 10px;
      position: relative;
    }

    .contact-form-content h2 {
      text-align: center;
      margin-bottom: 15px;
    }

    .contact-form-content input,
    .contact-form-content textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border-radius: 5px;
      border: 1px solid #ccc;
      resize: none;
    }

    .contact-form-content button {
      width: 100%;
      padding: 10px;
      background: #25D366;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .contact-form-content button:hover {
      background: #128C7E;
    }

    .close-form {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 25px;
      cursor: pointer;
    }








    
.about-section {
  background: #fdfdfd;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
  color: #222;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1300px;
  position: relative;
}
.highlight-red {
  color: #e60000;
  font-weight: bold;
}

.about-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-img {
  flex: 1;
  position: sticky;
  top: 100px;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.5s, box-shadow 0.5s;
}

.about-img img:hover {
  transform: scale(1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.about-text {
  flex: 2;
}

.about-heading {
  display: inline-block;
  position: relative;
}

.about-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #e60000;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.heading-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #e60000, #ff4d4d);
  border-radius: 2px;
  margin: 8px auto 25px;
}

/* Force black text for paragraphs and lists */
.highlight-text,
.brand-list li {
  color: #000 !important;
  font-weight: 500;
  line-height: 1.5;
}

.brand-list {
  padding-left: 25px;
  list-style-type: none;
  margin-bottom: 20px;
}

.brand-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.brand-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #000 !important;
}

.brand-list li:hover {
  transform: translateX(0);
  color: #000 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    position: relative;
    top: auto;
  }

  .about-img img {
    max-width: 95%;
    margin-bottom: 20px;
  }

  .about-text {
    width: 100%;
  }

  .about-heading {
    display: block;
    text-align: center;
  }

  .about-heading h2 {
    font-size: 2.4rem;
  }

  .about-section {
    padding: 20px;
  }
}