*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
}

nav{
    background-color: transparent;
    /* box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); */
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 50px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #f5c32c;
}

nav a:hover{
    background-color: #f0f0f033;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.menu-button{
    display: none;
}

@media (max-width:800px) {
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}

@media (max-width:400px) {
    .sidebar{
        width: 100%;
    }
}

/* NAVBAR ENDING */

/* SECTION A STARTING */

.sec-a{
    height: 400px;
    width: 100%;
    background-color: red;
    background-image: url(img7.jpg);
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
    padding: 1px;
}

.a1{
    height: 50%;
    width: 50%;
    /* background-color: tomato; */
    margin-left: 25%;
    margin-top: 8%;
    text-align: center;
    /* padding-top: 5%; */
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #f5c32c;
}

.btn{
    border-radius: 10px;
    height: 40px;
    width: 15%;
    color: rgb(245, 245, 245);
    background-color: rgba(0, 0, 0, 0.671);
    border: none;
    font-family: 'Playfair Display', serif;
}

.btn a{
    text-decoration: none;
    color: white;
    font-family: 'Playfair Display', serif;
}

@media (max-width:780px){
    .a1 p{
        font-size: 25px;
    }
    .btn{
        width: 30%;
    }
}

@media (max-width:480px){
    .a1{
        margin-top: 30%;
    }
    .a1 p{
        font-size: 20px;
    }
    .btn{
        width: 60%;
    }
}

/* SECTION A ENDING */

/* SECTION B STARTING */

.sec-b{
    min-height: 500px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
}

.b1{
    height: auto;
    width: 50%;
    background-color: rgba(255, 255, 255, 0);
    padding: 1px;
}

.b1-1{
    height: 80%;
    width: 80%;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 6%;
    margin-left: 10%;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    /* text-align: center; */
}

h1{
    font-family: 'Playfair Display', serif;
}

.b2{
    height: auto;
    width: 50%;
    background-color: rgba(255, 255, 255, 0);
    padding: 1px;
}

.b2-1{
    height: 400px;
    width: 80%;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 6%;
    margin-left: 10%;
    font-size: 30px;
    background-image: url(img8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid black;
}

.b2-2{
    height: 400px;
    width: 80%;
    background-color: rgba(255, 255, 255, 0);
    margin-top: 6%;
    margin-left: 10%;
    font-size: 30px;
    background-image: url(img10.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    border: 1px solid black;
}

h2{
    font-family: 'Playfair Display', serif;
}

@media (max-width:780px){
    .sec-b{
        display: block;
    }
    .b1{
        width: 100%;
        flex-direction: column;
    }
    .b2{
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width:480px){
    .b1-1{
        font-size: 18px;
    }
}

/* SECTION B ENDING */

/* SECTION C STARTING */

.c{
    min-height: 500px;
    width: 100%;
    background-color: white;
}

.c1{
    height: 100px;
    width: 100%;
    background-color: #f5c32c;
    border-radius: 99px ;
    text-align: center;
    align-content: center;
    font-size: 20px;
}

.c2{
    height: 400px;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.c2-1{
    width: 30%;
    height: 80%;
    background-color: white;
    border-radius: 50px;
}

.c2-1-1{
    height: 100%;
    width: 100%;
    background-image: url(img3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.c2-2-1{
    height: 100%;
    width: 100%;
    background-image: url(igm13.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.c2-2-1:hover{
    transition: 0.8s ease;
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.c2-1-1:hover{
    transition: 0.8s ease;
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.c2-2{
    width: 30%;
    height: 80%;
    background-color: white;
    border-radius: 50px;
}

.c2-1-2{
    height: 100%;
    width: 100%;
    background-image: url(img11.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.c2-2-2{
    height: 100%;
    width: 100%;
    background-image: url(img14.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.c2-2-2:hover{
    transition: 0.8s ease;
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.c2-1-2:hover{
    transition: 0.8s ease;
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.c2-3{
    width: 30%;
    height: 80%;
    background-color: white;
    border-radius: 50px; 
}

.c2-1-3{
    height: 100%;
    width: 100%;
    background-image: url(img12.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.c2-2-3{
    height: 100%;
    width: 100%;
    background-image: url(img15.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.c2-2-3:hover{
    transition: 0.8s ease;
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

.c2-1-3:hover{
    transition: 0.8s ease;
    transform: scale(1.05);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}

@media (max-width:780px){
    .c2{
        display: block;
    }
    .c2-1{
        width: 80%;
        height: 30%;
        justify-self: center;
    }
    .c2-2{
        width: 80%;
        height: 30%;
        justify-self: center;
    }
    .c2-3{
        width: 80%;
        height: 30%;
        justify-self: center;
    }
}

/* SECTION C ENDING */

/* FOOTER SECTION STARTING */


footer{
    min-height: 400px; /* height hata kar min-height */
    width: 100%;
    background-color: red;
}

.d{
    min-height: 300px; /* height hata */
    width: 100%;
    background-color: pink;
    display: flex;
}

.d1{
    min-height: 300px;
    width: 100%;
    background-color:rgba(0, 0, 0, 0.678);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    flex-wrap: wrap; /* IMPORTANT */
}

.d1-1,
.d1-2,
.d1-3{
    height: 80%;
    width: 33%;
    background-color: white;
    border-radius: 50px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.d1-1{
    height: 80%;
    width: 33%;
    background-color: white;
    border-radius: 50px;
    overflow: hidden; /* ⭐ VERY IMPORTANT */
    border-radius: 20px;
}

/* iframe ko full stretch karne ke liye */
.d1-1 iframe{
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* sirf color difference maintain */
.d1-3{
    background-color: white;
    font-size: 25px;
    font-family: 'Playfair Display', serif;
}

.e{
    min-height: 100px;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.e1{
    height: 80%;
    width: 50%;
    background-color: black;
    text-align: center;
    align-content: center;
    color: #f5c32c;
    font-family: 'Playfair Display', serif;
}

/* 📱 Tablet */
@media (max-width: 992px){
    .d1-1,
    .d1-2,
    .d1-3{
        width: 45%;
        margin: 10px 0;
    }

    .e1{
        width: 70%;
    }
}

/* 📱 Mobile */
@media (max-width: 600px){
    .d1{
        flex-direction: column;
    }

    .d1-1,
    .d1-2,
    .d1-3{
        width: 90%;
        height: auto;
        padding: 15px;
    }

    .e1{
        width: 90%;
    }
}

/* FOOTER SECTION ENDING */

/* INDEX PAGE CSS ENDING */

