    body {
        margin: 0;
        padding: 0;
        font-family: 'Arial', sans-serif;
        color: #000; /* Dark text for contrast */
        overflow-y: auto; /* Enable vertical scrolling only */
        overflow-x: hidden; /* Disable horizontal scrolling */
        position: relative;
        width: 100vw;
        min-height: 100vh; /* Allow content to expand vertically */
        /* Removed shared background image */
    }
    
    /* Enable smooth scrolling for anchor links */
    html {
        scroll-behavior: smooth;
    }
    
    /* Hide scrollbar while keeping scrollability */
    ::-webkit-scrollbar {
        display: none; /* Hide scrollbar in webkit browsers */
    }
    /* For Firefox (optional, less reliable) */
    html {
        scrollbar-width: none;
    }
    
       .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        min-height: 100vh; /* Full viewport height for hero section */
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 2vw;
        box-sizing: border-box;
        /*background: url('img/herobg.jpg') no-repeat left top / 0% 100%, 
                url('img/herobg.jpg') no-repeat right top / 100% 150%; */
        background-color: #DBD7D2; /* f2f2f2*/
        
    }
    
    .catch-phrase {
        font-size: 1.5vw;
        font-weight: bold;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        margin-bottom: 2vh;
        /*text-shadow: 0.1vw 0.1vw 0.1vw rgba(255, 215, 0, 0.5);*/
        max-width: 80vw;
        cursor: grab;
        user-select: none;
    }
    
    .catch-phrase.dragging {
        opacity: 0.5;
        cursor: grabbing;
    }
    
    .logo {
        max-width: 15vw;
        height: auto;
        margin: 2vh 0;
        border-radius: 1vw;
        cursor: grab;
        user-select: none;
        transform: scale(2.5);
    }
    
    .logo.dragging {
        opacity: 0.5;
        cursor: grabbing;
    }
    
    .cta-button {
        background: #FFD700;
        color: #000000ff;
        border: none;
        padding: 1.5vh 3vw;
        font-size: 1.2vw;
        font-weight: bold;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        border-radius: 1.0vw;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        margin-top: 2vh;
        transition: background 0.3s;
        user-select: none;
    }
    
    .cta-button:hover {
        background: #FFD700;
        color: #f2f2f2;
    }
    
    .cta-button.dragging {
        opacity: 0.5;
        cursor: grabbing;
    }
    
    /* New sections styling */
    .section {
        width: 100vw;
        min-height: 100vh; /* Full viewport height for each section, stacking vertically */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5vh 5vw;
        background: rgba(255, 255, 255, 0.9);
        box-sizing: border-box;
        animation: fadeInUp 1s ease-out;
        z-index: 1;
        position: relative; /* Ensure stacking */
    }
    
    /* Unique background for Products Offered section */
    .section:nth-of-type(1) { /* First .section is Products */
        background: rgba(255, 255, 255, 0.9) url('img/products-bg.jpg') no-repeat center center / cover;
    }
    
    /* Unique background for Services Offered section */
    .section:nth-of-type(2) { /* Second .section is Services */
        background: rgba(255, 255, 255, 0.9) url('img/services-bg.jpg') no-repeat center center / cover;
    }
    
    .section h2 {
        font-size: 2.5vw;
        font-weight: bold;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        color: #000;
        margin-bottom: 4vh;
        text-shadow: 0.1vw 0.1vw 0.1vw rgba(255, 215, 0, 0.3);
    }
    
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3vw;
        max-width: 90vw;
        width: 100%;
    }
    
    .card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 1vw;
        padding: 2vh 2vw;
        text-align: center;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        border: 0.1vw solid #FFD700;
    }
    
    .card:hover {
        transform: translateY(-0.5vh);
        box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.2);
    }
    
    .card img {
        max-width: 100%;
        width: 200vw;
        height: 50vh;
        object-fit: cover;
        border-radius: 0.5vw;
        margin-bottom: 2vh;
    }
    
    .card h1 {
        font-size: 1.5vw;
        font-weight: bold;
        color: #333;
        margin-bottom: 1vh;
    }
    
    .card p {
        font-size: 1vw;
        color: #666;
        line-height: 1.5;
    }
    
    .tcard {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 1vw;
        padding: 2vh 2vw;
        text-align: center;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        border: 0.1vw solid #FFD700;
    }
    
    .tcard:hover {
        transform: translateY(-0.5vh);
        box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.2);
    }
    
    .tcard img {
        max-width: 100%;
        width: 900;
        height: 50vh;
        object-fit: cover;
        border-radius: 0.5vw;
        margin-bottom: 2vh;
    }
    
    .tcard h1 {
        font-size: 1.5vw;
        font-weight: bold;
        color: #333;
        margin-bottom: 1vh;
    }
    
    .tcard p {
        font-size: 1vw;
        color: #666;
        line-height: 1.5;
    }
    
    /* Footer styling */
    footer {
        width: 100vw;
        background: #DBD7D2; /* Dark background for contrast */
        color: #000000;
        padding: 3vh 5vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
    }
    
    .footer-logo {
        max-width: 8vw; /* Small logo */
        height: auto;
        flex: 1;
    }
    
    .footer-links {
        display: flex;
        gap: 2vw;
        flex: 2;
        justify-content: center;
    }
    
    .footer-links a {
        color: #000000;
        text-decoration: none;
        font-size: 1.0vw;
        font-weight: normal;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: #FFA500;
    }
    
    .footer-right {
        text-align: right;
        flex: 1;
        font-size: 1vw;
    }
    
    .footer-contact, .footer-social, .footer-legal {
        margin-bottom: 1vh;
    }
    
    .footer-social a {
        margin: 0 0.5vw;
        color: #FFD700;
        text-decoration: none;
        font-size: 1.2vw;
    }
    
    .footer-social a:hover {
        color: #FFA500;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(5vh);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @media (max-width: 768px) {
        .catch-phrase {
            font-size: 4vw;
        }
        .logo {
            max-width: 40vw;
        }
        .tool-icon {
            width: 8vw;
            height: 8vw;
        }
        .section h2 {
            font-size: 5vw;
        }
        .card h1 {
            font-size: 3vw;
        }
        .card p {
          font-size: 2.5vw;
          text-align: justify;
        }
        .tcard h1 {
            font-size: 3vw;
        }
        .tcard p {
            font-size: 2.5vw;
        }
        .grid {
            grid-template-columns: 1fr;
        }
        footer {
            flex-direction: column;
            text-align: center;
            padding: 5vh 2vw;
        }
        .footer-logo {
            max-width: 20vw;
            margin-bottom: 2vh;
        }
        .footer-links {
            flex-direction: column;
            gap: 1vh;
            margin-bottom: 2vh;
        }
        .footer-links a {
            font-size: 3vw;
        }
        .footer-right {
            text-align: center;
            font-size: 2.5vw;
        }
    }
    /**** carousel *****/
    .carousel {
        width: 100vw;
        overflow: hidden;
        position: relative;
        border-radius: 1vw;
        box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
    }
    
    .carousel-inner {
        display: flex;
        width: calc(100% * 3); /* Adjust based on number of slides (e.g., 3 slides) */
        transition: transform 0.5s ease; /* Smooth slide transition */
    }
    
    .slide {
        width: 100%;
        flex-shrink: 0;
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 40vh; /* Fixed height for consistency */
    }
    
    .slide img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        border-radius: 1vw;
        margin-bottom: 2vh; /* Space if text follows */
    }
    
    .testimonial-text {
        background: #ffffff;
        color: #000000;
        padding: 2vh 2vw;
        border-radius: 0.5vw;
        max-width: 80%;
        text-align: center;
    }
    
    .testimonial-text p {
        font-size: 1vw;
        line-height: 1.5;
        margin: 0;
    }
    
    .carousel-btn {
        background: #ffffff;
        color: #f7f7f7;
        border: none;
        font-size: 1vw;
        padding: 1vh 1vw;
        cursor: pointer;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        transition: background 0.3s;
    }
    
    .carousel-btn:hover {
        background: #959595;
    }
    
    .prev-btn {
        left: 1vw;
    }
    
    .next-btn {
        right: 1vw;
    }
    
    /* Mobile adjustments */
    @media (max-width: 768px) {
        .carousel {
            max-width: 90vw;
        }
        .slide {
            height: 30vh;
        }
        .slide img {
            max-height: 20vh;
        }
        .testimonial-text {
            padding: 1.5vh 1.5vw;
        }
        .testimonial-text p {
            font-size: 2.5vw;
        }
        .carousel-btn {
            font-size: 4vw;
            padding: 1.5vh 1.5vw;
        }
    }
