
    /* ===== FONTS ===== */
    /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap'); */
    
    /* ===== BASIC RESET ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-color: #ff7b00;
      --secondary-color: #cc6300;
      --accent-color: #ff9500;
      --text-dark: #333;
      --text-light: #666;
      --bg-light: #fffaf3;
      --bg-white: #ffffff;
      --shadow: 0 5px 15px rgba(0,0,0,0.1);
      --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      overflow-x: hidden;
      scroll-behavior: smooth;
      
    }

    /* ===== LOADING SCREEN ===== */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  gap: 15px;
  font-family: Arial, sans-serif;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 123, 0, 0.25);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
    /* ===== HEADER ===== */
    header {
      background-color: var(--bg-white);
      color: var(--primary-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 50px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 8px 50px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    header img {
      height: 70px;
      width: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    header img:hover {
      transform: scale(1.05);
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav a {
      color: var(--primary-color);
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      position: relative;
      transition: color 0.3s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: width 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: var(--secondary-color);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--primary-color);
      cursor: pointer;
      z-index: 101;
      transition: transform 0.3s ease;
    }

    .mobile-menu-btn:hover {
      transform: scale(1.1);
    }

    /* ===== HERO SECTION ===== */
    .hero {
  background-color: var(--primary-color); /* Add a fallback background color */
  background-image: 
    linear-gradient(135deg, rgba(255,123,0,0.7), rgba(255,149,0,0.5));
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 200%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      animation: shine 3s infinite;
    }

    @keyframes shine {
      0% { left: -100%; }
      20% { left: 100%; }
      100% { left: 100%; }
    }

    .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}

    .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,123,0,0.35), rgba(255,149,0,0.25));
  z-index: 1;
}
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: 800px;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero h2 {
      font-size: 3.5em;
      font-weight: 800;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .hero p {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1.2em;
      line-height: 1.6;
      font-weight: 400;
    }

    .btn {
      background-color: var(--primary-color);
      color: white;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1em;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(139, 67, 0, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px #e47a1680;
    }

    .btn-secondary {
      background-color: transparent;
      border: 2px solid white;
      margin-left: 15px;
    }

    .btn-secondary:hover {
      background-color: white;
      color: var(--primary-color);
    }

    /* ===== STATS SECTION ===== */
    .stats {
      padding: 80px 50px;
      color:darkorange ;
      text-align: center;
    }

    .stats-container {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }

    .stat-item {
      flex-basis: 200px;
      margin: 20px;
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-10px);
    }

    .stat-number {
      font-size: 3em;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 1.2em;
      font-weight: 500;
    }

    /* ===== ABOUT SECTION ===== */
    .about {
      text-align: center;
      padding: 80px 50px;
      background-color: var(--bg-white);
      position: relative;
    }

    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }

    .section-title {
      color: gray;
      font-size: 2.5em;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--primary-color);
    }

    .about-content {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      margin: 50px auto 0;
      gap: 50px;
    }

    .about-text {
      flex: 1;
      text-align: left;
    }

    .about-text p {
      color: var(--text-light);
      line-height: 1.8;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .about-image {
      flex: 1;
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: 400px; /* Set a fixed height */
      object-fit: cover; /* This ensures the image covers the area without distortion */
      border-radius: 15px;
      box-shadow: var(--shadow);
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.03);
    }

    .about-image::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: 20px;
      bottom: 20px;
      border: 3px solid var(--primary-color);
      border-radius: 15px;
      z-index: -1;
    }

    /* ===== CATEGORIES ===== */
    .categories {
      padding: 80px 15px;
      text-align: center;
      background-color: var(--bg-light);
      position: relative;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 50px auto 0;
    }

    .category {
      background: var(--bg-white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      
    }

    .category::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .category:hover::before {
      transform: scaleX(1);
    }

    .category:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .category-image {
      height: 200px;
      overflow: hidden;
      position: relative;
      background-color: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .category-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from 'cover' to 'contain' */
  transition: transform 0.5s ease;
  display: block;
  max-width: 100%;
}

    .category-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      
    }

    .category h4 {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 12px;
    }

    .category p {
      color: var(--text-light);
      line-height: 1.5;
      margin-bottom: 15px;
      font-size: 0.95em;
      flex-grow: 1;
      
    }

    .category-link {
      color: var(--primary-color);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
      align-self: flex-start;
    }

    .category-link i {
      margin-left: 5px;
      transition: transform 0.3s ease;
    }

    .category-link:hover i {
      transform: translateX(5px);
    }

    /* ===== PROCESS SECTION ===== */
    .process {
      padding: 80px 50px;
      background-color: var(--bg-white);
      text-align: center;
    }

    .process-container {
      display: flex;
      justify-content: space-between;
      max-width: 1200px;
      margin: 50px auto 0;
      position: relative;
    }

    .process-container::before {
      content: '';
      position: absolute;
      top: 50px;
      left: 50px;
      right: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      z-index: 0;
    }

    .process-step {
      flex: 1;
      position: relative;
      z-index: 1;
      padding: 0 15px;
    }

    .step-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 2em;
      box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .process-step:hover .step-icon {
      transform: scale(1.1);
    }

    .step-title {
      font-size: 1.3em;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .step-description {
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ===== MISSION & VALUES SECTION ===== */
    .mission-values {
      padding: 80px 50px;
      background-color: var(--bg-light);
      text-align: center;
    }

    .mission-container {
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .mission-statement {
      font-size: 1.4em;
      line-height: 1.6;
      color: var(--text-dark);
      font-weight: 500;
      font-style: italic;
      position: relative;
      padding: 0 30px;
    }

    .mission-statement::before,
    .mission-statement::after {
      content: '"';
      font-size: 3em;
      color: var(--primary-color);
      position: absolute;
      opacity: 0.5;
    }

    .mission-statement::before {
      top: -20px;
      left: 0;
    }

    .mission-statement::after {
      bottom: -40px;
      right: 0;
    }

    .values-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .value-item {
      flex-basis: 220px;
      background: var(--bg-white);
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      text-align: center;
    }

    .value-item:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .value-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 1.8em;
      box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .value-item:hover .value-icon {
      transform: scale(1.1);
    }

    .value-title {
      font-size: 1.2em;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .value-description {
      color: var(--text-light);
      line-height: 1.5;
      font-size: 0.95em;
    }

    /* ===== CERTIFICATIONS ===== */
.certifications {
  background-color: var(--bg-white);
  padding: 80px 50px;
  text-align: center;
}

.certifications p {
  max-width: 800px;
  margin: 20px auto 50px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1em;
}

.certification-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.certification-item {
  transition: all 0.3s ease;
}

.certification-item:hover {
  transform: scale(1.1);
}

/* Removed grayscale */
.certification-logos img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* No hover filter */
.certification-item:hover img {
  transform: scale(1.1);
}


    /* ===== CONTACT SECTION ===== */
    .contact {
      padding: 80px 50px;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      color: white;
      text-align: center;
    }

    .contact-container {
      display: flex;
      justify-content: space-between;
      max-width: 1200px;
      margin: 50px auto 0;
      gap: 50px;
    }

    .contact-info, .contact-form {
      flex: 1;
      background: rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 15px;
      backdrop-filter: blur(10px);
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      text-align: left;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 20px;
      font-size: 1.2em;
    }

    .contact-details h4 {
      font-size: 1.2em;
      margin-bottom: 5px;
    }

    .contact-details p {
      opacity: 0.9;
    }

    /* ===== FOOTER ===== */
    footer {
      background-color: #333;
      color: white;
      padding: 60px 50px 20px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto 40px;
    }

    .footer-section {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
      padding-right: 30px;
    }

    .footer-section h3 {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-section h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
    }

    .footer-section p,
    .footer-section ul {
      color: #ccc;
      line-height: 1.8;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 10px;
      transition: transform 0.3s ease;
    }

    .footer-section ul li:hover {
      transform: translateX(5px);
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--primary-color);
    }
    .footer-section a.admin-btn {
  background: white;
  color: #ff9500;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
}

.footer-section a.admin-btn:hover {
  transform: translateY(-3px);
  color: #cc6300;
  box-shadow: 0 5px 15px rgba(255, 170, 0, 0.79);
}
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary-color);
      transform: translateY(-5px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      font-size: 0.9em;
    }

    /* ===== BACK TO TOP BUTTON ===== */
    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2em;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: var(--secondary-color);
      transform: translateY(-5px);
    }
    
/* ===== CONTACT FORM STYLING ===== */

/* Style for each form group (input container) */
.contact-form .form-group {
  margin-bottom: 20px;
}

/* Style for all input fields and textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Semi-transparent border */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  transition: all 0.3s ease;
}

