body {
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* background-color: #dd3f00;
    background-color: #f0a472; */
    background-image: url(../Images/ChatGPT\ Image\ Apr\ 28\,\ 2025\,\ 03_39_36\ PM.png);
    background-attachment: scroll; /* Makes background fixed during scroll */
    background-size: cover; /* Cover entire screen without zooming */
    background-repeat: no-repeat; /* Don't repeat the background */
    background-position: center center; /* Center the background */;
    zoom: 80%;
    overflow-y: auto;
    overflow-x: auto;
} 



.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    text-align: left;
    
}

.logo img {
    margin: 0;
}

nav {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    background-color: #9e4c08d8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

nav ul {
    flex: 1;
    text-align: right;
    margin-right: 20px;
    font-weight: bold;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color : black;
    font-size: 20px;;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #f79a0f7c;
    transition: 0.3s;
    width:100% ;
    height: 10px;
    position: relative;
}

h1 {
    text-align: center;
    font-size: 3rem;
    color: black;
    margin-top: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serifS ;
}

.hero-text{

    text-align: center;
    margin-top: 110px;
    margin-bottom: 100px;
    font-size: 2rem;
    color: black;
    background-color: #d66b1459;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serifS ;

}

.para1{
    text-align: justify;
    margin-left: 20px;
    margin-right: 20px;
    color: black;
}


h3 {
    text-align: center;
    font-size: 2rem;
    color: black;
    margin-top: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serifS ;
}

.content{
        text-align:justify;
        background-color: rgba(255, 228, 196, 0.514) ; 
         padding-bottom: 20px;   
}


h2{
    text-align: center;
    font-size: 2rem;
    color: black;
    margin-top: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serifS ;
    

}


.para2{
    text-align: center;
    font-size: 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

.services {
    border: 5px solid rgb(207, 118, 35); /* Fixed invalid border value */
    border-radius: 20px;
    background-color: rgba(255, 228, 196, 0.459);
    font-size: 2em;
    margin: 50px;
    padding: 25px;
    text-align: center;
}

.Our_Services {
    align-items: center;
    justify-content: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.Our_Services li {
    list-style: none;
    display: inline-block;
    margin: 50px 50px 5px 5px;
}

.Our_Services li a {
    text-decoration: none;
    color: rgb(192, 53, 35);
    font-size: 30px;
}

.Our_Services li a:hover {
    color: #bb50087a;
    transition: 0.3s;
    width: 100%;
    text-decoration: underline;
    height: 10px;
    position: relative;
}

.packages {
    text-align: center;
    margin: 40px;
    padding: 30px; /* Fixed missing unit */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 25px;
}

.packages ul {
    list-style: none;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.packages ul li {
    display: inline-block;
    padding: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

.packages ul li img {
    width: 200px; /* Default size for the images */
    height: 200px;
    border-radius: 15px; /* Add rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.packages ul li:hover img {
    transform: scale(1.1) ; /* Scale up and slightly rotate the image */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */
}

.packages ul li p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #9e4c08; /* Match the color palette */
    font-weight: bold;
    transition: color 0.3s ease; /* Smooth transition for text color */
}
.btn container{
    text-align: center;
    margin: 20px;
}
#btn_1{
    background-color: #db6e1498;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease; 
}



#btn_1::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    z-index: 0;
    transition: width 0.4s ease;
}

#btn_1:hover::before{
    width: 100%
}

#btn_1:hover{
    color: white;
    transform: scale(1.1);
    transition: .3s;
}

#btn_1 span{
    position: relative;
    z-index: 1;
}






.timing {
    padding: 40px;
    margin: auto;
    text-align: center;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgba(250, 235, 215, 0.356);
}

aside {
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: rgba(175, 85, 44, 0.336);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 30px;
}

aside a {
    color: rgb(192, 53, 35);
    
}

.phone a:hover {
    color: #c56220 ;
    transition: 0.3s;
}

.Contact {
    text-align: center;
    margin: 20px 0;
}

