* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: white;
    overflow-x: hidden;
}

/* Main Page Heading */
.main-page-heading {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 100px;
    font-weight: bold;
    color: white;
    z-index: 10;
    margin: 0;
}

/* Navbar Styles */
.navbar {
    background-color: #000;
    padding: 0;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #2f2f2f;
    display: flex;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.navbar ul li {
    flex: 1;
    text-align: center;
    position: relative;
    height: 100%;
}

.navbar ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 50%;
    width: 1px;
    background-color: #2f2f2f;
    transform: translateY(-50%);
}

.navbar ul li a {
    display: inline-block;
    padding: 0;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    line-height: 80px;
    background-color: transparent;
}

.navbar ul li a:hover {
    background-color: rgba(0, 170, 255, 0.2);
    color: #fff;
    border-color: #00aaff;
}

.navbar ul li.logo {
    flex: 2;
    text-align: center;
}

.navbar ul li.logo a img {
    height: 60px;
    vertical-align: middle;
    width: 200px;
}

nav {
    width: 100%;
    background-color: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: top 0.3s;
}

/* Hide the navbar initially when scrolling down on other pages */
.hide-navbar {
    top: -100px;
    /* Hide off-screen */
}

/* Show the navbar when scrolling up */
.show-navbar {
    top: 0;
}

/* Main section to prevent overlap */
#home,
#overview-section {
    padding-top: 80px;
    /* Offset for the fixed navbar */
}

/* Home Section */
.home-section {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Main section to prevent overlap */
#home {
    position: relative;
    height: 100vh;
    /* Full screen height for the home page */
    overflow: hidden;
}

#home video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-page-heading {
    font-size: px;
    /* Adjust font size as needed */
    color: white;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-shadow:
        -2px -2px 0 #3853a4,
        2px -2px 0 #3853a4,
        -2px 2px 0 #3853a4,
        2px 2px 0 #3853a4,
        -3px -3px 0 #3853a4,
        3px -3px 0 #3853a4,
        -3px 3px 0 #3853a4,
        3px 3px 0 #3853a4;
}

.header-section {
    background-color: white;
    text-align: center;
    padding: 60px 20px;
}

.header-section h1 {
    font-size: 48px;
    color: #222;
}

/* Bottom semi-transparent bar with arrow */
#scroll-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
    display: block;
    /* Ensure it is displayed only on the home page */
}

body:not(#home) #scroll-bar {
    display: none;
    /* Hide on other pages */
}


.next-page-link {
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: background-color 0.3s ease;
}

.next-page-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* Slight hover effect */
}

.arrow {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

/* Overview Section */
.overview-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.overview-heading {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
    /* Aligning to the left */
    line-height: 75px;
    font-weight: 400;
}

.overview-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px; /* Reduces space between text and image */
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.overview-image-background {
    position: absolute;
    left: 0;
    /* Adjust this to position the background */
    top: 0;
    width: 80%;
    height: 60vh;
    background-color: #E3E3E3;
    z-index: 1;
    /* Set it behind the image */
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}

.overview-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.overview-image img {
    width: 120%;
    height: 60vh;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    object-fit: cover;
}

.overview-text {
    width: 700px;
    text-align: left;
    z-index: 3;
    padding: 150px 100px 30px 60px;
}

.overview-text h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 37.5px;
    margin-bottom: 20px;
}

.overview-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* Code of Ethics Section */
.code-of-ethics-section {
    background-color: #f7f7f7;
    padding: 50px 20px;
    text-align: center;
    /* Adding some space between sections */
}

.code-of-ethics-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.ethics-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.ethic-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 30px;
}

.ethic-label {
    font-size: 32px;
    font-weight: bold;
    width: 120px;
    /* Adjusted for proper alignment */
    text-align: left;
    /* Aligns text to the left */
    margin-right: 20px;
    /* Space between label and circle */
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #005b99;
    margin-right: 20px;
}

