@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

* {

font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
/*-- text-transform: capitalize; --*/
transition: 0.2s linear;

}

:root {
    --primary-color: #1c1c1c;
    --white: #fff;
    --box-shadow:0 0.5rem 1rem rgba(0,0,0,0.1);
    --gray: #808080;
    --light-gray: #eee;
    --gold: #cfc09f;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 7.5rem;
}
section {
    padding: 5rem 9%;
}
.heading {
    font-size: 4rem;
    color: var(--primary-color);
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.3rem;
}
.heading::after {
    content: '';
    position: absolute;
    border-bottom: 0.1rem solid var(--primary-color);
    width: 10rem;
    bottom: 1rem;
    left: 50%;
    display: inline-block;
    margin-left: -5rem;

}
span {
    font-size: 1.8rem;
    font-weight: 700;
}
button {
    background-color: var(--white);
    outline: 0.1rem solid var(--primary-color);
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}
button:hover {
    outline: none;
    background-color: var(--primary-color);
    color: var(--light-gray);

}



                                /*--Home Begin--*/
.home {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url(img/hero.jpg) no-repeat;
    background-size: cover;
    background-position: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}
.home h1{
    font-family: 'Playfair Display', sans-serif;
    font-size: 4rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    
}
.home a {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 2rem;
    margin-top: 60px;
}
.home a:hover {
    outline: 0.1rem solid var(--gold);
    border-radius: 10px;
    cursor: pointer;
}




                                /*--Home Ends--*/

                                /*--Header Begin--*/ 

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
header.active {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--box-shadow);
}
header .logo img {
    width: 40%;
    margin-right: auto; 
    padding-top: 10px;   
}

header .navbar ul {
    list-style: none;    
}
header .navbar ul li {
    position: relative;
    float: left;
}
header .navbar ul li a {
    font-size: 15px;
    padding: 20px;
    color: var(--primary-color);
    display: block;
    text-transform: uppercase;
}

header .navbar ul li a:hover {
    color: var(--light-gray);
} 
header .navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: var(--gray);
    display: none;
}
header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
}
header .navbar ul li ul li ul {
    left: 200px;
    top: 0;
}
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: initial;
}
.header .menu {
    font-size: 2.5rem;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}

                                /*--Header Ends--*/

                                /*--About Begins--*/
.about {
    margin-top: 100px;
}
.about .box-container .box img {
    width: 100%;
    height:100%;
    object-fit: cover;
}
.about .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}
.about .box-container p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: 0.1rem;
    color: var(--primary-color);
    text-transform: none;
    text-align: justify;
}
                                /*--About Ends--*/

                                /*--Services Begins--*/

.services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 5rem;
}
.services .box-container .box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
}
.services .box-container .box:hover {
    outline: solid 0.01rem var(--primary-color);
    border-radius: 10px;
    box-shadow: none;
}
.services .box-container .box img {
    width: 30%;
}

                                /*--Services Ends--*/

                                /*--History Begins--*/

.history  {
    margin-top: 1rem;
}                               

.history .box-container p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    letter-spacing: 0.1rem;
    color: var(--primary-color);
    text-transform: none;
    text-align: justify;
}
.history a {
    color: var(--primary-color);
}
.history a:hover {
    color: var(--white);
}
                                /*--Services Ends--*/

                                /*--Contact Section Begins--*/


                                /*--Contact Section Ends--*/
.contact {
    height: 85vh;
    background: url(img/contact_bg.png) no-repeat;
    background-size: cover;
    background-position: cover;
    background-attachment: fixed;
    margin-bottom: 3rem;
}

.contact .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}
.contact .box-container .box .form-group ion-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.contact .box-container .box .form-group span {
    font-size: 1.5rem;  
    font-weight: 400; 
    text-decoration: none;
}
.contact .box-container .box .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.contact .box-container .box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.contact .box-container .box label {
    font-size: 1.5rem;
    padding: 5px ;
}
.contact .box-container .box input {
    border: 0.1rem solid var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.contact .box-container .box textarea {
    border: 0.1rem solid var(--primary-color);
    padding: 1rem;
    border-radius: 10px;
}


                                /*--Contact Section Ends--*/

                                /* Awards Begin */


.awards .box-container {
    display: grid;
    margin-top: 8rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
}
.awards .box-container .box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 1.2rem;
}
.awards .box-container .box img {
    width: 80%;
}


                                /* Awards End */
                                /*--Footer Section Begins--*/
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 0.1rem solid var(--light-gray);
    margin-top: 6rem;
    

}
.footer .socials ion-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    border-radius: 50%;
    padding: 2rem ;
    margin-right: 1.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
}
.footer .socials ion-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-gray);
}
.footer .copyright  p {
    font-size: 1.5rem;
    font-weight: 800;
}
                                /*--Footer Section Ends--*/

                                /*--Media Queries Begin--*/
@media (max-width: 1200px) {
    header {
        padding: 2rem;
    }
    header .navbar ul li a {
        font-size: 11px;
        padding: 8px;
    }
    section {
        padding:  2rem;
    }
} 
@media (max-width: 991px)  {
    html {
        font-size: 60%;
    }
}
@media (max-width: 768px) {
    .header .navbar {
        position: fixed;
        top: 15rem;
        left: 0;
        right: 0;
        background-color: var(--gray);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: var(--box-shadow);
        transform: translateX(-90rem);
    }
    header .navbar.show {
        transform: translateX(0);
    }
    header.header .navbar a {
        color: #1c1c1c;
        margin: 0;
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .header .menu {
        display: block;
        z-index: 100;
    }
}
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
    .home h1 {
        font-size: 2rem;
    }
    .heading {
        font-size: 1.5rem;
    }
    
}