body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    background-color: #ffffff;
    height: 100%;
}

.header {
    background-color: #E0218A;
    padding: 10px 50px;
}

.nav {
    justify-content: flex-end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2d2d2d;
}

.logo {
    height: 120px;
    max-width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) { /* For tablets and smaller */
    .header {
        padding: 10px 20px;
    }

    .nav {
        justify-content: center;
    }

    .nav-link {
        font-size: 13px;
        margin-left: 15px;
    }

    .logo {
        height: 90px;
    }
}

@media (max-width: 768px) { /* For tablets and large phones */
    .header {
        padding: 10px 15px;
    }

    .nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 12px;
        margin-left: 10px;
    }

    .logo {
        height: 80px;
    }
}

@media (max-width: 576px) { /* For smaller mobile devices */
    .header {
        padding: 10px;
    }

    .row {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        font-size: 12px;
        margin-left: 0;
        margin-bottom: 10px;
    }

    .logo {
        height: 70px;
    }
}


.hero {
    position: relative;
    background-image: url('image/Hero image(2).jpg');
    background-size: cover; /* Covers the section initially */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    height: calc(100vh - 120px); /* Adjusts for header height */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #eaeaea;
    padding: 0 15px; /* General padding */
}


/* Adjustments for larger screens */
@media (min-width: 1200px) {
    .hero {
        height: 100vh; /* Full height */
        padding-right: 50px; /* Align text to the right */
    }
}

/* Adjustments for tablets */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero {
        height: 100vh; /* Full height */
        padding-right: 30px; /* Smaller padding */
    }
}

/* Adjustments for mobile */
@media (max-width: 767px) {
    .hero {
        height: auto; /* Height adjusts automatically to maintain image proportions */
        background-size: 100% auto; /* Full width, auto height */
        background-position: center; /* Keeps the image centered */
    }
}



/* General styles for larger screens /
.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribute products evenly across the screen /
    margin: 20px;
    width: 100%;
}

.product {
    display: flex;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 48%; /* Make each product take 48% of the container width on larger screens /
    box-sizing: border-box;
}

.product-left .product-image {
    order: 1; /* Keep image on the left /
}

.product-right {
    background-color: #eaeaea; /* Light gray background for the second product /
    flex-direction: row-reverse; /* Reverse the order so image appears on the right /
}

.product-image {
    width: 40%;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-details {
    width: 60%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    background-color: #E0218A; /* Pink background /
    color: white;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.product-title h2 {
    font-size: 1.2em;
    margin: 0;
}

.product p {
    font-size: 0.9em;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.product .price {
    font-size: 1.4em;
    color: #E0218A;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 0;
}

/* Responsive styles for smaller screens /
@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
        margin: 20px 0;
        width: 100%;
    }

    .product {
        flex-direction: column; /* Stack items vertically /
        width: 100%; /* Full width for each product on smaller screens /
    }

    .product-image, .product-details {
        width: 100%; /* Full width for both sections /
        padding: 10px 0; /* Adjust padding /
    }

    .product-image {
        order: 1; /* Ensure image stays on top in smaller devices /
    }

    .product-right {
        flex-direction: column; /* Reverse stacking for right product /
    }

    .product-title h2 {
        font-size: 1.1em; /* Slightly smaller font size for titles /
    }

    .product p {
        font-size: 0.85em; /* Slightly smaller paragraph font size /
    }

    .product .price {
        font-size: 1.2em; /* Adjust price font size for smaller screens /
    }
}
*/
/* Ensure general layout for larger devices */
.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
}


.product {
    display: flex;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 48%;
    max-width: 500px;

   /* box-sizing: border-box;
    flex-direction: row;
    align-items: center;*/
}


.product-left .product-image {
    order: 1;
}


.product-right {
    background-color: #eaeaea;
    flex-direction: row-reverse;
}


.product-image {
    width: 40%;
    padding: 10px;
}


.product-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}


