* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    background-color: white;
    color: #fff;
    padding: 10px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: red;
    text-decoration: none;
    font-weight: 1000;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    color: red;
    border: none;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        background: #444;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }

    .main-nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }
}



/* Styling for the header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    width: 100%;
}

/* Styling for the logo */
.header .logo img {
    max-width: 100px; /* Adjust logo size */
    height: auto;
}

/* Styling for the company name */
.header .company-name {
    flex-grow: 1;
    text-align: center;
}

.header .company-name h1 {
    font-size: 50px;
    font-family: Arial, sans-serif;
    color: blue;
}

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slider container */
.slider-container {
    width: 100%;
    overflow: hidden;  /* Hides overflowing images */
}

/* Slider styles */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual slide styling */
.slide {
    width: 50%;  /* Makes each slide take full width */
    height: 400px; /* Fixed height */
    flex-shrink: 0;  /* Prevents shrinking */
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .slide {
        height: 300px;  /* Adjust height on smaller screens */
    }
}

/* Change the color and font of the <p> element */
p {
    color: black; /* Dark grey color */
    font-family: Arial, sans-serif; /* Set the font to Arial */
    font-size: 20px; /* Set the font size */
    line-height: 1.5; /* Adjust line height for readability */
    text-align: justify;
}

h1 {
     font-size: 50px;
    font-family: Arial, sans-serif;
    color: blue;
}

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for the grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 6 columns on large screens */
    gap: 40px; /* Space between images */
    padding: 40px;
}

/* Styling for each image item */
.image-item {
    width: 100%;  /* Makes each item take full width of its column */
    height: 200px; /* Keep aspect ratio intact */
}

.image-item img {
    width: 100%;  /* Makes images responsive */
    height: 200px; /* Maintains image aspect ratio */
    border-radius: 10px; /* Optional: add rounded corners to images */
}

/* Media Query for medium screens (tablets) */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on medium screens */
    }
}

/* Media Query for small screens (mobile) */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile screens */
    }
}

/* Media Query for extra small screens (very small devices) */
@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}


/* Responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .header .logo {
        margin-bottom: 10px;
    }

    .header .company-name h1 {
        font-size: 20px;
    }
}
