     /* css for section 1 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.hero-section {
    
position: relative;
background-color: rgba(59, 144, 149, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
padding: 40px 50px;
min-height: 70vh; /* Make hero section take up at least 100% of the viewport height */
}



.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.navbar .logo img {
    margin-right: 10px;
    height: 60px;
}

.navbar .middle-image {
    position: absolute;
    left: 35%;
    transform: translateX(-50%);
    width: 57px;
    height: 125px;
    top: -34px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 65px;
}

.navbar ul li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Style for the additional images in the corners */
.corner-image {
    position: absolute;
    bottom: -12px;
right: 0px;
width: 114px;
    height: auto;
    object-fit: cover;
    margin-left: 20px;
}

.left-corner-image {
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 249px;
    height: auto;
    object-fit: cover;
    margin-right: 20px;
}

/* Add styles for the wrapper containing images on the right side */

.wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 965px;
    margin-top: 71px;
}

.image-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease;

    max-width: 250px;
    height: 407px;
    z-index: 1;
}

/* Apply the increased width to the first image container by default */
.image-container:first-child {
    flex: 0.9;
max-width: initial;
z-index: 10;
}

.image-container img {
    width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: all 0.5s ease;
border-radius: 41px;
position: absolute;
top: 0;
left: 0;
z-index: -1;
border: 2px solid rgba(59, 144, 149, 1);
}

.image-container:hover {
    flex: 1.5;
    max-width: initial;
    z-index: 10;
}

.image-container:hover img {
    width: 100%;
    height: 100%;
    transform: scale(1);
    z-index: 10;
}

/* Side Menu for Mobile View */
@media (max-width: 576px) {
.menu-toggle {
    display: block;
    background-color: transparent;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
}

.navbar ul {
    flex-direction: column;
    align-items: center;
    background: #fff;
    position: fixed;
    top: -100%; /* Hidden above the screen by default */
    width: 100%;
    gap: 50px;
    padding: 20px;
    transition: top 0.3s ease; /* Transition the top property for sliding effect */
    z-index: 1000;
    left: 0;
}

.navbar ul.show-menu {
    top: 0; /* Slide the menu down from the top */
}

.navbar ul li a {
    color: #000;
    font-size: 17px;
    font-weight: 700;
}

.content {
    left: 50%;
    text-align: center;
    margin-top: 67px;
}

.content h1 {
    font-size: 32px;
}

.content h2 {
    font-size: 48px;
}

.content .btn {
    font-size: 14px;
    padding: 7px 14px;
}
}




  /* Responsive Styling */
  @media (max-width: 768px) {
    .wrapper {
        width: 100%;
        max-width: none;
        gap: 10px;
        padding: 0 10px;
        margin: 19px;
    }

    .image-container {
        max-width: 200px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .wrapper {
        width: 100%;
        max-width: none;
        gap: 10px;
        padding: 0 10px;
        margin: 29px;
    }

    .image-container {
        max-width: 200px;
        height: 300px;
    }
}


/* Style for the left-side content */
.left-content {
max-width: 40%;
display: flex;
flex-direction: column;
gap: 20px;
}

.left-content h1 {
font-size: 77px;
font-weight: 100;
color: #000;
font-family: "Lovers Quarrel", cursive;
}

.left-content p {
font-size: 18px;
color: #333;
line-height: 1.6;
font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;
}

.read-more {
padding: 11px 14px;
background-color: #3b9095;
color: #fff;
border: none;
/* border-radius: 5px; */
cursor: pointer;
font-size: 16px;
font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;
font-weight: 600;
width: 113px;
}

.read-more:hover {
background-color: #337a7e;
}

/* Adjust hero-section to accommodate left content */
.hero-section {
padding: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}




/* Responsive Adjustments */
@media (max-width: 1200px) {
.left-content h1 {
    font-size: 64px;
}
}

@media (max-width: 768px) {
.left-content h1 {
    font-size: 48px;
}
}

@media (max-width: 576px) {
.hero-section{
  

flex-direction: column;  /* Stack elements in a column */
padding: 3px;
}
.left-content {
    max-width: 90%;
    text-align: center;
    margin-top: 52px;
}
.read-more {
margin: 0 auto;   /* Center the button horizontally */
}

.left-content h1 {
    font-size: 36px;
}

.left-content p {
    font-size: 13px;
}

.read-more {
    font-size: 14px;
    padding: 10px 12px;
    width: 100px;
}
}











/* Responsive Adjustments */
@media (max-width: 1200px) {
.navbar .middle-image {
    width: 45px;
    height: 100px;
    left: 40%;
}

.corner-image {
    width: 80px;
    right: 0px;
    bottom: 20px;
}
}

@media (max-width: 900px) {
.navbar .middle-image {
    width: 40px;
    height: 90px;
    top: -30px;
    left: 42%;
}

.corner-image {
    width: 70px;
    right: 0px;
    bottom: 29px;
}
}

@media (max-width: 768px) {
.navbar {
    padding: 10px 20px;
}

.navbar .middle-image {
    width: 35px;
    height: 80px;
    top: -20px;
    left: 45%;
}

.corner-image {
    width: 60px;
    right: 0;
    bottom: 28px;
}
}

@media (max-width: 576px) {
.navbar {
    /* flex-direction: column; */
    padding: 10px;
}

.navbar .logo img {
    height: 50px;
}

.navbar .middle-image {
    width: 30px;
    height: 70px;
    top: -15px;
    left: 50%;
    margin-top: 10px; /* Add some spacing from the logo */
}

.corner-image {
    width: 50px;
    right: 0;
    display: none;
}
}








/* css for the section 2 */
.section-container {
    text-align: center;
    padding: 20px;
}

.section-title {
    font-size: 77px;
    font-family: "Lovers Quarrel", cursive;
    margin-bottom: 15px;
    font-weight: 100;
}

.section-title span {
    color: #00a0a0;
    font-family: "Lovers Quarrel", cursive;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 20px; */
    margin: 30px 60px;
    
font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;


}

.section-description {
    flex: 1;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-right: 20px;
}

.product-dropdown {
    display: flex;
    align-items: center;
}

.product-select {
    font-size: 13px;
    padding: 13px 10px;
    width: 290px;
   
    font-size: 18px;
    border-radius: 20px;
    border: 1px solid #00a0a0;
    outline: none;
    appearance: none; /* Remove the default dropdown arrow */
    background: white;
    color: #333;
    
font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;

}

.dropdown-icon {
    margin-left: -30px; /* Adjust positioning to overlay the arrow icon */
    pointer-events: none;
}
/* Responsive Styles */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 12px;
    }

    .section-description {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.4;
    }

    .product-select {
        padding: 8px 15px;
        font-size: 13px;
        width: 219px;
    }

    .dropdown-icon {
        margin-left: -25px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .product-select {
        font-size: 13px;
        padding: 10px 10px;
        width: 235px;
    }

    .dropdown-icon {
        margin-left: -24px;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 22px;
    }

    .section-description {
        font-size: 13px;
        line-height: 1.2;
    }

    .product-select {
        font-size: 13px;
        padding: 10px 10px;
        width: 235px;
    }

    .dropdown-icon {
        margin-left: -24px;
    }
}




        .image-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 41px;
            margin-bottom: 30px;
        }

        .image-card {
            position: relative;
    flex: 1 1 calc(24% - 40px);
    max-width: calc(24% - 40px);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    max-height: 473px;
        }

        .image-card img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform 0.3s ease;
            max-height: 473px;
        }

        .image-card:hover img {
            transform: scale(1.05);
        }

        /* Overlay Styles */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(32 31 31 / 60%);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            text-align: center;
        }

        .image-card:hover .overlay {
            opacity: 1;
        }

        .overlay h3,
        .overlay p {
            transform: translateY(-30px);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;
        }

        .overlay h3 {
            font-size: 28px;
        }

        .overlay p {
            font-size: 18px;
            font-weight: 100;
        }

        .image-card:hover .overlay h3,
        .image-card:hover .overlay p {
            transform: translateY(0);
            opacity: 1;
        }

      


        @media (max-width: 480px) {
            .image-card {
                flex: 1 1 calc(100% - 20px);
                max-width: calc(100% - 20px);
            }

            /* Hide all cards except the first one */
            .image-card:not(:first-child) {
                display: none;
            }

            .section-title {
                font-size: 2em;
            }

            .section-description {
                font-size: 13px;
            }

            
        }






        