.ethic-text {
    flex-grow: 1;
    text-align: left;
}

.ethic-text p {
    font-size: 20px;
    color: #555;
}

.our-expertise {
    font-weight: 400;
    font-size: 64px;
    padding: 10px 0 0 50px;
    text-align: left;
}

.expertise-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 300px;
}

.expertise-text {
    padding-left: 30px;
    flex: 1;
    width: 50%;
    text-align: center;
}

.expertise-text h4 {
    font-size: 32px;
    font-weight: 600;
}

.expertise-text p {
    font-size: 16px;
    line-height: 1.6;
}

.image-section1 {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 3px;
    height: 40vh;
    padding-top: 10px;
    position: relative;
    width: 90%;
}

.background-shape1 {
    position: absolute;
    width: 110%;
    height: 750px;
    background-color: black;
    clip-path: polygon(55% 0, 100% 0, 100% 63%, 38% 63%);
    /* Creates the angled black shape */
    z-index: 1;
    /* Ensures it appears above the image */

}

.image1 {
    width: 1000px;
    height: 750px;
    clip-path: polygon(55% 0, 100% 0, 100% 59%, 38% 59%);
    z-index: 2;
    left: 100px;
}

.products-section {
    max-width: 1200px;
    margin: 0 auto;
}

.products-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 40px;
    /* Larger gap between items */
    margin-top: 20px;
}

/* Product Box Styling */
.product {
    position: relative;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;

    border: 1px solid #ccc;
    text-align: center;
    text-decoration: none;
    color: #333;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 300px;
    /* Fixed height for uniform size */
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product:hover img {
    opacity: 1;
}

.product span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 3px;
}

/* Animation Keyframes */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(50px);
        /*Adjust the scale for stronger/weaker pop*/
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Base Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.active {
    animation: popIn 0.8s ease-out forwards;
}

/* Directional Animations */
.animate-on-scroll.from-left {
    transform: translateX(-100px);
}

.animate-on-scroll.from-right {
    transform: translateX(100px);
}

hr {
    position: absolute;
    width: 50%;
    border: 0.5px solid #000000;
    transform: rotate(-180deg);
    margin-top: 180px;
}

.image-container-2-3 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 1000px;
    padding: 15em 0 0 0;
    margin: 20px;
}

.image-section2-container,
.image-section3-container {
    position: relative;
    /* Ensure background shape is positioned relative to this container */
    width: 100%;
    /* Ensure the container spans the full width */
    height: 100%;
    /* Adjust height if necessary */
}

.image-section2-container {
    align-self: flex-end;
    /* Aligns this container to the bottom */
}

.background-shape2,
.background-shape3 {
    position: absolute;
    width: 100%;
    height: 600px;
    background-color: black;
    clip-path: polygon(24% 0, 100% 0%, 77% 100%, 0 100%);
    z-index: 1;
}

.background-shape2 {
    bottom: 0;
    /* Aligns to bottom of container */
}

.background-shape3 {
    top: 5%;
    /* Aligns to top of container */
    left: -6%;
}

.image-section2,
.image-section3 {
    position: absolute;
    width: 95%;
    /* Slightly narrower than the background */
    height: 570px;
    overflow: hidden;
    z-index: 2;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.image-section2 {
    top: 20%;
    left: 5%;
}

.image-section3 {
    top: 0;
    right: 3%;
}

.image-section2 img,
.image-section3 img {
    width: 100%;
    height: 100%;
    clip-path: polygon(24% 0, 100% 0%, 77% 100%, 0 100%);
    object-fit: cover;
}

.image-section3-container {
    display: flex;
    flex-direction: column;
}

.notable-projects-section {
    padding: 30px 20px 30px;
}

/*Change*/
.notable-projects {
    position: relative;
    margin-top: 700px;
    z-index: 3;
    left: 130px;
}

/*Change*/
.notable-projects h2 {
    font-weight: 400;
    font-size: 64px;
    padding: 2px 0;
    margin-left: 0;
}

/*Change*/
.notable-projects hr {
    position: relative;
    width: 100%;
    margin: 20px 0;
    transform: none;
}

.np-1-container,
.np-2-container,
.np-3-container,
.np-4-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 5px;
    /*Space between the image and text*/
    padding: 15em 0 15em;
    height: 300px;
}

