*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
html{
    /* Smooth Scrolling */
    scroll-behavior: smooth;
    /* === Variables For Storing Colors === */
    --primary-clr: #5c6fd5;
    --bg-light-clr: rgba(12,113,195,0.10);
    --dark-heading-clr: #15181d;
    --dark-sub-heading-clr: #181c1f;
    --dark-text-clr: #454545;
    --light-heading-clr: #fefefe;
    --light-sub-heading-clr: #e2e9fa;
    --light-text-clr: #ccd1dd;
}
body{
    width: 100%;
    height: 100%;
}
.website-wrapper{
    width: 100%;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0px auto;
    background-color: var(--light-heading-clr);
}
/* === Reusable Code Starts === */
button.btn{
    padding: 14px 30px;
    border: 1px solid transparent;
    border-radius: 25px;
    background-color: var(--primary-clr);
    color: var(--light-heading-clr);
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}
button.btn:hover{
    background-color: transparent;
    color: var(--primary-clr);
    border: 1px solid var(--primary-clr);
}
header.section-heading{
    position: relative;
    max-width: 550px;
    margin-bottom: 35px;
    z-index: 3;
}
header.section-heading h3{
    font-size: 16px;
    color: var(--primary-clr);
    font-weight: 500;
    margin-bottom: 5px;
}
header.section-heading h1{
    font-size: calc(24px + 1.5vw);
    color: var(--dark-heading-clr);
    font-weight: 500;
}
header.section-heading p{
    font-size: 17px;
    color: var(--dark-sub-heading-clr);
    margin: 10px 0px 20px;
    line-height: 1.3;
}
/* === Reusable Code Ends === */

/* === Home Section Starts === */
section.home{
    width: 100%;
    min-height: 100vh;
}
.home .top-bar{
    width: 100%;
    padding: 15px 8%;
    background-color: var(--bg-light-clr);
    display: flex;
    justify-content: space-between;
}
.home .top-bar .phone-email{
    display: flex;
}
.home .top-bar .phone-email i{
    margin-right: 3px;
    color: var(--dark-heading-clr);
    font-size: 15px;
}
.home .top-bar .phone-email span{
    color: var(--dark-heading-clr);
    font-size: 15px;
}
.home .top-bar .phone-email .phone{
    margin-right: 15px;
}
.top-bar .top-social-links{
    position: relative;
}
.top-bar .top-social-links a{
    text-decoration: none;
    color: var(--dark-heading-clr);
    margin-left: 15px;
}
.top-bar .top-social-links a i{
    font-size: 15px;
    color: var(--dark-heading-clr);
    transition: 0.3s;
}
.top-bar .top-social-links a i:hover{
    color: var(--primary-clr);
    transform: translateY(-2px);
}
.home .navbar{
    position: relative;
    width: 100%;
    height: 80px;
    padding: 0px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-heading-clr);
    z-index: 100;
}
.home.active .navbar{
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
    animation: animateNavbar 0.5s linear;
    z-index: 100;
}
@keyframes animateNavbar{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0px);
    }
}
.home .navbar .logo{
    position: relative;
}
.home .navbar .logo img{
    height: 150px;
}
.home .navbar ul.nav-links{
    list-style: none;
}
.home .navbar ul.nav-links li{
    display: inline-block;
    margin-left: 15px;
}
.home .navbar ul.nav-links li a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-heading-clr);
    transition: color 0.3s;
}
.home .navbar ul.nav-links li a:hover{
    color: var(--primary-clr);
}
.home .navbar .menu-btn{
    position: relative;
    display: flex;
    align-items: center;
    width: 26px;
    height: 20px;
    cursor: pointer;
    display: none;
}
.home .navbar .menu-btn span{
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-heading-clr);
    border-radius: 15px;
    transition: transform 0.3s, opacity 0.3s;
}
.home .navbar .menu-btn span:nth-of-type(1){
    transform: translateY(-7px);
}
.home .navbar .menu-btn span:nth-of-type(3){
    transform: translateY(7px);
}
.home .banner{
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-image: url(pic/About\ Pic.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0px 8%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.home.active .banner{
    margin-top: 80px;
}
.home .banner .home-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}
.home .banner .text-wrapper{
    position: relative;
    color: var(--light-heading-clr);
    z-index: 2;
}
.home .banner .text-wrapper h1{
    font-size: 4rem;
    text-align: center;
    margin-left: 320px;
    padding-bottom: 10px;
    margin-top: -35px;
}
.home .banner .text-wrapper h1 span{
    color: var(--primary-clr);
}
.home .banner .text-wrapper p{
    font-size: 1.3rem;
    text-align: center;
    margin-left: 330px;
    line-height: 1.3;
}

/* === Home Section Ends === */

/* === Heading Section Starts === */
section.heading{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px;
    background-color: white;
}
.heading .content{
    padding-right: 0px;
    color: black;
    margin-top: 75px;
}
.heading .content h1{
    font-size: 2.5rem;
    color: var(--dark-sub-heading-clr);
    padding-bottom: 25px;
}
.heading .content h1 span{
    color: var(--primary-clr);
}
.heading .content p{
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-text-clr);
    margin-bottom: 20px;
}
.heading .image img{
    width: 100%;
    height: auto;
    margin-left: 25px;
    border-radius: 5px;
}
/* === Heading Section Ends === */

