/* 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 100px;
    height: 540px;
}

.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 {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 60px;
    margin-right: 10px;
}

/* Style for the middle image */
.navbar .middle-image {
    position: absolute;
    left: 49%;
    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;
}

/* Hide the toggle button on larger screens */
.menu-toggle {
    display: none;
}

/* Style for left content section */
.left-section {
    max-width: 50%;
}

.left-section h2 {
    font-size: 82px;
    margin-bottom: 5px;
    font-family: "Lovers Quarrel", cursive;
    font-weight: 100;
}

.left-section p {
    font-size: 18px;
    margin-bottom: 25px;
    font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;;
}

.left-section .read-more {
    padding: 13px 25px;
    background-color: #3B9095;
    color: #fff;
    text-decoration: none;
    /* border-radius: 5px; */
    font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;;
}

/* For screens larger than 576px (default styling) */
.contact-info {
    display: flex;
    justify-content: center; /* Align in the middle */
    margin-left: 50px; /* Add margin-left */
    margin-top: 20px;
}

.contact-info div {
    display: flex;
    align-items: center;
    padding: 13px 25px;
    border: 2px solid #3B9095;
    border-radius: 25px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    width: max-content;
    background-color: #fff;
}

/* Mail Icon */
.contact-info div img {
    margin-right: 10px;
    width: 24px; /* Adjust icon size */
    height: 24px;
}

/* Responsive adjustments for different screen sizes */

/* For screens smaller than 576px */
@media (max-width: 576px) {
    .contact-info {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center; /* Ensure it's centered on small screens */
    }

    .contact-info div {
        padding: 10px 15px; /* Smaller padding for smaller screens */
        font-size: 16px;
        border-radius: 15px;
        width: 90%; /* Ensure it spans most of the screen on small devices */
        text-align: center;
    }

    .contact-info div img {
        width: 18px; /* Adjust icon size for smaller screens */
        height: 18px;
        margin-right: 5px;
    }
}
@media (max-width: 992px) {
    .contact-info {
        margin-left: 0;
        margin-top: 33px;
        justify-content: center;
        width: 220px;
    }

    .contact-info div {
        padding: 10px 15px; /* Smaller padding for smaller screens */
        font-size: 16px;
        border-radius: 15px;
        width: 90%; /* Ensure it spans most of the screen on small devices */
        text-align: center;
    }

    .contact-info div img {
        width: 18px; /* Adjust icon size for smaller screens */
        height: 18px;
        margin-right: 5px;
    }
}

/* For screens smaller than 360px */
@media (max-width: 360px) {
    .contact-info div {
        padding: 8px 10px;
        font-size: 14px; /* Further reduce the font size */
    }

    .contact-info div img {
        width: 16px; /* Adjust icon size for extra small screens */
        height: 16px;
    }
}


/* Style for the right image section */
.right-section {
max-width: 50%;
position: relative;
display: flex;
justify-content: flex-end; /* Ensures the image is aligned to the right */
align-items: center;
}


.phone-info {
    position: absolute;
    top: 139px;
    left: 43%;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 4px 20px;
    border: 2px solid #3B9095;
    border-radius: 33px;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
}

.phone-info img {
    margin-right: 10px;
}

/* Style for the additional images in the corners */
.corner-image {
    position: absolute;
    bottom: -1px;
    right: 10px;
    width: 110px;
    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;
}

/* Responsive Styles */
@media (max-width: 992px) {

.hero-section {
flex-direction: column;
align-items: center;
padding: 20px 40px;
}

.left-section,
.right-section {
max-width: 100%;
text-align: center;
justify-content: center; /* Center content in smaller viewports */
margin-top: 63px;
}

.right-section img {
    position: absolute;
        left: -38px;
        width: 348px;
        top: -351px;
      
}

    .left-section h2 {
        font-size: 28px;
    }

    .left-section p {
        font-size: 16px;
    }

    .phone-info {
        position: absolute;
        top: 343px;
        left: 40px;
        font-size: 20px;
        font-weight: 600;
        padding: 3px 20px;
        border-radius: 17px;
    }
}