.product-details {
    width: 60%;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.product-title {
    background-color: #E0218A;
    color: white;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}


.product-title h2 {
    font-size: 1.2em;
    margin: 0;
}


.product p {
    font-size: 0.9em;
    color: #2d2d2d;
    margin-bottom: 5px;
}


.product .price {
    font-size: 1.4em;
    color: #E0218A;
    font-weight: bold;
    margin-top: auto;
    
}


/* Responsive layout adjustments */
/* For devices with a max-width of 768px */
@media (max-width: 768px) {
    .product-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .product {
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
    }


    .product-image {
        width: 40%; /* Keep the product image 40% of the container */
        padding: 10px;
    }


    .product-details {
        width: 60%; /* Keep the product details 60% of the container */
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .product-title h2 {
        font-size: 1em; /* Adjust font size for smaller screens */
    }


    .product p {
        font-size: 0.9em; /* Adjust font size for smaller screens */
    }


    .product .price {
        font-size: 1.2em; /* Adjust font size for smaller screens */
    }
}




/* Adjustments for larger screens */
@media (min-width: 1200px) {
    .product-section {
        justify-content: space-around;
    }


    .product {
        width: 45%;
    }


    .product-title h2 {
        font-size: 1.3em;
    }


    .product .price {
        font-size: 1.5em;
    }
}


.quote-section {
    font-family: 'Poppins', sans-serif;
    background-color: #E0218A; /* Bright pink background */
    padding: 20px 0;
    text-align: center;
    color: white;
    
}
.quote-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7em;
    margin: 0;
font-weight: bold;}


.quote-section a {
    display: inline-block;
    background-color: white;
    color: #eb22a1;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.quote-section a:hover {
    background-color: #c4006e;
    color: white;
}
.btn-pink {
    background-color: #E0218A;
    color: #ffffff;
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 45px;
    margin-top: -1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.btn-pink:hover {
    background-color: #c50582;
}
/* Responsive styles */
@media (max-width: 768px) {
    .quote-section h1 {
        font-size: 4em; /* Adjust font size for tablets */
    }
    
    .btn-pink {
        padding: 10px 20px; /* Adjust button padding for smaller screens */
        font-size: 1rem;
        margin-top: -0.2rem;
    }
}

@media (max-width: 480px) {
    .quote-section h1 {
        font-size: 2.5em; /* Adjust font size for mobile devices */
    }

    .btn-pink {
        padding: 8px 16px; /* Further reduce padding for mobile */
        font-size: 0.9rem;
        margin-top: -0.2rem;
    }
}
/*
.featured-projects {
    background-color: #ddd;
    text-align: center;
    padding: 40px 0;
    padding-bottom: 300px;

  }
  .featured-projects h2{
    color: #E0218A;
    font-weight: bold ;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 100px;
  }
  
  .project-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .project-item {
    position: relative;
    flex: 1;
    margin: 0 px;
    transition: flex 0.8s ease, transform 0.3s ease;
  }
  
  .project-item img {
    width: 100%;
    border-radius: 0px;
    transition: transform 0.3s ease;
  }
  
  .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    border-radius: 0 0 8px 8px;
  }
  
.project-item:hover .project-info {
    opacity: 1;
  }
  
*/
/*.featured-projects {
    margin-top: 10px;
	text-align: center;
	padding-top: 10px;
	margin-bottom: 200px;
    
}
.featured-projects h2{
    font-family: 'Poppins', sans-serif;
font-weight: bold;
margin-top: 10px;
margin-bottom: 10px;
color: #E0218A;}

.project-carousel {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	gap: 0; /* Ensure there is no gap between slides /
}

.project-item {
	position: relative;
	flex: 2;
	transition: transform 0.3s ease;
	margin: 0; /* Remove margin between project items /
	padding: 0; /* Remove padding /
}

.project-item img {
	width: 100%;
	height: 100%; /* Ensure the image takes up the full height /
	object-fit: cover; /* Ensure the image covers the entire area without distortion /
	transition: transform 0.3s ease;
}

.project-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	opacity: 0;
	transition: opacity 0.6s ease;
	text-align: center;
}

.project-item:hover .project-info,.project-item.active .project-info {
	opacity: 1;
}

/* Default size for non-active slides /
.project-item:not(.large):not(.medium) {
	flex: 1;
	transform: scale(0.6);
}

/* Medium size for adjacent slides /
.project-item.medium {
	flex: 2;
	transform: scale(0.8);
}

/* Large size for center slide /
.project-item.large {
	flex: 4;
	transform: scale(1);
}
/* Responsive styles /
@media (max-width: 1024px) {
    .project-item.large {
        flex: 3;
        transform: scale(0.9);
    }
    .project-item.medium {
        flex: 1.5;
        transform: scale(0.7);
    }
    .project-item:not(.large):not(.medium) {
        flex: 1;
        transform: scale(0.5);
    }
}

@media (max-width: 768px) {
    /* Side-by-side horizontal scroll for small screens /
    .project-carousel {
        flex-direction: row;
        overflow-x: auto; /* Enable horizontal scrolling /
        scroll-snap-type: x mandatory; /* Smooth snapping effect /
    }

    .project-item {
        min-width: 80%; /* Ensure each item takes up enough width for scrolling /
        flex: none; /* Don't flex, just display as is /
        transform: scale(1); /* Maintain regular size /
        scroll-snap-align: center; /* Center the item when scrolling /
        margin-right: 10px; /* Add space between items /
    }

    .project-item img {
        height: auto;
    }

    .project-info {
        font-size: 14px;
        padding: 10px;
    }

    /* Adjust font sizes for better readability /
    .featured-projects h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens: Adjust font sizes /
    .featured-projects h2 {
        font-size: 1.2rem;
    }

    .project-info {
        font-size: 12px;
        padding: 5px;
    }
}*/

/* Hide the small-screen section on larger screens */
.small-screen {
    display: none;
}

/* Hide the large-screen section on smaller screens */
.large-screen {
    display: block;
}

@media (max-width: 768px) {
    /* On smaller screens, hide the large-screen section and show the small-screen section */
    .large-screen {
        display: none;
    }

    .small-screen {
        display: block;
    }
}
.featured-projects {
    margin-top: 25px;
    text-align: center;
    padding-top: 10px;
    margin-bottom: 35px;
}
.featured-projects h2{
    font-family: 'Poppins', sans-serif;
font-weight: bold;
margin-top: 10px;
margin-bottom: 20px;
color: #E0218A;}

.large-screen .project-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 0; /* Ensure there is no gap between slides */
}

.large-screen .project-item {
    position: relative;
    flex: 2;
    transition: transform 0.3s ease;
    margin: 0; /* Remove margin between project items */
    padding: 0; /* Remove padding */
}

.large-screen .project-item img {
    width: 100%;
    height: 100%; /* Ensure the image takes up the full height */
    object-fit: cover; /* Ensure the image covers the entire area without distortion */
    transition: transform 0.3s ease;
}

.large-screen .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
}

.large-screen .project-item:hover .project-info,.project-item.active .project-info {
    opacity: 1;
}

/* Default size for non-active slides */
.large-screen .project-item:not(.large):not(.medium) {
    flex: 1;
    transform: scale(0.6);
}

/* Medium size for adjacent slides */
.large-screen .project-item.medium {
    flex: 2;
    transform: scale(0.8);
}

/* Large size for center slide */
.large-screen .project-item.large {
    flex: 4;
    transform: scale(1);
}

.small-screen .project-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0; /* No gap between slides */
    transition: transform 0.3s ease;
}

