
      /* Import Fonts */
      @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

      /* Color Variables */
      /* :root {
        --blue-whale: #062d54;
        --porcelain: #eeeff0;
        --santas-gray: #959bab;
        --lynch: #757f9f;
        --lynch-2: #6c7c9c;
        --blue-haze: #c0c5d9;
        --gray-suit: #b4b4cc;
        --heather: #b4bccc;
        --mischka: #d4d4e4;
        --gunsmoke: #848c8c;
      } */

      /* 2nd color palete */

      :root {
        --blue-whale: #002956; /* Main Navy Blue (Navbar, Heading bg) */
        --porcelain: #f1f4f8; /* Soft Light Grayish Blue (Bg color) */
        --santas-gray: #4a637d; /* Muted Steel Blue (Buttons, Icon color) */
        --lynch-2: #d4d4e4; /* Dark Slate Blue (Text headings, Border) */
        --lynch: #5c7796; /* Medium Blue Gray (Hover states, badges) */
        --blue-haze: #7d98b3; /* Soft Dusty Blue (Accent bg, Cards bg) */
        --gray-suit: #aab8c6; /* Light Silver Blue (Secondary bg, footer) */
        --heather: #ccd6e3; /* Pale Sky Blue (Cards bg hover) */
        --mischka: #e8edf3; /* Lightest Gray Blue (Content bg, sections) */
        --gunsmoke: #334a5f; /* Deep Charcoal Blue (Strong Text, Borders) */
      }

      /* Reset & Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Montserrat", sans-serif;
        color: var(--blue-whale);
        background-color: var(--porcelain);
        line-height: 1.6;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      p {
        margin-bottom: 1rem;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .text-center {
        text-align: center;
      }

      .text-accent {
        color: var(--lynch);
      }

      .section-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
      }

      .section-divider {
        width: 100px;
        height: 3px;
        background-color: var(--lynch);
        margin: 0 auto 1.5rem;
      }

      .section-description {
        max-width: 700px;
        margin: 0 auto 2rem;
        color: var(--santas-gray);
      }

      .btn {
        display: inline-block;
        background-color: var(--blue-whale);
        color: white;
        padding: 12px 24px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
      }

      .btn:hover {
        background-color: var(--gunsmoke);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      section {
        padding: 80px 0;
      }

      /* Navigation */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(6, 45, 84, 0.95);
        color: white;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: bold;
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color 0.3s ease;
      }

      .nav-links a:hover {
        color: var(--blue-haze);
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--blue-haze);
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
      }

      .mobile-menu {
        display: none;
        background-color: var(--blue-whale);
        padding: 20px;
      }

      .mobile-menu a {
        display: block;
        color: white;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .mobile-menu a:hover {
        color: var(--blue-haze);
      }

      /* Hero Section */
      .hero-section {
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--blue-whale);
        background-image: url("../images/hero-sec-img1.png");
        background-size: cover;
        background-position: center;
        padding-top: 70px;
      }

      .hero-content {
        max-width: 800px;
        padding: 0 20px;
      }

      .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1rem;
      }

      .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 300;
      }

      /* About Section */
      .about-section {
        background-color: white;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 50px;
      }

      .feature-item {
        text-align: center;
        padding: 20px;
      }

      .feature-icon {
        font-size: 2rem;
        color: var(--lynch);
        margin-bottom: 15px;
      }

      /* Products Section */
      .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
      }

      .product-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      .product-image {
        height: 200px;
        background-color: var(--mischka);
        position: relative;
        overflow: hidden;
      }
      .product-image img {
        width: 100%;
        height: 100%;
        background-size: cover;
      }

      .product-content {
        padding: 20px;
      }

      .product-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
      }

      .product-description {
        color: var(--santas-gray);
        margin-bottom: 15px;
      }

      .product-link {
        color: var(--lynch);
        font-weight: 500;
      }

      .product-link:hover {
        text-decoration: underline;
      }

      /* Gallery Section */
      .gallery-section {
        background-color: white;
      }

      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
      }

      .gallery-item {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .gallery-image {
        height: 250px;
        background-color: var(--mischka);
        transition: transform 0.3s ease;
      }

      .gallery-item:hover .gallery-image {
        transform: scale(1.05);
      }

      /* Contact Section */
      .contact-section {
        background-color: var(--blue-whale);
        color: white;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .contact-info,
      .contact-form {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 30px;
      }

      .contact-title {
        color: var(--blue-haze);
        font-size: 1.5rem;
        margin-bottom: 20px;
      }

      .contact-item {
        display: flex;
        margin-bottom: 20px;
      }

      .contact-icon {
        color: var(--blue-haze);
        margin-right: 15px;
        margin-top: 5px;
      }

      .contact-details h4 {
        font-weight: 500;
        margin-bottom: 5px;
      }

      .contact-details p {
        color: var(--heather);
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-label {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 5px;
      }

      .form-input {
        width: 100%;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid var(--gunsmoke);
        border-radius: 4px;
        color: white;
      }

      .form-input:focus {
        outline: none;
        border-color: var(--blue-haze);
      }

      .form-input::placeholder {
        color: var(--heather);
      }

      textarea.form-input {
        min-height: 120px;
        resize: vertical;
      }

      .form-button {
        width: 100%;
      }

      /* Map Section */
      .map-section {
        height: 400px;
        background-color: var(--mischka);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .map-content {
        text-align: center;
        padding: 30px;
      }

      .map-icon {
        font-size: 3rem;
        color: var(--lynch);
        margin-bottom: 20px;
      }

      /* Footer */
      .footer {
        background-color: var(--blue-whale);
        color: white;
        padding: 60px 0 30px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
      }

      .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 15px;
      }

      .footer-description {
        color: var(--heather);
        margin-bottom: 20px;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-link {
        color: var(--heather);
        font-size: 1.2rem;
        transition: color 0.3s ease;
      }

      .social-link:hover {
        color: var(--blue-haze);
      }

      .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 10px;
      }

      .footer-links a {
        color: var(--heather);
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--blue-haze);
      }

      .footer-contact-item {
        display: flex;
        color: var(--heather);
        margin-bottom: 15px;
      }

      .footer-contact-icon {
        color: var(--blue-haze);
        margin-right: 10px;
        margin-top: 5px;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--lynch);
        color: var(--heather);
        font-size: 0.9rem;
      }
      /* whatsapp icon css */
      .whatsapp-icon {
        position: fixed;
        bottom: 90px; 
        right: 30px;
        width: 50px;
        height: 50px;
        z-index: 1000;
      }
      
      .whatsapp-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      /* Scroll to Top Button */
      .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: var(--blue-whale);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid white;
      }

      .scroll-top.active {
        opacity: 1;
        visibility: visible;
      }
      /* Responsive Styles */
      @media (max-width: 992px) {
        .features-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .section-title {
          font-size: 2rem;
        }

        .hero-title {
          font-size: 2.5rem;
        }

        .hero-subtitle {
          font-size: 1.2rem;
        }

        .nav-links {
          display: none;
        }

        .menu-toggle {
          display: block;
        }

        .contact-grid {
          grid-template-columns: 1fr;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 576px) {
        .features-grid {
          grid-template-columns: 1fr;
        }

        .products-grid {
          grid-template-columns: 1fr;
        }

        .gallery-grid {
          grid-template-columns: 1fr;
        }
      }
    