@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    position: sticky;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}
.nav-strip {
    width: 100vw;
    height: 3rem;

    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icons img {
    height: 2rem;

    margin: 0 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.social-icons img:hover {
    transform: scale(1.2);
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2vw;
    position: sticky;
    z-index: 1;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    font-family: 'Pacifico', cursive;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}
.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;

    transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav-links a:hover {
    background-color: #E5E9D9;
    transform: scale(1.1);
}
.book-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border: 0.125rem solid black;
    border-radius: 0.9375rem;
    background-color: transparent;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.book-btn:hover {
    background-color: #FFB6C1;

    color: black;
    transform: scale(1.1) rotate(-2deg);

}
.book-btn:active {
    background-color: red;
    color: white;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.hero {
    background-image: url(/Assests/Mask\ group\ \(6\).png);
    height: 57vw;
    display: flex;
    margin-top: 1.5vw;
    justify-content: center;
    align-items: center;
    width: 98.8vw;
    ;
}
.hero_text1 {
    font-family: "Playfair Display";
    font-weight: 400;
    font-size: 5vw;
    margin-left: 4vw;
    margin-top: -1vw;
    color: #2C2F24;

}
.hero_p {
    position: relative;
    font-size: 1.5vw;
    font-weight: 200;
    z-index:-1;
}
.hero_button {
    font-family: "Poppins";
    font-size: 1.5vw;
    font-weight: 700;
    background-color: #AD343E;
    color: white;
    padding: 1vw 3vw;
    border: none;
    margin-left: 4vw;
    margin-top: 3vw;
    border-radius: 3vw;
    cursor: pointer;
    animation: slideUp 2s ease-in-out;

}
.hero_button1 {
    font-family: "Poppins";
    font-size: 1.5vw;
    font-weight: 700;
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 1vw 3vw;
    border: 2px solid black;
    margin-left: 3vw;
    margin-top: 0vw;
    border-radius: 3vw;
    cursor: pointer;
    text-decoration: none;
    animation: slideDown 2s ease-in-out;
}
.hero_button:hover {
    scale: 1.2;
}
.hero_button1:hover {
    scale: 1.2;
    background: linear-gradient(to right, #f472b6, #ff9a8b);
}
/* SECTION2 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    padding: 2vw;
}
.text_1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5vw;
    font-weight: 400;
    color: #2C2F24;
    text-align: center;
    margin-bottom: 2vw;

}
.card-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2vw;
    width: 100%;
}
.item1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    width: 20%;
    height: 25vw;
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5vw;
    position: relative;
    z-index:-1;
}

.container_image1 {
    width: 32%;
    height: auto;
    margin-bottom: 1vw;
    border-radius: 5px;
}
.headline {
    font-family: "Playfair Display", serif;
    font-size: 1.7vw;
    font-weight: bold;
    margin: 1vw 0;
    color: #2C2F24;
}
.container_p {
    font-family: Arial, sans-serif;
    font-size: 1.2vw;
    color: #555;
    line-height: 1.5;
    margin: 1vw 0;
    padding: 0 1vw;
}
.explore-link {
    font-family: Arial, sans-serif;
    font-size: 1.2vw;
    color: #AD343E;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 1vw;
    transition: color 0.3s ease;
    position: absolute;
    bottom: 1.5vw;
}
.explore-link:hover {
    color: #7A242B;
    text-decoration: underline;
}
/* Section 3 */
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    padding: 5vw;
    height: 54vw;
}
.image-container img {
    width: 100%;
    height: auto;
    margin-left: -4vw;
    border-radius: 10px;
    border: 2px solid #2C2F24;

}
.text-container {
    width: 50%;
    text-align: left;
}
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    color: #2C2F24;
    margin-bottom: 0vw;
}
.bold-paragraph {
    font-size: 1.5vw;
    color: #2C2F24;
    font-weight: bold;
    margin-bottom: 1vw;
}
.normal-paragraph {
    font-size: 1vw;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1vw;
}
.more-about-us {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2vw;
}
.more-about-us p a {
    font-size: .5vw;
    color: #2C2F24;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}
.more-about-us p a:hover {
    color: #AD343E;
    text-decoration: underline;
    transform: scale(1.1);
}
.border {
    width: 100%;
    height: 2px;
    background-color: black;
    margin: 0.5vw 0;
    transition: transform 0.3s ease-in-out;
}
.more-about-us:hover .border {
    transform: scaleX(1.1);
    border-color: #AD343E;
}
.contact-section p {
    font-size: 1vw;
    color: #2C2F24;
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
}
.contact-section span {
    margin-right: 1vw;
    font-size: 1.5vw;
}
.reviews {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 5vw;
    margin-top: 10vw;

}
.head-line {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    color: #000000;
    margin-left: 25vw;
    margin-top: -8vw;
    height: 50vw;
}
.box {
    width: 25vw;
    height: 25vw;
    margin-top: 1vw;
    margin-left: 1vw;
    box-shadow: #000000;
    position: absolute;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 29px;
}
#reviewimage_1 {
    margin-top: 1vw;
    margin-left: 1vw;
}
.review-text {
    margin-top: 3vw;
    margin-left: 1vw;
}
.author-name {
    margin-top: -5vw;
    margin-left: 8vw;
    font-weight: bolder;
    position: relative;
}
.box_heading {
    margin-top: 1vw;
    margin-left: 3vw;
    font-weight: bold;
    color: red;
    font-size: 1.69vw;
}
.post1 {
    color: #414536;
    position: relative;
    top: -0.5vw;
    left: 8vw;
    font-size: 1vw;
}
/* box 2 */
.box2 {
    width: 25vw;
    height: 25vw;
    margin-top: 1vw;
    margin-left: 34vw;
    box-shadow: #000000;
    position: absolute;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 29px;

}
#reviewimage_2 {
    margin-top: 1vw;
    margin-left: 1vw;
}
.review-text2 {
    margin-top: 3vw;
    margin-left: 1vw;
}
.author-name2 {
    margin-top: -5vw;
    margin-left: 8vw;
    font-weight: bolder;
    position: relative;
}
.box_heading2 {
    margin-top: 1vw;
    margin-left: 3vw;
    font-weight: bold;
    color: red;
    font-size: 1.69vw;
}
.post2 {
    color: #414536;
    position: relative;
    top: -0.5vw;
    left: 8vw;
    font-size: 1vw;
}
/* box3 */
.box3 {
    width: 26vw;
    height: 25vw;
    margin-top: 1vw;
    margin-left: 65vw;
    box-shadow: #000000;
    position: absolute;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 29px;
}
#reviewimage_3 {
    margin-top: 1vw;
    margin-left: 1vw;
}
.review-text3 {
    margin-top: 3vw;
    margin-left: 1vw;
}
.author-name3 {
    margin-top: -5vw;
    margin-left: 8vw;
    font-weight: bolder;
    position: relative;
}
.box_heading3 {
    margin-top: 1vw;
    margin-left: 3vw;
    font-weight: bold;
    color: red;
    font-size: 1.69vw;
}
.post3 {
    color: #414536;
    position: relative;
    top: -0.5vw;
    left: 8vw;
    font-size: 1vw;
}
footer {
    background-color: #303030;
    color: white;
    padding: 20px;
}
.footer-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column {
    margin-bottom: 20px;
}
.footer-column h3 {
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-column a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: transform 0.3s ease;

}
.footer-column a:hover {
    text-decoration: underline;
    transform: scale(1.05);

}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo img {
    margin-right: 10px;
    margin-top: -4vw;
}
.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.footer-social img {
    width: 8vw;
    height: 8vw;
    transition: transform 0.3s ease;
}
.footer-social img:hover {
    transform: scale(1.2);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid white;
    padding-top: 10px;
    margin-top: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-icons a {
    text-decoration: none;
}
.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}
.social-icons img:hover {
    transform: scale(1.2);
}
/* Media Queries for Responsive Design */
/* For screens smaller than 1200px */
@media (max-width: 1200px) {
    .hero_text1 {
        font-size: 6vw;
    }
    .hero_p {
        font-size: 2vw;
    }
    .hero_button,
    .hero_button1 {
        font-size: 2vw;
        padding: 1.5vw 4vw;
    }
}
/* For screens smaller than 768px (Tablets and Mobile) */
@media (max-width: 768px) {
    .hero {
        height: 70vw;
        flex-direction: column;
        text-align: center;
    }
    .hero_text1 {
        font-size: 8vw;
        margin-left: 0;
        margin-top: 2vw;
    }
    .hero_p {
        font-size: 3vw;
        margin-top: 2vw;
    }
    .hero_button,
    .hero_button1 {
        font-size: 3vw;
        padding: 2vw 5vw;
        margin-left: 0;
        margin-top: 2vw;
    }
}
/* For screens smaller than 480px (Mobile) */
@media (max-width: 480px) {
    .hero_text1 {
        font-size: 10vw;
    }
    .hero_p {
        font-size: 4vw;
    }
    .hero_button,
    .hero_button1 {
        font-size: 4vw;
        padding: 3vw 6vw;
    }
}
@media (max-width : 768px){
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    padding: 5vw;
    height: auto;
    flex-wrap: wrap;
}
.image-container img {
    width: 100%;
    height: auto;
    margin-left: -4vw;
    border-radius: 10px;
    border: 2px solid #2C2F24;
}
.text-container {
    width: 50%;
    /* Default width */
    text-align: left;
}
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    color: #2C2F24;
    margin-bottom: 0vw;
}
.bold-paragraph {
    font-size: 1.5vw;
    color: #2C2F24;
    font-weight: bold;
    margin-bottom: 1vw;
}
.normal-paragraph {
    font-size: 1vw;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1vw;
}
.more-about-us {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2vw;
}
.more-about-us p a {
    font-size: 2.5vw;
    color: #2C2F24;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}
.more-about-us p a:hover {
    color: #AD343E;
    text-decoration: underline;
    transform: scale(1.1);
}
.border {
    width: 50%;
    height: 1px;
    background-color: black;
    margin: 0.5vw 0;
    transition: transform 0.3s ease-in-out;
}
.more-about-us:hover .border {
    transform: scaleX(1.1);
    border-color: #AD343E;
}
.contact-section p {
    font-size: 1vw;
    color: #2C2F24;
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
}
.contact-section span {
    margin-right: 1vw;
    font-size: 1.5vw;
}
#border {
    border: 2px solid black;
    padding: 1vw 2vw;
    border-radius: 40px;
    font-weight: 600;
}
#border:hover {
    background-color: #ffb2b2;
}
.reviews {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 5vw;
    margin-top: 10vw;
}
.head-line {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    color: #000000;
    margin-left: 25vw;
    margin-top: -8vw;
    height: 50vw;
}
}
@media (max-width: 1200px) {
    .headline {
        font-size: 4vw;
    }
    .bold-paragraph {
        font-size: 2vw;
    }
    .normal-paragraph {
        font-size: 1.5vw;
    }
    .more-about-us p a {
        font-size: 1.5vw;
    }
    .contact-section p {
        font-size: 1.5vw;
    }
    .contact-section span {
        font-size: 2vw;
    }
    .head-line {
        font-size: 4vw;
    }
}
@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
        padding: 10vw;
    }
    .image-container {
        width: 100%;
        margin-left: 0;
        margin-bottom: 5vw;
    }
    .text-container {
        width: 100%;
        margin-top: 5vw;
    }
    .headline {
        font-size: 6vw;
    }
    .bold-paragraph {
        font-size: 3vw;
    }
    .normal-paragraph {
        font-size: 2.5vw;
    }
    .more-about-us p a {
        font-size: 2.5vw;
    }
    .contact-section {
        width: 100%;
        margin-top: 5vw;
    }
    .contact-section p {
        font-size: 2.5vw;
    }
    .contact-section span {
        font-size: 3vw;
    }
    .head-line {
        font-size: 6vw;
        margin-left: 0;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .headline {
        font-size: 8vw;
    }
    .bold-paragraph {
        font-size: 4vw;
    }
    .normal-paragraph {
        font-size: 3.5vw;
    }
    .more-about-us p a {
        font-size: 3.5vw;
    }
    .contact-section p {
        font-size: 3.5vw;
    }
    .contact-section span {
        font-size: 4vw;
    }
    .head-line {
        font-size: 8vw;
    }
}
.more-about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vw;
    width: 100%;
}

