* {
    margin: 0;
    padding: 0;
    /* outline: 1px solid red; Helps see element boundaries */
}

html {
    scroll-behavior: smooth;
}

/* .all-content{

  } */

body {
    background: #f7f5f2;
    font-family: 'Poppins';
    font-size: 15px;

}

/* navbar top */
.navbar-top {
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.social-link i img {
    margin-left: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}

.social-link i img:hover {
    background-color: rgba(238, 224, 208);
    border-radius: 50px;
}

@media screen and (max-width:420px) {
    .social-link i img {
        width: 20px;
    }
}

.logo h3 {
    font-weight: bold;
}

@media screen and (max-width:420px) {
    .logo h3 {
        font-size: 20px;
    }
}

.icons i img {
    margin-left: 10px;
    cursor: pointer;
}

@media screen and (max-width:420px) {
    .icons i img {
        width: 20px;
    }
}

/* navbar top */

/* main content */
/*.main-content {*/
    /* 
    width: 100%;
    height: 90vh;
    background-image: url(../img/background.png);
    background-size: cover;
    background-position: 70%;
    margin-top: -50px;
     */
/*    width:100%;*/
/*    height:90vh;*/
/*    background-image: url(../img/marble.jpg);*/
/*    background-size: cover;*/
/*    background-position: 70%;*/
/*    margin-top: -50px;*/
/*    display: flex;*/
/*    align-items: flex-start;*/
    /* Align content to the top */
/*    justify-content: flex-start;*/
    /* Align content to the left */
/*    padding-left: 60px;*/
    /* Space from the left */
/*    padding-top: 150px;*/
    /* Increase this value to move it further down */
/*    color: rgba(238, 224, 208);*/
    


/*}*/
/* main content */
.main-content {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url(../img/marble.jpg);
    background-size: cover; /* Cover to fill the area */
    background-position: center;
    margin-top: -50px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 60px;
    padding-top: 150px;
    color: rgba(238, 224, 208);
    transition: background-image 0.5s ease-in-out;
}

/* Mobile version: Instagram Story-like size */
@media (max-width: 768px) {
    .main-content {
        background-image: url(../img/mob.jpg);
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 177.78vw; /* 9:16 aspect ratio (height = 9/16 * width) */
        padding-left: 20px;
        padding-top: 30px;
        align-items: flex-start;
    }

    .content h1 {
        font-size: 30px;
    }
}

#btn1 a {
    display: inline-block;
    background: rgba(238, 224, 208, 0.8);
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#btn1 a:hover {
    background: #fff;
    transform: scale(1.05);
}


/* navbar */
#navbar-color {
    background-color: rgba(238, 224, 208);
}

.navbar-nav {
    margin: auto;
}

.nav-link {
    margin-left: 30px;
    font-weight: bold;
    color: black;
    transition: 0.5s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: green;
}

/* navbar */

/* content */
.content {
    text-align: left;

    /* width: 100%;
    height: 90vh;
    background-image: url(../img/background.png);
    background-size: cover;
    background-position: 70%;
    margin-top: -50px; */

}

.content h1 {
    font-size: 50px;
}

#btn1 button {
    width: 150px;
    height: 32px;
    background: transparent;
    border: 1px solid black;
    letter-spacing: 3px;
    font-weight: bold;
    transition: 0.5s ease;
    cursor: pointer;
}

#btn1 button:hover {
    background-color: green;
}

@media screen and (max-width:420px) {
    .content h1 {
        font-size: 30px;
    }
}

/* content */

/* main content */

/* card1 */
#btn2 button {
    width: 100px;
    height: 30px;
    background: transparent;
    border: 1px solid black;
    transition: 0.5s ease;
    cursor: pointer;
}

#btn2 button:hover {
    background-color: rgba(238, 224, 208);
    /* background-color: green; */
}

/* card1 */

/* card2 */
#tpc {
    box-shadow: 0 0 5px black;
    transition: 0.5s ease;
    cursor: pointer;
    /* row-gap: 10px; */
}

#tpc:hover {
    transform: translateY(-10px);
}