/* Style for the placeholder text */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888; /* A medium gray for placeholders */
}

/* Focus state for input fields and textarea */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bg-white); /* Solid white border on focus */
  background-color: var(--bg-white); /* Solid white background on focus */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Ensure the submit button takes full width and has consistent styling */
.contact-form .btn {
  width: 100%;
  padding: 15px;
  border: none;
  margin-top: 10px;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect for the submit button */
.contact-form .btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(228, 122, 22, 0.5);
}
.category-link-wrapper{text-decoration:none;}
/* Style for the form message feedback div */
#formMessage {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
  display: none; /* Hidden by default */
  text-align: center;
}

/* Style for a success message (to be toggled with JavaScript) */
#formMessage.success {
  background-color: rgba(40, 167, 69, 0.9); /* Green with transparency */
  color: white;
  display: block;
  border: 1px solid rgba(40, 167, 69, 0.5);
}

/* Style for an error message (to be toggled with JavaScript) */
#formMessage.error {
  background-color: rgba(220, 53, 69, 0.9); /* Red with transparency */
  color: white;
  display: block;
  border: 1px solid rgba(220, 53, 69, 0.5);
}
    /* ===== WHATSAPP BUTTON ===== */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      z-index: 100;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
    }

    .whatsapp-btn.active {
      opacity: 1;
      visibility: visible;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      background-color: #128C7E;
    }

    .whatsapp-btn i {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== MOBILE MENU OVERLAY ===== */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 98;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
      }
      .about-image {
        width:90%;
      }
      .contact-container {
        flex-direction: column;
      }

      .process-container::before {
        display: none;
      }

    }

    @media (max-width: 768px) {
      header {
        padding: 10px 20px;
      }
      .about-image {
        min-height: 200px;
        width:100%;
      }
  
      .about-image img {
        height: 200px;
      }
      .mobile-menu-btn {
        display: block;
      }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
      }

      nav.active {
        right: 0;
      }

      nav a {
        margin: 15px 0;
        font-size: 1.2em;
        width: 100%;
      }

      .hero h2 {
        font-size: 2.5em;
      }

      .hero p {
        font-size: 1.1em;
      }
      .hero {
    height: 80vh; /* Full viewport height on mobile */
  }
  
  .hero-video {
    object-fit: contain; /* Show entire video without cropping */
    object-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .hero-overlay {
    background: linear-gradient(135deg, rgba(250, 157, 70, 0.7), rgba(255,149,0,0.5)); /* Darker overlay for better text visibility */
  }

      .btn-secondary {
        display: none;
      }

      .stats-container {
        flex-direction: column;
      }
        
      /* 3x3 Grid for Mobile Categories */
      .categories {
        padding: 60px 10px;
      }

      .categories-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 40px auto 0;
        max-width: 100%;
      }

      .category {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
      }

      .category:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      }

      .category-image {
        height: 100px; /* Increased height for better image display */
        background-color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 5px; /* Added padding to prevent edge cropping */
      }

      .category img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
        display: block;
        max-width: 100%;
        transition: transform 0.5s ease;
        border-radius: 5px; /* Added slight border radius */
      }

      .category:hover img {
        transform: scale(1.05); /* Reduced scale effect */
      }

      .category-content {
        padding: 12px 8px;
      }

      .category h4 {
        font-size: 0.95em;
        margin-bottom: 6px;
        line-height: 1.2;
      }

      .category p {
        font-size: 0.75em;
        line-height: 1.3;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        max-height: 3em; /* line-height * number of lines */
        overflow: hidden;
      }

      .category-link {
        font-size: 0.8em;
        padding: 4px 8px;
        border-radius: 15px;
        background: rgba(255, 123, 0, 0.1);
      }

      .category-link:hover {
        background: var(--primary-color);
        color: white;
      }

      .process-container {
        flex-direction: column;
        gap: 40px;
      }

      .footer-content {
        flex-direction: column;
      }

      /* WhatsApp button adjustments for mobile */
      .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6em;
      }
      
      .back-to-top {
        bottom: 85px;
        right: 20px;
      }
    }

    @media (max-width: 576px) {
      .hero h2 {
        font-size: 2em;
      }

      .section-title {
        font-size: 2em;
      }

      /* Further adjustments for very small screens */
      .categories {
        padding: 40px 8px;
      }

      .categories-grid {
        gap: 6px;
      }

      .category {
        border-radius: 8px;
      }

      .category-image {
        height: 90px; /* Adjusted height */
        background-color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 4px; /* Adjusted padding */
      }

      .category img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
        display: block;
        max-width: 100%;
        transition: transform 0.5s ease;
        border-radius: 4px; /* Adjusted border radius */
      }

      .category:hover img {
        transform: scale(1.05); /* Reduced scale effect */
      }

      .category-content {
        padding: 10px 6px;
      }

      .category h4 {
        font-size: 0.9em;
      }

      .category p {
        font-size: 0.7em;
      }

      .category-link {
        font-size: 0.75em;
        padding: 3px 6px;
      }
    }

    @media (max-width: 480px) {
      /* For very small phones - keep 3 columns but make them even smaller */
      .categories-grid {
        gap: 5px;
      }

      .category-image {
        height: 80px; /* Adjusted height */
        background-color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 3px; /* Adjusted padding */
      }

      .category img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
        display: block;
        max-width: 100%;
        transition: transform 0.5s ease;
        border-radius: 3px; /* Adjusted border radius */
      }

      .category:hover img {
        transform: scale(1.05); /* Reduced scale effect */
      }

      .category-content {
        padding: 8px 5px;
      }

      .category h4 {
        font-size: 0.85em;
      }

      .category p {
        font-size: 0.65em;
        max-height: 5em; /* line-height * number of lines */
        overflow: hidden;
      }
    }

    @media (max-width: 380px) {
      /* For extremely small phones - switch to 2 columns */
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .category-image {
        height: 95px; /* Adjusted height for 2-column layout */
        background-color: #f5f5f5;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 4px; /* Adjusted padding */
      }

      .category img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Changed from cover to contain */
        display: block;
        max-width: 100%;
        transition: transform 0.5s ease;
        border-radius: 4px; /* Adjusted border radius */
      }

      .category:hover img {
        transform: scale(1.05); /* Reduced scale effect */
      }

      .category-content {
        padding: 10px 8px;
      }

      .category h4 {
        font-size: 0.95em;
      }

      .category p {
        font-size: 0.75em;
        max-height: 2.6em; /* line-height * number of lines */
        overflow: hidden;
      }
    }

    /* ===== CONTACT SECTION MOBILE FIXES ===== */
    @media (max-width: 768px) {
      .contact {
        padding: 60px 20px;
      }
      
      .contact-container {
        flex-direction: column;
        gap: 30px;
      }
      
      .contact-info, .contact-form {
        padding: 30px 20px;
      }
      
      .contact-item {
        margin-bottom: 20px;
      }
      
      .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
      }
      
      .contact-details h4 {
        font-size: 1.1em;
      }
      
      .contact-details p {
        font-size: 0.95em;
      }
    }

    @media (max-width: 576px) {
      /* Further adjustments for very small screens */
      .contact {
        padding: 50px 15px;
      }
      
      .contact-info, .contact-form {
        padding: 25px 15px;
      }
      
      .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
      }
      
      .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
      }
    }