            :root {
           --primary-blue: #183661;
           --primary-blue: #3b71f3;
           --brand-blue: #183661;
           --accent-red: #ef3f43;
           --light-blue: #e8f9fd;
           --brand-light-blue: #2b55cc;
           --text-dark: #0f2a4a;
           --primary-navy: #0a1128;
           --primary-blue: #3b71f3;
           --text-grey: #555555;
           --bg-light: #f8faff;
           --footer-bg: #1c243e;
           --footer-bottom-bg: #151b2e;
           --text-color: #ffffff;
           --icon-bg: #353d55;
           --hover-color: #4a8df8;
           --accent-blue: #152248;
           --light-border: #e9ecef;
       }

  *{
        margin:0;
        padding:0;
       box-sizing: border-box;
    }
    
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    @media (max-width: 991px) {
        .top-bar {
            height: auto !important; 
            padding: 10px 15px !important;
            flex-wrap: wrap; 
            justify-content: center !important; 
            gap: 10px;
        }
        
        .contact-info {
            margin-left: 0 !important;
            justify-content: center;
            font-size: 12px;
            text-decoration: none;
        }
    
        .consulting-btn {
            width: 100%;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .navbar-brand img {
            max-width: 180px; 
        }
    }
    
    @media (max-width: 768px) {
        .feature-box {
            padding: 20px 10px;
        }
        .elementor-icon svg {
            width: 60px;
            height: auto;
        }
    }
    
    .row {
        margin-right: 0;
        margin-left: 0;
    }
    body {
        font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
        color: var(--text-grey);
        background-color: #ffffff;
    }
    
    .top-bar {
        background-color: var(--primary-navy);
        color: #e2e8f0;
        font-size: 14px;
        font-weight: 600;
        height: 55px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .contact-info i {
    color: #00bd61;
}
    
    .consulting-btn {
        background-color: var(--accent-red);
        color: white;
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        padding: 10px 24px;
        border-radius: 6px;
        border: 2px solid;
        box-shadow: 0 4px 10px rgba(225, 29, 72, 0.25);
    }
    
    .consulting-btn:hover {
        background-color: #BE123C;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(225, 29, 72, 0.4);
    }
    
    .navbar {
        box-shadow: 0 4px 20px rgb(0 0 0 / 50%);
        background: rgba(255, 255, 255, 0.98);
        padding: 15px 0;
        backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
        font-size: 15px;
        font-weight: 700 !important;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        transition: color 0.3s;
        margin-left: 18px;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 10px;
        background-color: var(--brand-light-blue);
        transition: width 0.2s ease;
    }
    
    .nav-link:hover {
        color: var(--brand-light-blue) !important;
    }
    
    .nav-link:hover::after {
        width: 50%;
    }

       @media (max-width: 768px) {
      .nav-link:hover::after {
            width: 10%;
        } 
    }
 /*NAVBAR CSS END HERE       */



/* Section Headings */
       .section-title {
           color: var(--brand-blue);
           font-weight: 700;
           font-size: 2.5rem;
       }

       .sub-text {
           color: #555;
           font-size: 0.95rem;
           max-width: 700px;
           margin: 0 auto;
       }

       .product-heading {
           color: var(--brand-blue);
           font-weight: 600;
           margin-bottom: 10px;
       }

       /* Image Containers (Popular Products) */
       .img-box {
           border: 1px solid #aac1e0;
           border-radius: 15px;
           padding: 20px;
           background: #fff;
           display: flex;
           align-items: center;
           justify-content: center;
           width: 200px;
           /* height: 140px; */
           transition: transform 0.3s ease;
       }

       .img-box img {
           max-width: 100%;
           max-height: 100%;
           object-fit: contain;
       }

       .product-item:hover .img-box {
           box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
           border-color: var(--brand-blue);
           transform: translateY(-5px);
       }

       /* Custom List Styling */
       .custom-list {
           list-style: none;
           padding-left: 0;
           margin-bottom: 0;
       }

       .custom-list li {
           position: relative;
           padding-left: 20px;
           margin-bottom: 6px;
           color: #444;
           font-size: 0.9rem;
       }

       .custom-list li::before {
           content: "•";
           color: var(--brand-light-blue);
           font-weight: bold;
           position: absolute;
           left: 0;
           top: -2px;
           font-size: 1.2rem;
       }

       /* Bottom Section Cards */
       .bottom-card-box {
           border: 1px solid #aac1e0;
           border-radius: 10px;
           padding: 20px;
           height: 180px;
           display: flex;
           align-items: center;
           justify-content: center;
           margin-bottom: 15px;
           background: #fff;
       }

       .bottom-card-box img {
           max-width: 100%;
           max-height: 100%;
           object-fit: contain;
       }

       .bottom-title {
           color: var(--brand-blue);
           font-weight: 700;
           font-size: 1.1rem;
       }

       /* Divider */
       .custom-hr {
           border-top: 2px solid #e0e0e0;
           opacity: 1;
           margin: 50px 0;
       }

       /* Button */
       .btn-custom {
           background-color: #2b55cc;
           color: white;
           padding: 12px 30px;
           font-weight: 600;
           border-radius: 5px;
           border: none;
           transition: background 0.3s;
       }

       .btn-custom:hover {
           background-color: var(--brand-blue);
           color: white;
       }

       /* Responsive Tweaks */
       @media (max-width: 991px) {
           .hero-title {
               font-size: 28px;
               text-align: center;
               margin-top: 30px;
           }

           .carousel-item .row {
               flex-direction: column-reverse;
               justify-content: center;
               text-align: center;
           }

           /* Center images on mobile specifically */
           .col-lg-6.text-center {
               display: flex;
               justify-content: center;
           }

           .carousel-indicators {
               justify-content: center;
               margin-left: 0;
               bottom: 10px;
           }

           .top-bar {
               padding: 0 15px;
           }
       }

       .why-us-section {
           padding: 60px 0;
           background-color: #fff;
       }

       /* --- Header Styling --- */
       .section-tag-wrapper {
           display: flex;
           align-items: center;
           justify-content: center;
           gap: 15px;
           margin-bottom: 10px;
       }

       .section-tag-line {
           width: 30px;
           height: 3px;
           background-color: var(--primary-blue);
           display: inline-block;
       }

       .section-tag-text {
           color: var(--primary-blue);
           font-weight: 700;
           font-size: 1rem;
           text-transform: capitalize;
       }

       .main-heading {
           color: var(--dark-navy);
           font-weight: 700;
           font-size: 2rem;
           margin-bottom: 10px;
       }

       .sub-text {
           color: var(--text-grey);
           font-size: 1rem;
           margin-bottom: 60px;
       }

       /* --- Icon Grid Styling --- */
       .feature-box {
           text-align: center;
           /* padding: 10px; */
           height: 100%;
       }

       .icon-wrapper {
           height: 80px;
           margin-bottom: 20px;
           display: flex;
           align-items: end;
           justify-content: center;
       }

       .feature-icon {
           font-size: 3.5rem;
           color: var(--dark-navy);
           /* Simulating the outline look from the image */
           stroke: var(--dark-navy);
           stroke-width: 10;
       }

       .feature-title {
           color: #333;
           font-size: 0.95rem;
           line-height: 1.4;
           font-weight: 500;
       }


       .about-section {
           padding: 80px 0;
           /* Optional: Subtle gradient background similar to the image's clean look */
           background: #f8faff;
           overflow: hidden;
       }

       /* --- Image Styling --- */
       .about-image-wrapper {
           position: relative;
           border-radius: 20px;
           overflow: hidden;
           box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       }

       .about-image-wrapper img {
           transition: transform 0.5s ease;
           width: 100%;
           height: auto;
           display: block;
       }

       /* --- Text Content Styling --- */

       /* The "About Us" Label with lines */
       .section-label {
           display: inline-flex;
           align-items: center;
           gap: 10px;
           margin-bottom: 15px;
       }

       .label-line {
           width: 25px;
           height: 3px;
           background-color: var(--primary-blue);
           display: block;
       }

       .label-text {
           color: var(--primary-blue);
           font-weight: 700;
           font-size: 1.1rem;
       }

       /* Headings */
       .main-heading {
           color: var(--dark-navy);
           font-weight: 800;
           font-size: 2rem;
           line-height: 1.2;
           margin-bottom: 25px;
       }

       .sub-heading {
           color: var(--dark-navy);
           font-weight: 700;
           font-size: 1rem;
           margin-top: 30px;
           margin-bottom: 15px;
       }

       /* Paragraph Text */
       .description-text {
           color: var(--text-grey);
           font-size: 1rem;
           line-height: 1.7;
           margin-bottom: 20px;
       }

       /* Responsive adjustments */
       @media (max-width: 991px) {
           .main-heading {
               font-size: 2rem;
           }

           .about-image-wrapper {
               margin-bottom: 40px;
           }
       }

       .footer-section {
           background-color: var(--footer-bg);
           color: var(--text-color);
           padding-top: 70px;
           font-size: 0.95rem;
       }

       /* --- Logo Section --- */
       .footer-logo-wrapper {
           display: flex;
           align-items: center;
           gap: 15px;
           margin-bottom: 25px;
       }

       .logo-icon {
           font-size: 40px;
           border: 2px solid white;
           padding: 5px;
           width: 50px;
           height: 50px;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .logo-text h2 {
           margin: 0;
           font-weight: 800;
           font-size: 1.6rem;
           line-height: 1;
           letter-spacing: 1px;
           text-transform: uppercase;
       }

       .logo-text span {
           font-size: 1rem;
           font-weight: 600;
           letter-spacing: 1px;
           text-transform: uppercase;
           display: block;
       }

       .footer-desc {
           line-height: 1.6;
           margin-bottom: 25px;
           color: #dbe1e8;
           /* Slightly off-white for reading text */
       }

       /* --- Social Icons --- */
       .social-icons {
           display: flex;
           gap: 15px;
       }

       .social-btn {
           width: 50px;
           height: 50px;
           background-color: var(--icon-bg);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           color: white;
           text-decoration: none;
           transition: background 0.3s ease;
       }

       .social-btn:hover {
           background-color: var(--hover-color);
           color: white;
       }

       /* --- Headings --- */
       .footer-heading {
           font-size: 1.1rem;
           font-weight: 700;
           margin-bottom: 25px;
           text-transform: uppercase;
           letter-spacing: 0.5px;
       }

       /* --- Links & Lists --- */
       .footer-list {
           list-style: none;
           padding: 0;
           margin: 0;
       }

       .footer-list li {
           margin-bottom: 15px;
       }

       .footer-list a {
           color: #dbe1e8;
           text-decoration: none;
           transition: color 0.2s;
       }

       .footer-list a:hover {
           color: var(--hover-color);
           padding-left: 5px;
           /* Subtle movement on hover */
       }

       /* --- Contact Info --- */
       .contact-list li {
           display: flex;
           align-items: flex-start;
           gap: 15px;
           margin-bottom: 18px;
           color: #dbe1e8;
       }

       .contact-list i {
           margin-top: 4px;
           /* Align icon with first line of text */
       }

       /* --- Copyright Bar --- */
       .copyright-area {
           background-color: var(--footer-bottom-bg);
           padding: 20px 0;
           margin-top: 50px;
           text-align: center;
           font-size: 0.9rem;
           color: #aeb4c5;
       }

       /* Responsive adjustments */
       @media (max-width: 991px) {
           .footer-heading {
               margin-top: 30px;
           }
       }



       /* Contact us page start here  */
       /* --- Hero Section --- */
       .contact-hero {
           position: relative;
           height: 400px;
           display: flex;
           align-items: center;
           overflow: hidden;
           background: linear-gradient(90deg,
                   var(--primary-navy) 0%,
                   var(--primary-navy) 45%,
                   rgba(10, 17, 40, 0.7) 60%,
                   rgba(10, 17, 40, 0) 100%),
               url('./image/Banner/contact-banner.png');
           background-size: cover;
           background-position: center right;
       }

       .contact-hero h2 {
           color: #fff;
           font-size: 3.5rem;
           font-weight: 700;
           margin-left: 10%;
           /* Positions the text */
       }

       /* --- Info Cards Section --- */
       .info-cards-section {
           padding: 60px 0;
       }

       .contact-card {
           border: 1px solid var(--light-border);
           padding: 40px 20px;
           text-align: center;
           height: 100%;
           transition: transform 0.3s ease, box-shadow 0.3s ease;
           background: #fff;
       }

       .contact-card:hover {
           transform: translateY(-5px);
           box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
       }

       .card-icon {
           font-size: 2.5rem;
           color: var(--accent-blue);
           margin-bottom: 20px;
       }

       .card-title {
           color: var(--accent-blue);
           font-weight: 700;
           font-size: 1.25rem;
           margin-bottom: 15px;
       }

       .card-text {
           color: #555;
           font-size: 0.95rem;
           line-height: 1.6;
           margin: 0;
       }

       .card-text a {
           color: #555;
           text-decoration: none;
           display: block;
       }

       .card-text a:hover {
           color: var(--accent-blue);
       }

       /* --- Form Section --- */
       .form-section {
           background-color: #f8f9fa;
           padding: 80px 0;
       }

       .section-heading {
           color: var(--accent-blue);
           font-weight: 700;
           margin-bottom: 20px;
       }

       .custom-form-control {
           border: 1px solid #ced4da;
           padding: 12px 15px;
           border-radius: 4px;
       }

       .custom-form-control:focus {
           border-color: var(--accent-blue);
           box-shadow: 0 0 0 0.2rem rgba(21, 34, 72, 0.15);
       }

       .btn-submit {
           background-color: var(--accent-blue);
           color: #fff;
           padding: 12px 35px;
           font-weight: 600;
           border: none;
           border-radius: 4px;
           transition: background 0.3s;
       }

       .btn-submit:hover {
           background-color: #2c4280;
       }

       /* Mobile adjustments */
       @media (max-width: 768px) {
           .contact-hero {
               background: var(--primary-navy);
               height: 300px;
               justify-content: center;
           }

           .contact-hero h1 {
               margin-left: 0;
           }
       }

       /* aboutus page  */
       .aboutus-hero {
           position: relative;
           height: 390px;
           display: flex;
           align-items: center;
           overflow: hidden;
           background-image: linear-gradient(90deg, var(--primary-navy) 0%, var(--primary-navy) 35%, rgba(10, 17, 40, 0.6) 60%, rgba(10, 17, 40, 0) 100%), url('./image/Banner/about-bannr.jpg');
           background-position: left top, right center;
           background-size: 100% 100%, auto 100%;
           background-repeat: no-repeat;
           background-color: var(--primary-navy);
       }

       .aboutus-hero h1 {
           color: #fff;
           font-size: 3.5rem;
           font-weight: 700;
           margin-left: 10%;
           position: relative;
           z-index: 2;
       }

       @media (max-width: 768px) {
           .aboutus-hero {
               background-position: center center;
               background-size: cover;
               height: 300px;
               justify-content: center;
           }

           .aboutus-hero h2 {
               margin-left: 0;
               font-size: 2.5rem;
           }
       }


       /* .quality-section */
       .quality-section {
           padding: 30px 0;
           background-color: var(--bg-light);
           overflow: hidden;
           /* FIXED: Background settings */
           background-image: url('./image/Banner/backgorund-ing.jpg');
           background-size: cover;
           /* Ensures image covers the whole area */
           background-position: center;
           /* Centers the image */
           background-repeat: no-repeat;
       }

       /* --- Image Styling --- */
       .quality-img-wrapper {
           /* position: relative;
    height: 100%;
    min-height: 400px; 
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); */
       }

       .quality-img-wrapper img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           /* Prevents image stretching */
       }

       /* --- Text Content Styling --- */
       .content-wrapper {
           position: relative;
           z-index: 2;
       }

       .section-title {
           color: var(--primary-navy);
           font-weight: 700;
           font-size: 2rem;
           margin-bottom: 20px;
       }

       .text-para {
           color: var(--text-grey);
           font-size: 1rem;
           line-height: 1.6;
           margin-bottom: 15px;
       }

       /* The Horizontal Divider Line */
       .section-divider {
           border: 0;
           height: 1px;
           background-color: #d1d5db;
           margin: 30px 0;
           width: 100%;
           opacity: 1;
           /* Bootstrap hr has opacity by default, this fixes it */
       }

       /* --- Custom List Styling --- */
       .custom-list {
           list-style: none;
           padding-left: 0;
           margin-top: 15px;
       }

       .custom-list li {
           position: relative;
           padding-left: 25px;
           margin-bottom: 10px;
           color: var(--text-grey);
           font-size: 1rem;
       }

       /* FIXED: Blue Dot Alignment */
       .custom-list li::before {
           content: "•";
           color: var(--primary-blue);
           font-weight: bold;
           font-size: 1.5rem;
           position: absolute;
           left: 0;
           top: -2px;
           line-height: 1;
       }

       /* Responsive Adjustments */
       @media (max-width: 991px) {
           .content-wrapper {
               margin-top: 40px;
           }

           .quality-img-wrapper {
               min-height: 300px;
           }
       }

       /* Noritsu Chemical section  */

       .norisu-hero {
           position: relative;
           height: 400px;
           display: flex;
           align-items: center;
           overflow: hidden;

           /* Background Order: Pehle Gradient (Top), Phir Image (Bottom) */
           background-image:
               linear-gradient(121deg,
                   var(--primary-navy) 0%,
                   var(--primary-navy) 35%,
                   rgba(5, 10, 10, 0.4) 10%,
                   rgba(10, 17, 40, 0) 100%),
               url('./image/Noritsuimg/noritsu-chemical.jpg');
           background-position: left top, right center;
           background-size: 100% 100%, auto 100%;
           background-repeat: no-repeat;
           background-color: var(--primary-navy);
       }

       .norisu-hero h1 {
           color: #fff;
           font-size: 3.5rem;
           font-weight: 700;
           margin-left: 10%;
           position: relative;
           z-index: 2;
           /* Text ko upar rakhne ke liye */
       }

       /* Mobile Responsive Fix */
       @media (max-width: 768px) {
           .aboutus-hero {
               background-position: center center;
               background-size: cover;
               height: 300px;
               justify-content: center;
           }

           .aboutus-hero h2 {
               margin-left: 0;
               font-size: 2.5rem;
           }
       }

       /* --- Technical Product Card Styles --- */
       .product-catalog-section {
           background-color: #f8f9fa;
       }

       .tech-product-card {
           background: #fff;
           border: 2px solid #212e81;
           border-radius: 8px;
           box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
           overflow: hidden;
           margin-bottom: 30px;
           /* Space between cards */
           transition: transform 0.2s ease;
       }

       .tech-product-card:hover {
           box-shadow: 0 8px 25px rgba(33, 46, 129, 0.1);
           /* Ellford Blue shadow */
           transform: translateY(-2px);
       }

       .tech-img-box img {
           max-height: 180px;
           object-fit: contain;
       }

       /* Vertical Divider for Desktop */
       @media (min-width: 768px) {
           .border-end-md {
               border-right: 1px solid #dee2e6;
           }
       }

       /* Mixing Formula Section */
       .formula-box h6 {
           color: #212e81;
           /* Ellford Blue */
           font-weight: 700;
           font-size: 0.9rem;
           text-transform: uppercase;
           margin-bottom: 8px;
       }

       .formula-row {
           font-size: 0.9rem;
           color: #555;
           display: flex;
           align-items: center;
           justify-content: center;
           gap: 5px;
       }

       .icon-tap {
           color: #6c757d;
       }

       .mix-values {
           display: flex;
           justify-content: center;
           gap: 15px;
           font-weight: 500;
           color: #333;
           font-size: 0.85rem;
           margin-top: 5px;
       }

       /* Right Side Specs */
       .prod-header {
           color: #e3342f;
           /* Red */
           font-weight: 700;
           font-size: 1.4rem;
           line-height: 1.2;
       }

       .spec-divider {
           border-bottom: 1px solid #eee;
           margin: 15px 0;
           color: #212e81;
           font-weight: 600;
       }

       .spec-box {
           text-align: center;
       }

       .spec-label {
           font-size: 0.8rem;
           font-weight: 700;
           color: #212e81;
           text-transform: uppercase;
       }

       .spec-val {
           font-size: 1rem;
           color: #333;
           font-weight: 500;
       }

       /* Buttons */
       .btn-ellford-blue {
           background-color: #212e81;
           color: white;
           border: none;
           padding: 8px 25px;
           border-radius: 4px;
       }

       .btn-ellford-blue:hover {
           background-color: #1a2465;
           color: white;
       }


       /* Fuji css  */
       .Fuji-hero {
           position: relative;
           height: 400px;
           display: flex;
           align-items: center;
           overflow: hidden;
           background-position: left top, right center;
           background-size: 100% 100%, auto 100%;
           background-repeat: no-repeat;
           background-color: var(--primary-navy);
       }

       .Fuji-hero h1 {
           color: #fff;
           font-size: 3.5rem;
           font-weight: 700;
           margin-left: 10%;
           position: relative;
           z-index: 2;
           /* Text ko upar rakhne ke liye */
       }

       /* Mobile Responsive Fix */
       @media (max-width: 768px) {
           .Fuji-hero {
               background-position: center center;
               background-size: cover;
               height: 300px;
               justify-content: center;
           }

           .Fuji-hero h2 {
               margin-left: 0;
               font-size: 2.5rem;
           }
       }

/* X-ray product  */

     /* Custom styles to match the exact look */
      .x-ray-hero {
           position: relative;
           height: 400px;
           display: flex;
           align-items: center;
           overflow: hidden;
           background-position: left top, right center;
           background-size: 100% 100%, auto 100%;
           background-repeat: no-repeat;
           background-color: var(--primary-navy);
       }

       .x-ray-hero h1 {
           color: #fff;
           font-size: 3.5rem;
           font-weight: 700;
           margin-left: 10%;
           position: relative;
           z-index: 2;
           /* Text ko upar rakhne ke liye */
       }

       /* Mobile Responsive Fix */
       @media (max-width: 768px) {
           .Fuji-hero {
               background-position: center center;
               background-size: cover;
               height: 300px;
               justify-content: center;
           }

           .Fuji-hero h2 {
               margin-left: 0;
               font-size: 2.5rem;
           }
       }

        .product-section {
            background-color: #f8f9fa; /* Light grey background */
        }
        
        .product-card {
            border: 1px solid #dee2e6;
            background-color: #fff;
            transition: box-shadow 0.3s ease;
        }

        .product-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .img-container {
            height: 220px; /* Fixed height to keep cards aligned */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .img-container img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .card-title {
            font-weight: 700; /* Bold text */
            color: #0d1e38; /* Dark navy text */
            margin-top: 15px;
            font-size: 1.1rem;
        }

        /* The footer area holding the button */
        .card-action-area {
            border-top: 1px solid #dee2e6;
            padding: 20px;
            background-color: #fff;
        }

        /* Custom Button Color */
        .btn-order {
            background-color: #334acc; /* The royal blue from the image */
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 5px;
            font-weight: 500;
        }

        .btn-order:hover {
            background-color: #2536a0; /* Slightly darker on hover */
            color: white;
        }