/* card2 */

/* card3 */
#c p {
    font-weight: bold;
}

#btn3 {
    text-align: center;
}

#btn3 button {
    width: 150px;
    height: 30px;
    background: transparent;
    border: 1px solid black;
    transition: 0.5s ease;
    cursor: pointer;
}

#btn3 button:hover {
    background-color: rgba(238, 224, 208);
}

@media screen and (max-width:895px) {
    #btn3 button {
        width: 100px;
    }
}

/* card3 */
#btn4 button {
    width: 150px;
    height: 30px;
    background: transparent;
    border: 1px solid black;
    transition: 0.5s ease;
    cursor: pointer;
}

#btn4 button:hover {
    background-color: rgba(238, 224, 208);
}

/* gallary */
#gallary {
    width: 100%;
}

#gallary h1 {
    text-align: center;
    color: black;
    margin-top: 60px;
    font-weight: bold;
}

#gallary h1 span {
    color: green;
}

#gallary .card {
    border-radius: 10px;
}

#gallary .card img {
    border-radius: 10px;
    cursor: pointer;
}

/* gallary */
/* category */

#category h1 {
    text-align: center;
    color: black;
    margin-top: 60px;
    font-weight: bold;
}

#category h1 span {
    color: green;
}

/* category */
/* footer */
#footer {
    width: 100%;
    background-color: black;
    margin-top: 100px;
}

#footer h1 {
    color: white;
    padding-top: 30px;
}

#footer p {
    color: white;
}

.icons i {
    color: rgba(238, 224, 208);
    font-size: 30px;
    cursor: pointer;
}

.copyright {
    color: white;
    margin-top: 20px;
}

.credite {
    color: white;
}

/* footer */

/* 
.navbar {
    border: 2px solid red;
}

.main-content {
    border: 2px solid blue;
} */


/* Style for horizontal scroll */



.text-button {
    font-size: 1rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-button:hover {
    color: green;
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff6b6b;
}
/* Custom Styles for Language Toggle */
/* Custom Primary Button */
.btn-custom-primary {
    background-color: rgba(238, 224, 208);; /* New primary color */
    color: green; /* Black text for better contrast */
    border: 1px solid rgba(238, 224, 208);; /* Match border color */
    /* font-weight: bold; */
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: #eae8e5; /* Slightly darker shade for hover effect */
    border-color: green;
    transform: scale(1.05); /* Optional: Slight zoom effect */
}

/* Custom Outline Button */
.btn-custom-outline {
    background-color: transparent; /* Transparent background */
    color: rgba(238, 224, 208);; /* Text color matches the primary color */
    border: 1px solid rgba(238, 224, 208);; /* Border color matches the primary color */
    /* font-weight: bold; */
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background-color: rgba(238, 224, 208);; /* Background changes to primary color on hover */
    color: green; /* Text color changes to black for better contrast */
    transform: scale(1.05); /* Optional: Slight zoom effect */
}

/* Contact Form Styling */
/* General Styles */

/* Contact Header */
h1.text-center {
    margin-top: 50px;
    color: black;
    font-weight: bold;
}

p.text-muted {
    font-size: 1rem;
    color: #6c757d;
}

/* Contact Form Styling */


/* Contact Information Section */
.row.mt-5 {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjust spacing between columns */
    margin-top: 40px;
}

.col-md-4 {
    padding: 10px; /* Reduce padding inside each column */
    text-align: center;
}

.col-md-4 i {
    font-size: 40px;
    color: rgba(238, 224, 208);
    margin-bottom: 10px; /* Space between icon and text */
}

.col-md-4 h5 {
    font-size: 18px;
    color: black;
    margin-bottom: 5px; /* Space between heading and paragraph */
}

.col-md-4 p {
    font-size: 14px;
    color: #6c757d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .row.mt-5 {
        flex-direction: column;
        gap: 15px; /* Reduce spacing further on smaller screens */
    }

    .col-md-4 {
        padding: 5px; /* Reduce padding further */
    }


}




    #about{

    }


    