/* css for the footer */

.footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    list-style: none;
  }
  
  .container-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Logo styles */
  .logo-footer img {
    max-width: 60px; /* Adjust the size as needed */
    margin-bottom: 15px;
  }
  
  /* Navigation styles */
  .nav ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: center;
  }
  ul, li {
            
    list-style: none;
    font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;;
  }
  .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 40px;
  }
  
  /* Social media icons */
  .social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 52px;
    padding-top: 38px;
  }
  
  .social-icons a img {
    width: 30px; /* Adjust the size as needed */
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .footer {
        height: auto; /* Auto height for flexibility */
        padding: 30px 0; /* Adjust padding for smaller screens */
    }
  
    .nav ul {
        gap: 10px; /* Reduce gap for smaller screens */
        padding: 0; /* Remove additional padding */
    }
  
    .nav ul li a {
        font-size: 14px; /* Smaller font size for smaller screens */
    }
  
    .social-icons {
        gap: 10px; /* Reduce gap between icons */
    }
  
    .social-icons a img {
        width: 18px; /* Adjust icon size */
    }
  }
  
  @media (max-width: 480px) {
    .logo img {
        max-width: 50px; /* Smaller logo size for very small screens */
    }
  
    .nav ul {
        flex-direction: column; /* Stack links vertically */
        gap: 15px; /* Add some space between links */
    }
  
    .nav ul li a {
        padding: 8px; /* Smaller padding for mobile */
    }
  
    .social-icons {
        gap: 8px; /* Smaller gap for icons */
        margin-top: 20px; /* Add margin for spacing */
    }
  
    .social-icons a img {
        width: 16px; /* Even smaller icon size */
    }
  }