.small-screen .project-item {
    position: relative;
    
    transition: transform 0.3s ease;
}

.small-screen .project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    transition: transform 0.3s ease;
}

.small-screen .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
}

.small-screen .project-item:hover .project-info,
.small-screen .project-item.active .project-info {
    opacity: 1;
}
/* Responsive Styles for Small Devices (up to 768px) */
@media (max-width: 768px) {
    .project-carousel {
        flex-wrap: nowrap;
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    .project-item {
        flex: 0 0 80%; /* Make each item occupy more space */
        margin: 0 10px; /* Add some margin between items */
    }

    .project-info {
        font-size: 12px; /* Smaller text size for mobile */
        padding: 5px;
    }
}

  footer {
    background-image: url('image/Footer\ image.jpg'); /* Dark wood texture or similar color */
    padding-top: 40px;
    color: white;
    font-family: 'Poppins', sans-serif;
}


/* Default size for non-active slides /
.project-item:not(.large):not(.medium) {
	flex: 1;
	transform: scale(0.6);
}

/* Medium size for adjacent slides /
.project-item.medium {
	flex: 2;
	transform: scale(0.8);
}

/* Large size for center slide /
.project-item.large {
	flex: 4;
	transform: scale(1);
}*/
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin: 0 20px;
}

.footer-section ul {
    list-style: none; 
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d3d3d3; /* Slightly lighter on hover */
}

.about-us, .location {
    flex: 1;
}

.social-media {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: flex-end; /* Align to the right */
    flex-basis: 25%; /* This will make sure the social media section takes up 25% of the footer width */
}

.social-icon {
    display: inline-block;
    width: 30px; /* Icon size */
    height: 30px; /* Icon size */
    margin-right: 10px;
    border: 1px solid #fff; /* White border around the icon */
    border-radius: 0%; /* Circular shape */
    text-align: center;
    line-height: 30px; /* Center the icon vertically */
    color: #fff; /* White icon color */
    transition: background-color 0.3s, color 0.3s;
}

.social-icon i {
    font-size: 14px; /* Font size for the icon */
}

.social-icon:hover {
    background-color: #e3007e; /* Pink background on hover */
    color: #fff; /* Icon color remains white on hover */
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background-color: #E0218A; /* Pink color */
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
}

.modal-content {
    background-color: #2d2d2d;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    color: #eaeaea;
    border-radius: 8px;
}

.close {
    color: #eaeaea;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #E0218A;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.modal form input,
.modal form select,
.modal form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 45px;
    background-color: #444;
    color: #eaeaea;
}

.modal form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #E0218A;
    border: none;
    color: #ffffff;
    border-radius: 45px;
    cursor: pointer;
}

.modal form button:hover {
    background-color: #c50582;
}
.modal form .form-group {
    margin-bottom: 20px;
}
.modal form .form-control {
    border-radius: 45px;
    border: 1px solid #888;
    padding: 10px 15px;
    font-size: 16px;
    color: #888;
}
.modal form .form-control:focus {
    border-color: #E0218A;
    box-shadow: none;
}
