
    /* ===== ROOT VARIABLES ===== */
    :root {
      --primary: #e63535;
      --primary-hover: #c42828;
      --dark: #0f172a;
      --muted: #475569;
      --light-muted: #64748b;
      --light-bg: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

    /* ===== RESET ===== */
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--light-bg);
      color: var(--dark);
      line-height: 1.6;
    }

    /* ===== TYPOGRAPHY CONSISTENCY ===== */
    h1, h2, h3, h4, h5, h6 {
      color: var(--dark);
      font-weight: 700;
    }
    p, li, .text-body {
      color: var(--muted);
    }
    .text-light-muted {
      color: var(--light-muted);
    }

    /* ===== BUTTONS ===== */
    .btn-primary-custom {
      background: var(--primary);
      color: #fff !important;
      border-radius: 50px;
      padding: 0.7rem 2rem;
      font-weight: 600;
      border: none;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(230,53,53,0.25);
      text-decoration: none;
    }
    .btn-primary-custom:hover {
      background: var(--primary-hover);
      color: #fff !important;
      transform: translateY(-2px);
    }

    .btn-outline-custom {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary) !important;
      border-radius: 50px;
      padding: 0.7rem 2rem;
      font-weight: 600;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    .btn-outline-custom:hover {
      background: var(--primary);
      color: #fff !important;
    }

    .btn-outline-light {
      border: 2px solid #fff;
      color: #fff !important;
      border-radius: 50px;
      padding: 0.7rem 2rem;
      font-weight: 600;
      background: transparent;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    .btn-outline-light:hover {
      background: #fff;
      color: var(--dark) !important;
    }

    /* ===== NAVBAR ===== */
 /* ===== NAVBAR ===== */
    .navbar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .navbar-brand img {
      max-height: 65px;
      width: auto;
      object-fit: contain;
    }
    .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
      transition: 0.2s;
    }
    .nav-link:hover,
    .nav-link.active {
      color: var(--primary) !important;
    }

    /* Dropdown Styling */
    .dropdown-menu {
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 0.5rem;
      min-width: 220px;
    }
    .dropdown-menu .dropdown-item {
      border-radius: 8px;
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--dark);
      transition: 0.2s;
    }
    .dropdown-menu .dropdown-item:hover {
      background: #ffeae8;
      color: var(--primary);
    }
    .dropdown-menu .dropdown-item i {
      width: 20px;
      color: var(--primary);
      margin-right: 8px;
    }
    .dropdown-toggle::after {
      margin-left: 6px;
    }

    /* ===== HERO CAROUSEL ===== */
    .hero-banner .carousel-item {
      height: 750px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .hero-banner .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.3) 100%);
      z-index: 1;
    }
    .hero-banner .container {
      position: relative;
      z-index: 2;
      height: 100%;
    }
    .hero-banner h1 {
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #fff;
    }
    .hero-banner p {
      color: rgba(255,255,255,0.9);
    }
    .text-accent { color: #ff4d4d; }

    .carousel-indicators [data-bs-target] {
      background-color: var(--primary);
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    /* ===== ABOUT ===== */
    .about-section {
      background: var(--white);
      padding: 4rem 0;
    }
    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ffeae8;
      color: var(--primary);
      padding: 0.35rem 1.2rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .about-heading {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--dark);
    }
    .about-description {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .about-description strong {
      color: var(--dark);
    }
    .about-list {
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .about-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 500;
      color: var(--dark);
    }
    .bullet-box {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 2px;
      flex-shrink: 0;
    }
    .btn-about {
      display: inline-block;
      background: var(--primary);
      color: #fff !important;
      padding: 0.75rem 1.75rem;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 4px 12px rgba(230,53,53,0.25);
    }
    .btn-about:hover {
      background: var(--primary-hover);
      color: #fff !important;
      transform: translateY(-2px);
    }
    .about-img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 1rem;
      box-shadow: var(--shadow);
    }

    /* ===== PRODUCTS ===== */
    .product-card {
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      background: #fff;
      border: 1px solid var(--border);
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    }
    .product-card h5 {
      color: var(--dark);
    }
    .product-card p {
      color: var(--muted);
    }
    .slider-arrow {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 50%;
      color: #222;
      font-size: 1.2rem;
      cursor: pointer;
      transition: 0.2s;
      z-index: 5;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .slider-arrow:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .text-danger-link {
      color: var(--primary) !important;
      text-decoration: none;
      font-weight: 600;
    }
    .text-danger-link:hover {
      color: var(--primary-hover) !important;
    }

    /* ===== TRUSTED LOGOS ===== */
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .logo-card {
      background: #fff;
      border: 1px solid #eaeaea;
      border-radius: 8px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
    .logo-card img {
      max-width: 80%;
      max-height: 55%;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: 0.3s;
    }
    .logo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    }
    .logo-card:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-card {
      flex: 0 0 calc(33.333% - 16px);
      background: #f8fafc;
      border: 1px solid #eaeaea;
      border-radius: 12px;
      padding: 28px 24px;
      transition: all 0.25s ease;
    }
    .testimonial-card:hover {
      background: #fff;
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
    .stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 0.75rem; }
    .review-text {
      font-style: italic;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }
    .client-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      overflow: hidden;
      background: #ddd;
      flex-shrink: 0;
    }
    .client-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .client-details h6 {
      color: var(--dark);
      margin-bottom: 0;
    }
    .client-details span {
      color: var(--light-muted);
      font-size: 0.8rem;
    }

    /* ===== YOUTUBE ===== */
    .yt-card {
      flex: 0 0 calc(33.333% - 14px);
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      border: 1px solid #e2e2e2;
      transition: 0.25s;
    }
    .yt-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
 .yt-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.yt-thumbnail {
    background-color: #000; 
}
    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: #e31e24;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: 0.25s;
    }
    .play-btn .play-icon { color: #fff; font-size: 1.2rem; margin-left: 4px; }
    .yt-card:hover .play-btn {
      transform: translate(-50%, -50%) scale(1.08);
      background: #ff0000;
    }
    .yt-details { padding: 16px; }
    .yt-details h3 {
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.4;
      color: var(--dark);
    }

    /* ===== SCROLL CONTAINERS ===== */
    .youtube-carousel,
    .testimonial-carousel,
    .product-grid {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding-bottom: 8px;
    }
    .youtube-carousel::-webkit-scrollbar,
    .testimonial-carousel::-webkit-scrollbar,
    .product-grid::-webkit-scrollbar { display: none; }

    .arrow-btn {
      background: #f8f9fa;
      border: 1px solid #ddd;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.1rem;
      transition: 0.2s;
      color: var(--dark);
    }
    .arrow-btn:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    /* ===== SECTION HEADINGS ===== */
    .section-title {
      color: var(--dark);
      font-weight: 700;
    }
    .section-subtitle {
      color: var(--light-muted);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      color: #94a3b8;
    }
    .footer h4,
    .footer h6 { color: #fff; }
    .footer p {
      color: #94a3b8;
    }
    .footer a { color: #94a3b8; text-decoration: none; transition: 0.2s; }
    .footer a:hover { color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1.5rem;
      margin-top: 2.5rem;
    }
    .footer-bottom p {
      color: #94a3b8;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .logo-grid { grid-template-columns: repeat(3, 1fr); }
      .testimonial-card { flex: 0 0 calc(50% - 12px); }
      .yt-card { flex: 0 0 calc(50% - 10px); }
    }
    @media (max-width: 576px) {
      .hero-banner .carousel-item { height: 460px; }
      .logo-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonial-card,
      .yt-card { flex: 0 0 85%; }
      .about-heading { font-size: 1.8rem; }
    }

        /* ===== About Page ===== */


    /* ===== PAGE HERO ===== */
    .page-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 4rem 0 3rem;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
     /* content: "ABOUT";*/
      position: absolute;
      right: -30px;
      top: -40px;
      font-size: 12rem;
      font-weight: 800;
      color: rgba(255,255,255,0.03);
      letter-spacing: 0.1em;
      z-index: 0;
    }
    .page-hero::after {
      /*content: "US";*/
      position: absolute;
      right: 20px;
      bottom: -30px;
      font-size: 8rem;
      font-weight: 800;
      color: rgba(255,255,255,0.03);
      letter-spacing: 0.05em;
      z-index: 0;
    }
    .page-hero .container {
      position: relative;
      z-index: 1;
    }
    .page-hero h1 {
      color: #fff;
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }
    .page-hero .breadcrumb {
      background: transparent;
      padding: 0;
      margin: 0;
    }
    .page-hero .breadcrumb-item a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: 0.2s;
    }
    .page-hero .breadcrumb-item a:hover {
      color: var(--primary);
    }
    .page-hero .breadcrumb-item.active {
      color: #fff;
    }
    .page-hero .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255,255,255,0.4);
      content: "/";
    }
    .page-hero .sub-text {
      color: rgba(255,255,255,0.7);
      font-size: 1.1rem;
      max-width: 500px;
    }

    /* ===== ABOUT SECTION ===== */
    .about-section {
      padding: 4rem 0;
      background: var(--white);
    }
    .about-section .about-img {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      border-radius: 1rem;
      box-shadow: var(--shadow);
    }
    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ffeae8;
      color: var(--primary);
      padding: 0.35rem 1.2rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .about-heading {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--dark);
    }
    .about-description {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .about-description strong {
      color: var(--dark);
    }
    .about-list {
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .about-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 500;
      color: var(--dark);
    }
    .bullet-box {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* ===== MISSION VISION ===== */
    .mission-vision-section {
      padding: 4rem 0;
      background: var(--light-bg);
    }
    .mv-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .mv-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }
    .mv-card .icon-box {
      width: 70px;
      height: 70px;
      background: #ffeae8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      font-size: 2rem;
      color: var(--primary);
    }
    .mv-card h4 {
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .mv-card p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* ===== WHY CHOOSE US ===== */
    .why-section {
      padding: 4rem 0;
      background: var(--white);
    }
    .why-card {
      background: var(--light-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }
    .why-card .icon-box {
      width: 55px;
      height: 55px;
      background: #ffeae8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.3rem;
      color: var(--primary);
    }
    .why-card h5 {
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.05rem;
    }
    .why-card p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    /* ===== TEAM SECTION ===== */
    .team-section {
      padding: 4rem 0;
      background: var(--light-bg);
    }
    .team-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      text-align: center;
      height: 100%;
    }
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
    .team-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }
    .team-card .team-info {
      padding: 1.5rem;
    }
    .team-card .team-info h5 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .team-card .team-info span {
      color: var(--light-muted);
      font-size: 0.9rem;
    }
    .team-card .team-social {
      margin-top: 0.75rem;
      display: flex;
      justify-content: center;
      gap: 0.75rem;
    }
    .team-card .team-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--light-bg);
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
      text-decoration: none;
    }
    .team-card .team-social a:hover {
      background: var(--primary);
      color: #fff;
    }

    /* ===== COUNTERS ===== */
    .counter-section {
      padding: 3rem 0;
      background: var(--dark);
    }
    .counter-item {
      text-align: center;
      padding: 1.5rem;
    }
    .counter-item .counter-number {
      font-size: 3rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
    }
    .counter-item .counter-label {
      color: rgba(255,255,255,0.6);
      font-weight: 500;
      margin-top: 0.25rem;
    }


    /* ===== Contact Page ===== */

     /* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 4rem 0;
      background: var(--white);
    }

    /* Contact Info Cards */
    .contact-info-card {
      background: var(--light-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .contact-info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }
    .contact-info-card .icon-box {
      width: 60px;
      height: 60px;
      background: #ffeae8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: var(--primary);
    }
    .contact-info-card h5 {
      color: var(--dark);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .contact-info-card p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 0.95rem;
    }
    .contact-info-card a {
      color: var(--muted);
      text-decoration: none;
    }
    .contact-info-card a:hover {
      color: var(--primary);
    }

    /* Contact Form */
    .contact-form-wrapper {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: var(--shadow);
    }
    .contact-form-wrapper h3 {
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .contact-form-wrapper .form-label {
      font-weight: 500;
      color: var(--dark);
    }
    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
      transition: 0.2s;
    }
    .contact-form-wrapper .form-control:focus,
    .contact-form-wrapper .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(230,53,53,0.15);
    }
    .contact-form-wrapper textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    /* Google Map */
    .map-wrapper {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .map-wrapper iframe {
      width: 100%;
      height: 380px;
      display: block;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark);
      color: #94a3b8;
    }
    .footer h4,
    .footer h6 { color: #fff; }
    .footer p {
      color: #94a3b8;
    }
    .footer a { color: #94a3b8; text-decoration: none; transition: 0.2s; }
    .footer a:hover { color: var(--primary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1.5rem;
      margin-top: 2.5rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .page-hero h1 { font-size: 2rem; }
      .page-hero::before { font-size: 6rem; right: -20px; top: -10px; }
      .page-hero::after { font-size: 2.5rem; right: -10px; bottom: -10px; }
      .contact-form-wrapper { padding: 1.5rem; }
      .map-wrapper iframe { height: 250px; }
    }

      /* ===== PRODUCT DETAIL ===== */
    .product-detail-section {
  padding: 4rem 0;
      background: var(--white);
    }

    .product-image-wrapper {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow);
    }
    .product-image-wrapper img {
      max-width: 100%;
      max-height: 400px;
      object-fit: contain;
    }

    .product-info h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .product-info .product-tag {
      display: inline-block;
      background: #ffeae8;
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .product-info .product-desc {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .product-info .product-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .product-info .product-meta .meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
    }
    .product-info .product-meta .meta-item i {
      color: var(--primary);
      font-size: 1.2rem;
    }

    /* ===== MATERIALS SECTION ===== */
    .materials-section {
      padding: 2.5rem 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .materials-section h3 {
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .material-tag {
      display: inline-block;
      background: var(--light-bg);
      border: 1px solid var(--border);
      color: var(--dark);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
      margin: 0.25rem;
      transition: 0.2s;
    }
    .material-tag:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    /* ===== SPECIFICATION TABLE ===== */
    .spec-section {
      padding: 3rem 0;
      background: var(--light-bg);
    }
    .spec-table {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .spec-table table {
      width: 100%;
      margin-bottom: 0;
    }
    .spec-table table tr {
      border-bottom: 1px solid var(--border);
    }
    .spec-table table tr:last-child {
      border-bottom: none;
    }
    .spec-table table td {
      padding: 0.9rem 1.5rem;
      font-size: 0.95rem;
    }
    .spec-table table td:first-child {
      font-weight: 600;
      color: var(--dark);
      width: 35%;
      background: var(--light-bg);
    }
    .spec-table table td:last-child {
      color: var(--muted);
    }

    /* ===== FEATURES ===== */
    .features-section {
      padding: 3rem 0;
      background: var(--white);
    }
    .feature-card {
      background: var(--light-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }
    .feature-card .icon-box {
      width: 60px;
      height: 60px;
      background: #ffeae8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.75rem;
      font-size: 1.5rem;
      color: var(--primary);
    }
    .feature-card h5 {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }
    .feature-card p {
      font-size: 0.85rem;
      margin-bottom: 0;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 3rem 0;
      background: var(--dark);
      text-align: center;
    }
    .cta-section h3 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .cta-section p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 1.5rem;
    }


/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