.visit-us-content {
    display: flex; /* Enable Flexbox */
    justify-content: space-around; /* Space out the items evenly */
    align-items: center; /* Align items vertically in the center */
    gap: 25px; /* Add spacing between items */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.visit-us-content address,
.visit-us-content .phone,
.visit-us-content .maps {
    flex: 1; /* Make each item take up equal space */
    max-width: 400px; /* Optional: Limit the width of each item */
    text-align: center; /* Align text to the left */
}


.visit-us-content iframe {
    width: 350px;
    height: 400px;
    border-radius: 15px; /* Add rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.visit-us-content iframe:hover {
    transform: scale(1.1); /* Scale up the map */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */
}

/* Add or update in your Home.css */

/* Modal background remains the same */
.modal {
    display: block;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.12);
}

.modal-content {
    position: absolute;
    top: 100px;    /* distance from top */
    left: 170px;
    background: #fffbe6;
    padding: 24px 18px 18px 18px;
    border-radius: 22px;
    box-shadow: 0 16px 40px 0 rgba(0, 30, 0, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    width: 98%;
    max-width: 480px;
    min-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: modalPop 0.45s cubic-bezier(.23,1.12,.72,.98);
    border: none;
    margin: 0 auto;
}

@keyframes modalPop {
    0% {
        transform: scale(0.7) translateY(60px);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(50,30,0,0);
    }
    60% {
        transform: scale(1.05) translateY(-10px);
        opacity: 1;
        box-shadow: 0 24px 48px 0 rgba(50, 30, 0, 0.22);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        box-shadow: 0 12px 32px 0 rgba(50, 30, 0, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    }
}
.social-media img {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}

.social-media img:hover {
    transform: scale(1.15);

}

.close-btn {
    position: absolute;
    top: 8px; right: 14px;
    font-size: 1.5rem;
    color: #b86e1e;
    cursor: pointer;
    font-weight: bold;
    z-index: 2;
}


/* Center the modal content and make it a bit larger */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.12); /* Subtle overlay */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fffbe6;
    padding: 24px 18px 18px 18px;
    border-radius: 22px;
    box-shadow: 0 16px 40px 0 rgba(0, 30, 0, 0.18), 0 2px 8px rgba(0,0,0,0.10);
    width: 98%;
    max-width: 480px;      /* Increased max-width for a bigger form */
    min-width: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: modalPop 0.45s cubic-bezier(.23,1.12,.72,.98);
    border: none;
    margin: 0 auto;        /* Center horizontally if needed */
}

.modal {
    /* ...existing code... */
    background: transparent;
}
/* ====== Mobile Responsive Styles ====== */
@media (max-width: 700px) {
    body {
        zoom: 100%;
        font-size: 1rem;
        padding: 0;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    nav ul {
        text-align: left;
        margin: 0 0 0 10px;
        padding: 0;
    }
    nav ul li {
        display: block;
        margin: 8px 0;
    }
    nav ul li a {
        font-size: 1.1rem;
    }

    .logo {
        margin: 10px 0 0 10px;
        width: 70px;
        height: 70px;
    }

    h1, h2, h3 {
        font-size: 1.4rem;
        margin-top: 16px;
    }

    .hero-text {
        font-size: 1.1rem;
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 10px;
    }

    .para1, .para2 {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 1rem;
    }

    .services {
        font-size: 1.1em;
        margin: 18px 4px;
        padding: 10px;
    }

    .Our_Services li {
        margin: 18px 8px 5px 0;
        font-size: 1rem;
    }
    .Our_Services li a {
        font-size: 1.1rem;
    }

    .packages {
        margin: 10px 0;
        padding: 10px;
        font-size: 1rem;
    }
    .packages ul li {
        display: block;
        padding: 20px 0;
    }
    .packages ul li img {
        width: 120px;
        height: 120px;
    }
    .packages ul li p {
        font-size: 1rem;
    }

    .timing {
        padding: 10px;
        font-size: 1rem;
    }

    aside {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 1rem;
        padding: 10px 0;
    }

    .Contact {
        margin: 10px 0;
    }

    .visit-us-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .visit-us-content address,
    .visit-us-content .phone,
    .visit-us-content .maps {
        max-width: 100%;
        text-align: center;
    }
    .visit-us-content iframe {
        width: 98vw;
        max-width: 320px;
        height: 180px;
    }

    .modal-content {
        width: 98vw;
        min-width: unset;
        max-width: 98vw;
        left: 1vw;
        padding: 12px 4px 8px 4px;
    }
}