.np-4-container {
    padding-bottom: 5em;
}

.image-section4-container,
.image-section5-container,
.image-section6-container,
.image-section7-container {
    position: relative;
    width: 55%;
    height: auto;
    /*Adjust as needed for your image*/
}

.background-shape4,
.background-shape4-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(0 0, 83% 0, 55% 73%, 0 73%);
}

.background-shape4 {
    background-color: #D9D9D9;
    top: 20px;
    left: 20px;
}

.background-shape4-1 {
    background-color: #3853A4;
    top: 0;
    left: 0;
}

.image4 img {

    position: relative;
    z-index: 2;
    padding-right: 150px;
    padding-top: 50px;
    right: 70px;
}

.background-shape5,
.background-shape5-1 {
    position: absolute;
    width: 82%;
    height: 135%;
    z-index: 1;
    clip-path: polygon(0 0, 54% 0, 80% 73%, 0 73%);
}

.background-shape5 {
    background-color: black;
    top: 25px;
    left: 40px;
}

.background-shape5-1 {
    background-color: #3853A4;
    top: 0;
    left: 0;
}

.image5 img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    right: 20px;

}

/*Change*/
.background-shape6,
.background-shape6-1 {
    position: absolute;
    width: 650px;
    height: 500px;
    z-index: 1;
    clip-path: polygon(11% 0, 100% 0, 100% 72%, 38% 72%);
}

/*Change*/
.background-shape6 {
    background-color: #D9D9D9;
    top: 30px;
    right: 30px;
}

/*Change*/
.background-shape6-1 {
    background-color: #3853A4;
    top: 0;
    right: 0;
}

/*Change*/
.image6 img {
    width: 400px;
    height: 300px;
    position: relative;
    z-index: 2;
    right: -350px;
    top: 20px;
}

.np-1-text,
.np-2-text {
    flex: 1;
    margin-top: -90px;
    margin-left: -180px;
    font-size: 20px;
    word-wrap: break-word;
    /*Prevent text overflow*/
    text-align: left;
    width: 50%;
}

.np-1-text p {
    width: auto;
}

.np-1-line,
.np-2-line,
.np-3-line,
.np-4-line {
    margin: 1px 0;
    width: 60%;
}

.np-3-text,
.np-4-text {
    width: 750px;
    padding: 0 40px 0 0px;
    text-align: left;
    font-size: 20px;
}

.background-shape7,
.background-shape7-1 {
    position: absolute;
    width: 600px;
    height: 450px;
    z-index: 1;
    clip-path: polygon(32% 0, 100% 0, 100% 72%, 6% 72%);
}

.background-shape7 {
    background-color: black;
    top: 0;
    right: 40px;
}

.background-shape7-1 {
    background-color: #3853A4;
    top: 25px;
    right: 0;
}

.image7 img {
    height: 300px;
    width: 380px;
    position: relative;
    z-index: 2;
    left: 350px;
    top: 40px;
}

.explore-more {
    padding: 40px 0px;
}

.explore-more h2 {
    font-weight: 400;
    font-size: 64px;
    text-align: left;
}

/* .gallery {
    display: flex;
    justify-content: center;
    margin: 20px;
} */

/* Main section to prevent overlap */
#home,
#overview-section {
    padding-top: 80px;
    /* Offset for the fixed navbar */
}



.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Create two columns */
    gap: 20px;
    /* Space between items */
    max-width: 800px;
    width: 100%;
}

