        /* --- CSS Variables --- */
        :root {
          --primary-green: #30456d;
          --dark-green: #7095cd;
          --text-dark: #1d385a;
          --text-light: #ffffff;
          --text-gray: #2e4354;
          --footer-bg: #2b375b;
          --btn-purple: #8b5cf6;
          --bg-light-gray: #f9f9f9;
          --border-gray: #e3e8f1;
        }

        /* --- Reset & Base Styles --- */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
          color: var(--text-dark);
          line-height: 1.6;
          overflow-x: hidden;
          background-color: #fff;
        }

        a {
          text-decoration: none;
        }

        /* --- Header & Navigation --- */
        header {
          position: sticky;
          top: 0;
          background: var(--text-light);
          display: flex;
          justify-content: space-between;
          align-items: center;
          height: 100px;
          padding: 15px 50px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          z-index: 1000;
        }

     

        .menu-btn {
          font-size: 28px;
          cursor: pointer;
          background: none;
          border: none;
          color: var(--text-dark);
        }

        /* Side Menu */
        .side-menu {
          height: 100%;
          width: 0;
          position: fixed;
          z-index: 1001;
          top: 0;
          right: 0;
          background-color: #fff;
          overflow-x: hidden;
          transition: 0.3s;
          padding-top: 60px;
          box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .side-menu a {
          padding: 15px 30px;
          font-size: 16px;
          color: var(--text-dark);
          display: block;
          transition: 0.2s;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .side-menu a:hover {
          color: var(--primary-green);
          background-color: var(--bg-light-gray);
        }

        .close-btn {
          position: absolute;
          top: 10px;
          right: 25px;
          font-size: 36px;
          cursor: pointer;
          color: var(--text-dark);
        }

        /* --- Hero Section (Background Slider) --- */
        .hero {
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          transition: background-image 0.5s ease-in-out;
          color: var(--text-light);
          padding: 100px 10%;
          display: flex;
          align-items: center;
          position: relative;
          min-height: 85vh;
        }

        .hero-content {
          max-width: 60%;
          z-index: 2;
        }

        .hero-content h2 {
          font-size: 3.5rem;
          line-height: 1.1;
          margin-bottom: 30px;
          font-weight: bold;
          margin-right: 50px;
        }

        .hero-content p {
          font-size: 1.0rem;
          max-width: 80%;
        }

        .slider-controls {
          position: absolute;
          bottom: 40px;
          right: 10px;
          display: flex;
          flex-direction: column;
          gap: 15px;
          z-index: 2;
        }

        .slider-btn {
          width: 45px;
          height: 45px;
          border-radius: 50%;
          background-color: rgb(207, 226, 243);
          color: rgb(5, 2, 40);
          border: none;
          font-size: 20px;
          font-weight: 20px;
          cursor: pointer;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: 0.3s;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }


        .slider-btn:hover {
          background-color: #516398;
          transform: scale(1.05);
        }

        /* --- Section Utilities --- */
        section {
          padding: 80px 10%;
        }

        .section-header {
          text-align: left;
          margin-bottom: 0px;
        }

        .pre-title {
          color: #1c2b42;
          letter-spacing: 2px;
          text-transform: uppercase;
          font-size: 0.85rem;
          margin-bottom: 10px;
          display: block;
        }

        .section-title {
          color: var(--primary-green);
          font-size: 1.5rem;
          line-height: 1.2;
          font-weight: bold;
        }

        /* --- About Us Section --- */
        .two-col-row {
          display: flex;
          align-items: center;
          gap: 60px;
          margin-bottom: 10px;
        }

        .two-col-row.reverse {
          flex-direction: row-reverse;
        }

        .col-image {
          flex: 1;
        }

        .col-image img {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
        }

        .col-text {
          flex: 1;
        }

        .col-text h3 {
          font-size: 1.8rem;
          margin-bottom: 15px;
          color: #000;
        }

        .col-text p {
          color: var(--text-gray);
          font-size: 1rem;
          line-height: 1.8;
          margin-bottom: 20px;
        }

        .visit-website-btn {
          display: inline-block;
          color: var(--primary-green);
          font-weight: bold;
          text-transform: uppercase;
          letter-spacing: 1.5px;
          margin-top: 10px;
          font-size: 0.85rem;
        }

        /* --- What We Do (Cards) --- */
        .what-we-do {
          background-color: #fff;
        }

        .services-grid {
          display: flex;
          justify-content: center;
          gap: 30px;
          margin-top: 40px;
          width: 100%;
        }

        .service-card {
          background-color: #f3f6fb;
          border: 1px solid rgb(190, 198, 221);
          padding: 40px 20px;
          text-align: center;
          flex: 1;
          max-width: 350px;
          transition: 0.3s;
          cursor: pointer;
          border-top: 2px solid rgb(96, 121, 158);

        }

        .service-card:hover {
          box-shadow: 0 10px 20px rgb(128, 166, 216);
          -webkit-transition: .3s all ease-in-out;
          -o-transition: .3s all ease-in-out;
        }

        .service-card .icon {
          font-size: 50px;
          color: var(--primary-green);
          display: block;
          margin-bottom: 40px;
        }

        .section-title {
          color: #1a2d51;
        }

        .service-card h4 {
          text-transform: uppercase;
          font-size: 1rem;
          letter-spacing: 1px;
        }

       

        /* --- Brands & Products (Grids) --- */
        .grid-container {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 20px;
          
        }



        .grid-item {
          background: #fff;
          border: 1px solid rgb(216, 222, 233);
          padding: 30px 20px;
          text-align: center;
          transition: 0.3s;
          border-top: 2px solid rgb(96, 121, 158);

        }

        .grid-item:hover {
          box-shadow: 0 5px 15px rgba(181, 211, 238, 0.932);
          -webkit-transition: .3s all ease-in-out;
          -o-transition: .3s all ease-in-out;
        }

        .grid-item img {
          max-width: 100%;
          height: 70px;
          object-fit: contain;
          margin-bottom: 15px;
        }

        .grid-item p {
          font-weight: bold;
          color: var(--primary-green);
          font-size: 24px;
        }

        /* --- Forms (Sell To Us & Contact Us) --- */
        .form-section {
          margin: 0 auto;
          padding: 60px 10%;
          width: 80%;

        }

        .form-group {
          display: flex;
          gap: 10px;
          margin-bottom: 10px;
          margin-top: 30px;
        }

        .form-group input,
        .form-group textarea {
          width: 100%;
          padding: 15px;
          border: 1px solid var(--primary-green);
          border-radius: 4px;
          font-size: 1rem;
          background-color: rgb(255, 255, 255);
          outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
          border-color: var(--primary-green);
        }

        button.submit-btn {
          background-color: var(--primary-green);
          color: white;
          border: none;
          padding: 15px 40px;
          font-size: 1rem;
          font-weight: bold;
          border-radius: 30px;
          cursor: pointer;
          transition: 0.3s;
          float: left;
          margin-top: 20px;
        }

        button.submit-btn:hover {
          background-color: var(--dark-green);
        }

        /* --- Footer --- */
        footer {
          background-color: var(--footer-bg);
          color: #ccc;
          padding: 60px 10%;
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 40px;
        }

        .footer-col {
          flex: 1;
          min-width: 250px;
        }

        .footer-col h3 {
          color: var(--text-light);
          margin-bottom: 25px;
          font-size: 1.1rem;
        }

        .footer-col ul {
          list-style: none;
        }

        .footer-col ul li {
          margin-bottom: 15px;
          font-size: 0.9rem;
          line-height: 1.5;
        }

        .footer-col ul li strong {
          color: var(--text-light);
        }

        .footer-col img {
          width: 20px;
          height: 20px;
        }

        .newsletter-input {
          width: 100%;
          padding: 12px;
          border: none;
          background: #444;
          color: #fff;
          margin-bottom: 15px;
          border-radius: 4px;
        }

        .copyright {
          background-color: #222;
          color: #888;
          text-align: center;
          padding: 20px;
          font-size: 0.9rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {

          .two-col-row,
          .two-col-row.reverse {
            flex-direction: column;
            text-align: center;
          }

          .hero-content {
            max-width: 100%;
          }

          .hero-content h2 {
            font-size: 3rem;
          }

          .col-text h3,
          .col-text .section-title {
            text-align: center;
          }

          .form-group {
            flex-direction: column;
          }

          .services-grid {
            flex-direction: column;
            align-items: center;
          }
        }