/* === Number Section Starts === */
section.Number{
    width: 100%;
    padding: 100px;
}
.Number .Countar-Number{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--primary-clr);
    border-radius: 5px;
    margin-top: -100px;
}
.Number .Countar-Number .Number-box{
    padding: 40px;
    text-align: center;
}
.Number .Countar-Number .Number-box h3{
    font-size: calc(24px + 1.5vw);
    color: var(--light-heading-clr);
    margin-bottom: 10px;
}
.Number .Countar-Number .Number-box p{
    font-size: 19px;
    color: var(--light-sub-heading-clr);
}

/* === Number Section Ends === */

/* === Mission Section Starts === */
section.mission{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px;
    margin-top: -15px;
}
.mission .image img{
    width: 100%;
    height: 90%;
}
.mission .content{
    margin-left: 25px;
    margin-top: 50px;
}
.mission .content h2{
    font-size: 2.5rem;
    padding-bottom: 5px;
}
.mission .content p{
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--dark-text-clr);
}
.mission .content1 h2{
    font-size: 2.5rem;
    margin-top: 25px;
}
.mission .content1 p{
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--dark-text-clr);
}
/* === Mission Section Ends === */

/* === Review Section Starts === */
section.Review{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-clr);
    border-radius: 15px;
    margin-left: 100px;
    margin-right: 100px;
}
.Review .content h1{
    font-size: 2.3rem;
    width: 82%;
    line-height: 1.3;
    color: var(--light-heading-clr);
    margin-top: 50px;
    margin-left: 60px;
}
.Review .image img{
    height: 80%;
    width: 45%;
    border-radius: 50%;
    margin-top: 50px;
    margin-left: 200px;
}
/* === Review Section Ends === */

/* === Consultation Section Starts === */
section.consultation{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-clr);
    margin-top: 90px;
    margin-left: 100px;
    margin-right: 100px;
    padding-bottom: 50px;
    border-radius: 15px;
}
.consultation .text h2{
    font-size: 1.8rem;
    color: var(--light-heading-clr);
    margin-left: 100px;
    margin-top: 50px;
}
.consultation .text p{
    font-size: 1.3rem;
    color: var(--light-heading-clr);
    margin-left: 100px;
    margin-top: 8px;
    margin-right: -100px
}
.consultation .button{
    margin-top: 70px;
    margin-left: 250px;
}
.consultation .button a{
    font-size: 1.2rem;
    color: var(--light-heading-clr);
    text-decoration: none;
    border: 2px solid var(--light-heading-clr);
    padding: 12px 20px 12px 20px;
    border-radius: 50px;
}
.consultation .button a:hover{
    color: var(--dark-sub-heading-clr);
    border-color: var(--dark-sub-heading-clr);
}
/* === Consultation Section Ends === */

/* === Footer Section Starts === */
section.footer{
    position: relative;
    width: 100%;
    padding: 70px 8% 50px;
    background-color: #2c3c89;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    grid-gap: 20px;
    margin-top: 120px;
}
.footer .footer-col{
    position: relative;
    z-index: 2;
}
.footer .footer-col .col-header{
    position: relative;
    margin-bottom: 20px;
}
.footer .footer-col .col-header h2{
    font-size: calc(16px + 0.6vw);
    color: var(--light-heading-clr);
    font-weight: 500;
}
.footer-col-1 .col-header img{
    width: calc(100px + 0.6vw);
}
.footer-col-1 .col-desc p{
    font-size: 15px;
    color: var(--light-text-clr);
    line-height: 1.3;
}
.footer-col-1 .col-desc p:nth-child(2){
    margin-top: 5px;
}
.footer-col-1 .col-desc .footer-social-media{
    margin-top: 30px;
}
.col-desc .footer-social-media a{
    color: var(--light-heading-clr);
    text-decoration: none;
    font-size: calc(12px + 0.4vw);
    margin-right: 15px;
    transition: color 0.3s;
}
.col-desc .footer-social-media a:hover{
    color: var(--primary-clr);
}
.footer-col-2 .col-desc{
    display: flex;
    flex-direction: column;
}
.footer-col-2 .col-desc .contact-row{
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}
.footer-col-2 .col-desc .contact-row span{
    color: var(--light-text-clr);
    font-size: 16px;
}
.footer-col-2 .col-desc .contact-row span:nth-child(1){
    color: var(--light-text-clr);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 2px;
}
.footer-col-3 .col-desc{
    display: flex;
    flex-direction: column;
}
.footer-col-3 .col-desc a{
    position: relative;
    text-decoration: none;
    color: var(--light-text-clr);
    margin-bottom: 15px;
    align-self: flex-start;
    transition: all 0.3s;
    left: 15px;
}
.footer-col-3 .col-desc a::before{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--light-text-clr);
    border-radius: 50%;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}