.gallery-item {
    display: flex;
    /* Use flexbox for centering */
    flex-direction: column;
    /* Stack image and name vertically */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    /* Background for better visibility */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow effect */
    padding: 10px;
    /* Add padding for a balanced look */
}

.gallery-item img {
    max-width: 100%;
    /* Ensure the image fits within the container */
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.name {
    margin-top: 10px;
    /* Space between the image and the name */
    font-size: 14px;
    color: #333;
}

/* .product-image {
    width: 200px;
    height: auto;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-image:hover {
    transform: scale(1.05);
} */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);

    justify-content: center;
    /* Horizontally center the modal */
    align-items: center;
    /* Vertically center the modal */
}

.modal-content {
    display: flex;
    /* Ensure the modal is hidden by default */
    justify-content: space-between;
    align-items: flex-start;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    width: 80%;
    /* You can adjust this width to control the overall modal size */
    max-width: 1200px;
    /* Max width for the modal */
}

.modal-video {
    flex: 2;
    padding: 10px;
}

.modal-description {
    flex: 1;
    padding: 20px;
}

.modal-description h2 {
    margin: 0;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

video {
    width: 100%;
    /* Make the video fill the available width */
    height: auto;
    /* Maintain aspect ratio */
    max-width: 100%;
    /* Ensures it doesn't exceed the modal width */
}

#toggleNavbarButton {
    display: none;
}

/* Main Content */
main {
    padding: 100px 20px 40px;
    /* Added padding to avoid overlap with navbar */
}

 /* For mobile devices */