.more-about-us p a {
    font-size: 2.5vw;
    color: #2C2F24;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 1.5vw 3vw;
    border: 2px solid black;
    border-radius: 40px;
    background-color: transparent;
    text-align: center;

}
.more-about-us p a:hover {
    color: #AD343E;
    text-decoration: underline;
    transform: scale(1.1);
    background-color: #ffb2b2;

}
.border {
    width: 50%;
    height: 2px;
    background-color: black;
    margin: 1vw auto;
    transition: transform 0.3s ease-in-out;
}
.more-about-us:hover .border {
    transform: scaleX(1.1);
    border-color: #AD343E;
}
.more-about-us {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 2vw;
    width: 100%;

}
.more-about-us p a {
    font-size: 1.5vw;
    color: #2C2F24;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 1vw 2vw;
    border: 2px solid black;
    border-radius: 40px;
    background-color: transparent;
    text-align: center;

}
.more-about-us p a:hover {
    color: #AD343E;
    text-decoration: underline;
    transform: scale(1.1);
    background-color: #ffb2b2;

}

.border {
    width: 30%;
    height: 1px;
    background-color: black;
    margin: 0.5vw auto;
    transition: transform 0.3s ease-in-out;
}
.more-about-us:hover .border {
    transform: scaleX(1.1);
    border-color: #AD343E;
}
.more-about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vw;
    width: 100%;
}

