 
      :root {
        /* Color adjustments to better suit a retail store feel, slightly warmer blues */
        --primary-blue: #004c99; /* Deep, rich blue */
        --secondary-blue: #007bff; /* Brighter blue */
        --accent-gold: #ffc107; /* Brighter, vibrant gold */
        --text-dark: #212529;
        --text-light: #6c757d;
        --bg-light: #f8f9fa;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        overflow-x: hidden;
      }

      html {
        scroll-behavior: smooth;
      }

      /* Navigation with white theme and non-fixed */
      .navbar {
        background: #ffffff; /* White background */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        transition: all 0.3s;
      }

      .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-blue) !important;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
      }

      .navbar-brand img {
        height: 40px; /* Adjust size as needed */
        margin-right: 10px;
      }

      .navbar-nav .nav-link {
        color: var(--primary-blue) !important; /* Dark text color */
        font-weight: 500;
        margin: 0 0.5rem;
        transition: all 0.3s;
        position: relative;
      }

      .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-gold);
        transition: all 0.3s;
        transform: translateX(-50%);
      }

      .navbar-nav .nav-link:hover::after {
        width: 80%;
      }

      .navbar-nav .nav-link:hover {
        color: var(--accent-gold) !important;
      }
      
      .navbar-toggler {
          border-color: rgba(0, 76, 153, 0.1);
      }
      
      .navbar-toggler-icon {
          background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 76, 153, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
      }

      .btn-cta {
        background: var(--accent-gold);
        color: var(--primary-blue);
        font-weight: 600;
        padding: 0.6rem 1.8rem;
        border-radius: 30px;
        border: none;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
      }

      .btn-cta:hover {
        background: white;
        color: var(--primary-blue);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
      }

      /* Hero Section with animated gradient */
      .hero {
        background: linear-gradient(
          135deg,
          #004c99 0%,
          #007bff 50%,
          #004c99 100%
        ); /* Adjusted Primary Blue */
        background-size: 200% 200%;
        animation: gradientShift 15s ease infinite;
        color: white;
        padding: 100px 0; /* Adjusted for non-fixed navbar */
        padding-top: 140px; /* Added extra padding to clear the non-fixed navbar */
        position: relative;
        overflow: hidden;
      }

      @keyframes gradientShift {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

    .hero {
  position: relative;
  background: url('/images/header.png') center/cover no-repeat;
  background-blend-mode: multiply;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
  z-index: 1;
}


      .hero-content {
        position: relative;
        z-index: 1;
      }

      .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        line-height: 1.2;
      }

      .hero-subtext {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        line-height: 1.6;
      }

      .hero-buttons .btn {
        margin: 0.5rem;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s;
      }

      .btn-primary-hero {
        background: var(--accent-gold);
        color: var(--primary-blue);
        border: none;
        box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
      }

      .btn-primary-hero:hover {
        background: white;
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
      }

      .btn-secondary-hero {
        background: transparent;
        color: white;
        border: 3px solid white;
      }

      .btn-secondary-hero:hover {
        background: white;
        color: var(--primary-blue);
        transform: translateY(-5px);
      }

      .hero-contact {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        font-size: 1.1rem;
      }

      .hero-contact i {
        color: var(--accent-gold);
        margin-right: 0.5rem;
      }

      /* Section Styles */
      section {
        padding: 100px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
      }

      .section-title h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
      }

      .section-title h2::before {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--accent-gold);
        border-radius: 2px;
      }

      .section-title p {
        color: var(--text-light);
        font-size: 1.1rem;
        margin-top: 1.5rem;
      }

      /* About Section */
      #about {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      }

      .about-content {
        font-size: 1.15rem;
        line-height: 1.9;
        color: var(--text-light);
      }

      .about-highlights {
        list-style: none;
        padding: 0;
      }

      .about-highlights li {
        padding: 1.2rem;
        margin-bottom: 1rem;
        background: white;
        border-radius: 10px;
        border-left: 4px solid var(--primary-blue);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        font-size: 1.1rem;
      }

      .about-highlights li:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      }

      .about-highlights li i {
        color: var(--primary-blue);
        margin-right: 1rem;
        font-size: 1.5rem;
      }

      .stats {
        text-align: center;
        margin-top: 4rem;
      }

      .stat-item {
        padding: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s;
      }

      .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 76, 153, 0.2);
      }

      .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: block;
      }

      .stat-label {
        color: var(--text-light);
        font-size: 1.1rem;
        margin-top: 0.5rem;
      }

      /* Products Section - Focused on Retail Categories */
      .product-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.4s;
        height: 450px;
      }

      .product-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      }

      .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s;
      }

      .product-card:hover img {
        transform: scale(1.1);
      }

      .product-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 2.5rem;
        color: white;
        transform: translateY(20px);
        transition: all 0.4s;
      }

      .product-card:hover .product-overlay {
        transform: translateY(0);
      }

      .product-overlay h4 {
        font-weight: 700;
        margin-bottom: 0.8rem;
        font-size: 1.5rem;
      }

      .product-overlay p {
        opacity: 0;
        transition: all 0.4s;
      }

      .product-card:hover .product-overlay p {
        opacity: 1;
      }

      /* Services Section - Renamed to 'Offerings' and tailored for retail/custom */
      #offerings {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      }

      .service-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        transition: all 0.4s;
        height: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(
          90deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        transform: scaleX(0);
        transition: all 0.4s;
      }

      .service-card:hover::before {
        transform: scaleX(1);
      }

      .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 40px rgba(0, 76, 153, 0.2);
      }

      .service-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        margin: 0 auto 1.5rem;
        transition: all 0.4s;
      }

      .service-card:hover .service-icon {
        transform: rotateY(360deg);
        box-shadow: 0 10px 30px rgba(0, 76, 153, 0.4);
      }

      .service-card h4 {
        color: var(--primary-blue);
        margin-bottom: 1rem;
        font-weight: 700;
        font-size: 1.3rem;
      }

      .service-card p {
        color: var(--text-light);
        line-height: 1.7;
      }

      /* Owner/Experience Section - Replacing 'Process' */
      #owner-experience {
        background: var(--bg-light);
      }

      .experience-card {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .experience-card i {
        font-size: 4rem;
        color: var(--accent-gold);
        margin-bottom: 1.5rem;
      }

      .experience-card h5 {
        color: var(--primary-blue);
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 1rem;
      }

      .experience-card p {
        color: var(--text-dark);
        font-size: 1.1rem;
        line-height: 1.8;
      }

      .owner-quote {
        margin-top: 2rem;
        font-style: italic;
        color: var(--secondary-blue);
      }

      /* Testimonials - No major change, just color consistency */
      #testimonials {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      }

      .testimonial-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 1rem;
        position: relative;
        transition: all 0.4s;
      }

      .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }

      .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 30px;
        font-size: 6rem;
        color: var(--primary-blue);
        opacity: 0.15;
        font-family: Georgia, serif;
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--text-light);
        font-size: 1.1rem;
        line-height: 1.8;
      }

      .testimonial-author {
        font-weight: 700;
        color: var(--primary-blue);
        font-size: 1.1rem;
      }

      .testimonial-company {
        color: var(--text-light);
        font-size: 0.95rem;
      }

      /* Contact Section - No major change, just color consistency */
      #contact {
        background: linear-gradient(135deg, #004c99 0%, #007bff 100%);
        color: white;
      }

      #contact .section-title h2 {
        color: white;
      }

      #contact .section-title h2::before {
        background: var(--accent-gold);
      }

      .contact-item {
        display: flex;
        align-items: start;
        margin-bottom: 2rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: all 0.3s;
      }

      .contact-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(10px);
      }

      .contact-item i {
        font-size: 1.8rem;
        color: var(--accent-gold);
        margin-right: 1.5rem;
        width: 50px;
      }

      .contact-form {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
      }

      .contact-form .form-control,
      .contact-form .form-select {
        border: 2px solid #e0e0e0;
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        transition: all 0.3s;
      }

      .contact-form .form-control:focus,
      .contact-form .form-select:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 76, 153, 0.25);
        transform: translateY(-2px);
      }

      .contact-form label {
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .submit-btn {
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        color: white;
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.4s;
        box-shadow: 0 5px 20px rgba(0, 76, 153, 0.4);
      }

      .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 76, 153, 0.6);
      }

      /* Footer */
      footer {
        background: #1a1a1a;
        color: white;
        padding: 4rem 0 1rem;
      }

      footer h5 {
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--accent-gold);
      }

      .footer-links {
        list-style: none;
        padding: 0;
      }

      .footer-links li {
        margin-bottom: 0.8rem;
      }

      .footer-links a {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s;
      }

      .footer-links a:hover {
        color: var(--accent-gold);
        padding-left: 10px;
      }

      .social-icons a {
        display: inline-block;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 45px;
        margin: 0 0.5rem;
        transition: all 0.4s;
      }

      .social-icons a:hover {
        background: var(--accent-gold);
        color: var(--primary-blue);
        transform: translateY(-5px) rotate(360deg);
      }

      .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        color: #999;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.2rem;
        }

        .hero-subtext {
          font-size: 1.1rem;
        }

        .section-title h2 {
          font-size: 2.2rem;
        }

        .hero {
          padding: 120px 0 80px;
        }
        
        .navbar-brand img {
            height: 30px;
        }
      }
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1ED760, #14C554);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  animation: floatUpDown 2.2s ease-in-out infinite;
  z-index: 9999;
  cursor: pointer;
  transition: 0.3s ease;
   text-decoration: none !important;
}

/* WhatsApp Icon */
.whatsapp-float i {
  font-size: 32px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Up–Down Animation */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
/* Map Card */
.map-card {
  flex: 1;
  min-width: 320px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 2px solid #e0e0e0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}
.skyx-link {
  color: #ffffff; /* normal text color */
  text-decoration: none;
  font-weight: 600;
}

.skyx-link .x-red {
  color: red !important;
  font-weight: 700;
}

.skyx-link:hover {
  opacity: 0.8;
}