@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        /* Single column layout */
    }

    .product {
        height: auto;
        /* Allow product height to adjust */
    }
    #toggleNavbarButton {
        display: block;
        position: fixed;
        top: 10px;
        z-index: 1000;
    }

    body {
        overflow-x: hidden;
        background-color: white;
    }

    #navbar {
        display: none;
        top: 60px;

    }

    .navbar {
        position: relative;
        height: auto;
        position: fixed;
    }

    .navbar ul {
        flex-direction: column;
        overflow-x: hidden;
    }

    .navbar .btn {
        font-size: 14px;
    }

    .navbar ul li a {
        font-size: 14px;
        padding: 5px;
    }

    .navbar ul li.logo a img {
        height: 50px;
        vertical-align: middle;
        width: 200px;
    }

    .navbar ul li.logo {
        order: -1;
    }

    /* Style for the toggle button */
    #toggleNavbarButton {
        background-color: black;
        width: 50px;
        /* Increased width */
        height: 50px;
        /* Increased height */
        border: none;
        /* Removes default button border */
        cursor: pointer;
    }

    /* Adjust the size of the bars icon */
    #toggleNavbarButton i {
        font-size: 36px;
        /* Adjust size as needed */
        color: white;
    }

    .main-page-heading {
        font-size: 40px;
        /* Adjust font size as needed */
        color: white;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10px;
        margin: 10px auto;
    
        text-shadow:
            -2px -2px 0 #3853a4,
            2px -2px 0 #3853a4,
            -2px 2px 0 #3853a4,
            2px 2px 0 #3853a4,
            -3px -3px 0 #3853a4,
            3px -3px 0 #3853a4,
            -3px 3px 0 #3853a4,
            3px 3px 0 #3853a4;
    }
    
    /*Overview Section*/
    .overview-section {
        padding: 60px 15px;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .overview-heading{
        font-size: 25px;
    }

    .overview-content {
        width: 100%;
        white-space: normal; /* Ensure text wraps */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align everything */
        text-align: center; /* Ensure text is centered */
    }
    
    .overview-image {
        width: 500px;
        display: flex;
        justify-content: center;

    }
    
    .overview-image img {
        width: 400px;
        height: 500px;
        object-fit: contain;
    }
    
    .overview-text {
        width: 120%;
        padding-top: 10%;
        text-align: left; /* Ensures proper centering */
        display: flex;
        justify-content: left;
        align-items: center; /* Add this to center text vertically */
        flex-wrap: wrap;
    }
    
    /* Ethics Section */
    .ethics-container {
        padding: 0 15px;
    }

    .ethic-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    .ethic-label {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .ethic-text {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    /* Expertise Section */
    .expertise-section {
        flex-direction: column;
        height: auto;        
    }
    .our-expertise{
        padding: 20px;
        font-size: 40px;
        text-align: center;
    }

    .expertise-section hr {
        display: none;
    }

    /*Change*/
    .expertise-text {
        padding: 20px;
        width: 100%;
        text-align: center;
    }

    .image-section1 {
        width: auto;
        height: auto;
        padding: 20px 0;
    }

    .background-shape1,
    .image1 {
        clip-path: none;
        height: 400px;
        width: 100%;
        height: auto;
        left: 0;
        right: 0;
    }

    .image1 img {
        width: 100%;
        height: auto;
        left: 0;
        right: 0;
    }

    /* Notable Projects Section */
    .image-container-2-3 {
        flex-direction: column;
        height: auto;
        margin: 0;
        /* padding: 300px 0; */
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .image-section2-container,
    .image-section3-container {
        width: 100%;
        height: 450px;
        margin: 20px 0;
    }

    .background-shape2,
    .background-shape3,
    .image-section2 img,
    .image-section3 img {
        clip-path: none;
        height: 100%;
        width: 100%;
    }

    .image-section2 img {
        /*padding-top: 150px;*/

        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 400px;
        align-items: center;

        /* object-fit: contain; */
    }


    .image-section3 img {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        /* object-fit: contain; */
    }

    .image-section2 {
        width: 100%;
        height: 400px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .image-section3 {
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .overview-image,
    .overview-image-background {
        height: 200px;
        width: 100%;
    }

    .overview-image img {
        clip-path: none;
        height: auto;
    }

    .background-shape1,
    .image1,
    .background-shape2,
    .background-shape3,
    .image-section2,
    .image-section3 {
        height: 400px;
    }

    .background-shape1,
    .background-shape2,
    .background-shape3,
    .background-shape4,
    .background-shape4-1,
    .background-shape5,
    .background-shape5-1,
    .background-shape6,
    .background-shape6-1,
    .background-shape7,
    .background-shape7-1,
    .overview-image-background {
        display: none;
    }

    .image4 img,
    .image5 img,
    .image6 img,
    .image7 img {
        left: 0;
        right: 0;
        top: 0;
        padding: 10px;
    }

    .image4 img {
        width: 300px;
        height: 300px;
        padding-top: 30px;
    }

    .image5 img {
        width: 400px;
        height: 350px;
    }

    .image6 img {
        width: 390px;
        height: 400px;
    }

    .image7 img {
        width: 350px;
        height: 400px;
    }

    .np-1-line,
    .np-2-line,
    .np-3-line,
    .np-4-line {
        display: none;
    }
    .notable-projects {
        position: relative;
        margin-top: 450px;
        z-index: 3;
        left: 1px;
    }
    
    .notable-projects h2 {
        font-size: 30px;
        padding: 2px 0;
        text-align: center;
        margin-left: 0;
    }
    
    .notable-projects hr {
        position: relative;
        width: 100%;
        margin: 20px 0;
        transform: none;
    }

    .np-1-container,
    .np-2-container,
    .np-3-container,
    .np-4-container {
        flex-direction: column;
        height: auto;
        padding: 30px 0;
    }

    .image-section4-container,
    .image-section5-container,
    .image-section6-container,
    .image-section7-container {
        width: 100%;
        height: 300px;
        margin: 20px 0;
    }

    .np-1-text,
    .np-2-text,
    .np-3-text,
    .np-4-text {
        width: 100%;
        margin: 20px 0;
        padding: 0 20px;
        text-align: left;
    }

    .explore-more {
        padding-top: 100px;
    }

    .explore-more h2 {
        font-size: 48px;
        text-align: center;
    }
}