.more-about-us p a {
    font-size: 1.5vw;
    color: #2C2F24;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 1vw 2vw;
    border: 2px solid black;
    border-radius: 40px;
    background-color: transparent;
    text-align: center;

}
.more-about-us p a:hover {
    color: #AD343E;
    text-decoration: underline;
    transform: scale(1.1);
    background-color: #ffb2b2;
}
.border {
    width: 30%;
    height: 1px;
    background-color: black;
    margin: 0.5vw auto;
    transition: transform 0.3s ease-in-out;
}

.more-about-us:hover .border {
    transform: scaleX(1.1);
    border-color: #AD343E;
}
@media (max-width: 768px) {
    .more-about-us p a {
        font-size: 3.5vw;
        padding: 2vw 4vw;
    }

    .border {
        width: 50%;
        height: 2px;
    }
}
@media (max-width: 480px) {
    .more-about-us p a {
        font-size: 5vw;
        padding: 3vw 6vw;
    }
    .border {
        width: 60%;

        height: 2px;
    }
}

/* .navbar */
/* Hamburger Icon Styles */
.hamburger-icon {
    display: none;
    /* Hidden by default */
    font-size: 2rem;
    cursor: pointer;
    color: black;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger-icon {
        display: block;
        /* Show hamburger icon on small screens */
    }
    .nav-links {
        display: none;
        /* Hide nav links by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 10;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
        /* Show nav links when active class is added */
    }
    .book-btn {
        margin-left: auto;
        /* Push button to the right */
        margin-right: 1rem;
    }
}
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        /* Reduce logo size for very small screens */
    }
    .book-btn {
        font-size: 0.875rem;
        /* Reduce button font size */
        padding: 0.5rem 1rem;
        /* Adjust button padding */
    }
}
@media (max-width: 826px) {
    .logo {
        font-size: 1.25rem;
        font-weight: bold;
        color: black;
        font-family: 'Pacifico', cursive;
    }

}
@media (max-width: 826px) {
    .logo {
        font-size: 1.75rem;
        font-weight: bold;
        color: black;
        font-family: 'Pacifico', cursive;
        margin-left: -39vw;
    }
}
@media (max-width: 826px) {
    .logo {
        margin-left: -28vw;
    }
}
@media (max-width: 826px) {
    .logo {
        margin-left: 0vw;
    }
}
@media (max-width: 706px) {
    .logo {
        margin-left: -41vw;
    }
}
@media (max-width: 792px) {
    .logo {
        font-size: 1.25rem;
    }
}
@media (max-width: 792px) {
    .book-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1.5rem;
        border: 0.125rem solid black;
        border-radius: 0.9375rem;
        background-color: transparent;
        color: black;
        cursor: pointer;
        margin-left: 0vw;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
}
@media (max-width: 792px) {
    .logo {
        margin-left: 1vw;
        font-size: 1.75rem;

    }
}
@media (max-width: 720px) {
    .logo {
        margin-left: -43vw;
    }
}
@media (max-width: 686px) {
    .logo {
        margin-left: -39vw;
    }
}
@media (max-width: 582px) {
    .logo {
        margin-left: -31vw;
    }
}
@media (max-width: 800px) {
    .logo {
        font-size: 1.25rem;
    }
}
@media (max-width: 608px) {
    .logo {
        font-size: 1.75rem;
    }
}
@media (max-width: 608px) {
    .logo {
        font-size: 1.75rem;
    }
}
@media (max-width: 766px) {
    .logo {
        font-size: 3.5vw;
        margin-left: -48vw;
    }
}
@media (max-width: 404px) {
.logo{
    font-size: 6vw;
    margin-left: -14vw;
}
}
@media (max-width: 606px){
    .logo{
        font-size: 4vw;
        margin-left: -36vw;
    }
}
@media (max-width: 626px){
    .logo{
        font-size: 4.5vw;
        margin-right: -15vw;
    }
}
@media (max-width: 464px){     
.logo{
    font-size: 5.5vw;
}
}
@media (max-width: 400px){ 
.logo{
    margin-right: -21vw;
}
}
@media (max-width: 340px){ 
.logo{
    font-size: 6.25vw;
    margin-left: -24vw;
}
}
    /* Base Styles (No Changes) */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    padding: 2vw;
}
.text_1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5vw;
    font-weight: 400;
    color: #2C2F24;
    text-align: center;
    margin-bottom: 2vw;
}
.card-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2vw;
    width: 100%;
}
.item1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    width: 20%;
    height: 25vw; /* Square shape */
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5vw;
    position: relative;
}
.container_image1 {
    width: 32%;
    height: auto;
    margin-bottom: 1vw;
    border-radius: 5px;
}
.headline {
    font-family: "Playfair Display", serif;
    font-size: 1.7vw;
    font-weight: bold;
    margin: 1vw 0;
    color: #2C2F24;
}
.container_p {
    font-family: Arial, sans-serif;
    font-size: 1.2vw;
    color: #555;
    line-height: 1.5;
    margin: 1vw 0;
    padding: 0 1vw;
}
.explore-link {
    font-family: Arial, sans-serif;
    font-size: 1.2vw;
    color: #AD343E;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    margin-bottom: 1vw;
    transition: color 0.3s ease;
    position: absolute;
    bottom: 1.5vw;
}
.explore-link:hover {
    color: #7A242B;
    text-decoration: underline;
}
/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .item1 {
        width: 22%;
        height: 28vw; /* Adjust height to maintain square shape */
    }
    .headline {
        font-size: 2vw;
    }
    .container_p {
        font-size: 1.4vw;
    }
    .explore-link {
        font-size: 1.4vw;
    }
}
@media (max-width: 992px) {
    .item1 {
        width: 25%;
        height: 30vw; /* Adjust height to maintain square shape */
    }
    .headline {
        font-size: 2.2vw;
    }
    .container_p {
        font-size: 1.6vw;
    }
    .explore-link {
        font-size: 1.6vw;
    }
}
@media (max-width: 768px) {
    .card-row {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
    }
    .item1 {
        width: 60%;
        height: 60vw; /* Square shape for mobile */
        padding: 3vw;
    }
    .container_image1 {
        width: 40%;
    }
    .headline {
        font-size: 4vw;
    }
    .container_p {
        font-size: 3vw;
    }
    .explore-link {
        font-size: 3vw;
        position: static;
        margin-top: 2vw;
    }
    .text_1 {
        font-size: 6vw;
    }
}
@media (max-width: 480px) {
    .item1 {
        width: 70%;
        height: 70vw; /* Square shape for smaller mobile */
        padding: 2.5vw;
    }
    .container_image1 {
        width: 50%;
    }
    .headline {
        font-size: 5vw;
    }
    .container_p {
        font-size: 4vw;
    }
    .explore-link {
        font-size: 4vw;
    }
    .text_1 {
        font-size: 7vw;
    }
}
@media (max-width: 320px) {
    .item1 {
        width: 80%;
        height: 80vw; /* Square shape for very small screens */
        padding: 2vw;
    }
    .container_image1 {
        width: 60%;
    }
    .headline {
        font-size: 6vw;
    }
    .container_p {
        font-size: 5vw;
    }
    .explore-link {
        font-size: 5vw;
    }
    .text_1 {
        font-size: 8vw;
    }
}
@media (max-width: 532px){
    .hero{
        height: 89vw;
    }
}
@media (max-width: 416px){
    .hero{
        height: 114vw;
    }
}
@media (max-width: 510px){
    .text_1{
        font-size: 9vw;
        margin-top: 10vw;
        margin-bottom: 13vw;
    }
}
@media (max-width: 768px){
    .text_1{
        font-size: 9vw;
        margin-top: 10vw;
        margin-bottom: 13vw;
    }
}
/* Boxes */
/* Original styles remain unchanged */
/* humburger */
/* humburger bar */
/* Base styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  /* Hide everything by default on desktop */
  #hm-container {
    display: none;
  }
  /* Show only on mobile */
  @media (max-width: 768px) {
    #hm-container {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10000;
      display: block;
    }
    #hm-button {
      position: fixed;
      top: 20px;
      left: 20px;
      width: 30px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 10001;
      padding: 0;
    }
    .hm-bar {
      position: absolute;
      width: 100%;
      height: 3px;
      background: #888; /* Gray bars */
      left: 0;
      transition: all 0.3s ease;
    }
    #hm-menu {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background: #333;
      transition: left 0.4s ease;
      z-index: 9999;
      box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }
    .hm-links {
      padding-top: 80px;
    }
    .hm-link {
      display: block;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      padding: 15px 30px;
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.3s ease;
    }
    .hm-link:hover {
      background: #444;
    }
  }
  @media (max-width: 674px){
  .logo{
    margin-left: 10vw;
    margin-top: -1vw;
    font-size: 4vw;
}
  }
  @media (max-width: 767px){
  .logo{
    
    margin-left: 11vw;
    font-size: 4vw;
    margin-top: -1vw;
}
  }
  @media (max-width: 767px){
  .logo{
    margin-left: 15vw;
    font-size: 5vw;
}
  }
  @media (max-width: 767px){
  .logo{
    font-size: 4vw;
    margin-left: 12vw;
}
  }
  @media (max-width: 519px){
  .logo{
    font-size: 5vw;
}
  }
  @media (max-width: 395px){
  .logo{
    margin-left: 18vw;
    font-size: 6vw;
}
  }