.footer-col-3 .col-desc a:hover{
    letter-spacing: 2px;
}
.footer-col-4 .col-desc{
    display: flex;
    flex-direction: column;
}
.footer-col-4 .col-desc p{
    font-size: 15px;
    color: var(--light-text-clr);
    line-height: 1.3;
}
.footer-col-4 .col-desc form{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.footer-col-4 .col-desc form input{
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-heading-clr);
    outline: none;
    border-radius: 5px;
    margin-bottom: 10px;
}
.footer-col-4 .col-desc form .email-submit-btn{
    border-radius: 5px;
}
/* === Footer Section Ends === */

/* === Copyrights Section Starts === */
section.copyrights{
    padding: 0px 8%;
    background-color: #2c3c89;
}
.copyrights .line{
    width: 100%;
    height: 1px;
    background-color: #777;
}
.copyrights p{
    padding: 25px 0px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.copyrights p span{
    color: var(--light-text-clr);
}
/* === Copyrights Section Ends === */



/* === Media Query Starts === */

@media(max-width: 968px){
    /* Footer Section */
    section.footer{
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px){
    /* Home Section */
    .home .top-bar{
        display: none;
    }
    .home .navbar .menu-btn{
        display: flex;
    }
    .home .navbar .menu-btn.active span:nth-of-type(1){
        transform: translateY(0px) rotate(45deg);
    }
    .home .navbar .menu-btn.active span:nth-of-type(3){
        transform: translateY(0px) rotate(-45deg);
    }
    .home .navbar .menu-btn.active span:nth-of-type(2){
        opacity: 0;
    }
    .home .navbar ul.nav-links{
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 30px 0px;
        background-color: var(--light-heading-clr);
        border-top: 1px solid var(--bg-light-clr);
        z-index: 99;
        transition: 0.3s;
        transform: scaleY(0);
        transform-origin: top;
    }
    .home .navbar ul.nav-links.active{
        transform: scaleY(1);
    }
    .home .navbar ul.nav-links li{
        margin: 0;
    }
    .home .navbar ul.nav-links li a{
        display: block;
        width: 100%;
        padding: 15px 0px;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    .home .navbar ul.nav-links li a:hover{
        background-color: var(--bg-light-clr);
    }
    .home .banner .text-wrapper h1{
        font-size: 4rem;
        text-align: center;
        margin-left: 0px;
    }
    .home .banner .text-wrapper h1 span{
        color: var(--primary-clr);
    }
    .home .banner .text-wrapper p{
        margin-left: 0px;
    }
    
}

@media(max-width: 568px){
    /* Footer Section */
    section.footer{
        grid-template-columns: 1fr;
        grid-gap: 40px 0px;
        margin-top: 90px;
    }
    /* Heading Section */
    section.heading{
        grid-template-columns: 1fr;
    }
    .heading .content h1{
        width: 148%;
        margin-top: -160px;
        margin-left: -65px;
    }
    .heading .content p{
        width: 150%;
        margin-top: -15px;
        margin-left: -65px;
    }

    .heading .image img{
        width: 150%;
        align-items: center;
        height: 100%;
        border-radius: 5px;
        margin-left: -70px;
        margin-top: 10px;
    }
    /* Number Section */
    .Number .Countar-Number{
        grid-template-columns: repeat(1, 1fr);
    }
    /* Mission Section */
    section.mission{
        grid-template-columns: 1fr;
    }
    .mission .image img{
        width: 140%;
        height: 100%;
        margin-top: -35px;
        margin-left: -55px;
    }
    .mission .content{
        margin-left: -40px;
        margin-right: -40px;
    }
    /* Review Section */
    section.Review{
        grid-template-columns: 1fr;
        margin-left: 30px;
        margin-right: 20px;
    }
    .Review .content h1{
        font-size: 1.9rem;
        width: 90%;
        margin-left: 30px;
        padding-bottom: 10px;
    }
    .Review .image{
        margin-top: -10px;
        padding-bottom: 15px;
    }
    .Review .image img{
        margin-left: 130px;
    }
    /* Consultation Section */
    section.consultation{
        grid-template-columns: 1fr;
        margin-left: 30px;
        margin-right: 20px;
    }
    .consultation .text h2{
        margin-left: 30px;
    }
    .consultation .text p{
        margin-left: 30px;
        margin-right: -15px;
    }
    .consultation .button{
        margin-top: 50px;
        margin-left: 40px;
    }
}