/* 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;
    }
}



@media (max-width: 484px) {
    .left-section h2 {
        font-size: 24px;
    }

    .left-section p {
        font-size: 14px;
    }

}

@media (max-width: 360px) {


.left-section .read-more{
    margin-top: 30px;
}
}


.women{
        margin-top:130px;
        }

/* Style for the right image and phone info section in mobile view */
@media (max-width: 576px) {
    .hero-section {
        position: relative;
        text-align: center;
        padding: 20px 15px;
        background-color: #f9f9f9;
        min-height: 400px; /* Ensures enough space for hero content */
    }

    /* Right image section */
    .right-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Aligns the image properly */
        margin-top: -50px; /* Pulls the image closer to the hero section */
        position: relative;
    }

    /* Right image styling */
    .right-section img {
        width: 241px;
        /* height: auto; */
        /* position: relative; */
        /* z-index: 1; */
        position: absolute;
        top: -197px;
        left: 146px;
    }

    /* Phone info section */
    .phone-info {
        position: absolute;
        /* top: 120px; */
        left: 30%;
        transform: translateX(-50%);
        background-color: #fff;
        font-size: 17px;
        /* padding: 10px 20px; */
        border-radius: -10px;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
    }

    /* Left section adjustments */
    .left-section {
        width: 100%;
        text-align: center;
        margin-top: 32px;
        padding: 0 10px;
    }

    .left-section h2 {
        font-size: 32px;
    }

    .left-section p {
        font-size: 16px;
    }

    /* Contact info section styling */
    .contact-info {
        margin-top: 20px;
    }

    .contact-info div {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* For extra small screens (max-width: 360px) */
@media (max-width: 360px) {
    .right-section img {
        width: 169px;
        position: absolute;
        left: 138px;
        top: -123px;
    }

    .phone-info {
     
        font-size: 17px;
        /* top: 108px; */
        /* padding: 8px 15px; */
        font-weight: 600;
        left: 119px;
    }

    .left-section h2 {
        font-size: 28px;
    }

    .left-section p {
        font-size: 14px;
    }
}


/* css for the section 2 */

.contact-section {
    padding: 50px 20px;
}

.container {
    margin: 23px 90px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-info-new {
    background-color: #38848e;
    color: white;
    padding: 57px;
    border-radius: 61px;
    width: 37%;
    min-width: 280px;
    /* margin-bottom: 20px;*/
}

.contact-info-new h2 {
    margin-bottom: 25px;
    font-size: 44px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.contact-info-new ul {
    list-style: none;
}

.contact-info-new ul li {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
    font-size: 19px;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-info-new ul li img {
    margin-right: 15px;
    width: 25px;
    height: 25px;
}

.contact-form {
    width: 60%;
    min-width: 280px;
}

.contact-form h2 {
    margin-bottom: 14px;
    font-size: 65px;
    font-family: "Lovers Quarrel", cursive;
    font-weight: 100;
    /* color: #38848e;*/
}

.contact-form form .form-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form form .form-group.full-width {
    flex-direction: column;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #38848e;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.contact-form form textarea {
    resize: vertical;
}

.contact-form form button {
    background-color: #38848e;
    color: white;
    padding: 11px 30px;
    border: none;
    font-family: Book Antiqua, Palatino, Palatino Linotype, Palatino LT STD, Georgia, serif;;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.contact-form form button:hover {
    background-color: #2c6e6e;
}
@media (max-width: 1200px) {
    .contact-info-new {
        padding: 5vh 4vw;
        width: 40%;
    }
    .contact-info-new ul li {
        
        font-size: 17px;
    }
}
@media (max-width: 1200px){
    .contact-info-new {
        background-color: #38848e;
        color: white;
        padding: 28px;
        border-radius: 61px;
        width: 39%;
        min-width: 280px;
        /* margin-bottom: 20px;*/
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .contact-info-new,
    .contact-form {
        width: 100%;
    }

    .contact-form {
        margin-top: 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-info-new h2,
    .contact-form h2 {
        font-size: 24px;
        text-align: center;
    }

    .contact-info-new ul li {
        font-size: 16px;
    }

    .contact-form form input,
    .contact-form form textarea,
    .contact-form form button {
        font-size: 14px;
        padding: 15px;
    }

    .contact-form form button {
        padding: 8px 16px;
    }
}










/* css for ths section 3 */
.map-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.full-width-image {
    width: 100%;
    height: auto;
    max-height: 465px; /* Decrease the height here */
    object-fit: cover; /* Ensures the image is properly cropped while maintaining aspect ratio */
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 52px;
    padding-top: 38px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        font-size: 20px;
    }
}





/* 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 {
    /* margin-top: 70px; */
    display: flex;
    gap: 58px;
    justify-content: center;
  }
  
  .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 */
    }
  }







  