/* Humburger bar   */
/* footer */
@media (max-width: 1024px) {
    .section-three-stats-grid {
        justify-content: center;
    }
    .section-three-grid-box div {
        font-size: 4vw; /* Bigger numbers */
    }

    .section-three-grid-box p {
        font-size: 2.5vw; /* Bigger labels */
    }
}
@media (max-width: 600px) {
    .section-three-stats-grid {
        justify-content: center;
    }
    .section-three-grid-box div {
        font-size: 5vw;
    }
    .section-three-grid-box p {
        font-size: 3.2vw;
    }
}
@media (max-width: 630px){
    .footer-social img {
        width: 20vw;
        height: 15vw;
        transition: transform 0.3s ease;
    }
}
@media (max-width: 1091px){
.footer-social img {
    width: 12vw;
    height: 11vw;
    transition: transform 0.3s ease;
}
}
@media (max-width: 715px){
.footer-social img {
    width: 19vw;
    height: 16vw;
    transition: transform 0.3s ease;
}
}
@media (max-width: 467px){
.footer-social img {
    width: 30vw;
    height: 27vw;
    transition: transform 0.3s ease;
}
}
/* footer */
@media (max-width: 1700px)
.hero {
    background-image: url(/Assests/Mask group (6\) . png);
    height: 47vw;
    display: flex;
    margin-top: 1.5vw;
    justify-content: center;
    align-items: center;
    margin-left: 4vw;
    width: 238.8vh;
}
#hm-button {
    z-index: 1000; /* Reduced from extremely large value */
}
@media (max-width: 768px) {
    .navbar {
        position: relative;
        z-index: 1; /* Lower than hamburger menu */
    }
    #hm-container {
        position: fixed;
        z-index: 1000;
    }
}
@media (max-width: 768px) {
    #hm-button {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
    }
    #hm-menu {
        position: fixed;
        z-index: 1000;
    }
