/* Google Fonts (Manrope) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Google Fonts (Roboto) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --logo-color: #cba034;
}

/* 

Table Of Contents:

1. Nav Styling (Universal)
    i.Hamburger Menu Styling (Universal)

2. Footer Styling (Universal)

3.Scrollbar Styling(Universal)

4.Home Page Styling
    i.Slides Styling
    ii.Main Styling

5.About Page Styling

6.Contact Page Styling

*/

/* Nav Styling */

nav {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo img {
    height: 50px;
    width: 237px;
}

.nav-list {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-family: "Manrope";
    font-weight: bold;
}

.nav-link a {
    text-decoration: none;
    color: #000;
    transition: all .4s ease;
}

.nav-link a:hover {
    color: var(--logo-color);
}

/* Hamburger Menu Styling */

.icon-menu {
    --gap: 5px;
    --height-bar: 2.5px;
    --pos-y-bar-one: 0;
    --pos-y-bar-three: 0;
    --scale-bar: 1;
    --rotate-bar-one: 0;
    --rotate-bar-three: 0;
    width: 25px;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    cursor: pointer;
    position: relative;
    display: none;
}

.bar {
    position: relative;
    height: var(--height-bar);
    width: 100%;
    border-radius: .5rem;
    background-color: #000;
}

.bar--1 {
    top: var(--pos-y-bar-one);
    transform: rotate(var(--rotate-bar-one));
    transition: top 200ms 100ms, transform 100ms;
}

.bar--2 {
    transform: scaleX(var(--scale-bar));
    transition: transform 150ms 100ms;
}

.bar--3 {
    bottom: var(--pos-y-bar-three);
    transform: rotate(var(--rotate-bar-three));
    transition: bottom 200ms 100ms, transform 100ms;
}

.check-icon:checked+.icon-menu>.bar--1 {
    transition: top 200ms, transform 200ms 100ms;
}

.check-icon:checked+.icon-menu>.bar--3 {
    transition: bottom 200ms, transform 200ms 100ms;
}

.check-icon:checked+.icon-menu {
    --pos-y-bar-one: calc(var(--gap) + var(--height-bar));
    --pos-y-bar-three: calc(var(--gap) + var(--height-bar));
    --scale-bar: 0;
    --rotate-bar-one: 45deg;
    --rotate-bar-three: -45deg;
}

/* Footer Styling */

footer {
    background-color: #000;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 115px;
    font-family: Manrope;
    font-size: .9rem;
    width: 100%;
}

footer p {
    color: #fff;
}

footer a {
    color: #fff;
}

footer i {
    font-size: 2rem;
    transition: 0.4s ease;
}

footer i:hover {
    transform: translateY(-5px);
}

footer p:last-child {
    text-align: right;
}

/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: var(--logo-color);
}

/* Home Page Styling */

/* Slides Styling */

.swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-weight: bold;
    text-align: center;
    line-height: 30px !important;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
    font-size: 20px !important;
}

/* Main Styling */

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Manrope;
    margin: 70px 0;
}

.mainH1 {
    color: var(--logo-color);
    text-align: center;
    font-size: 2.5rem;
}

.mainP {
    font-size: 1.5rem;
    width: 500px;
    text-align: center;
    margin-top: 20px;
}

.mainInner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 70px 250px;
    gap: 150px;
}

.mainImg {
    height: 300px;
    width: 300px;
}

.mainInner h3 {
    text-align: center;
    margin: 10px 0;
    font-size: 20px;
}

.mainInner p {
    text-align: justify;
    width: 400px;
    font-size: 18px;
}

/* About Page Styling */

.about-container {
    background-color: #dddddd6b;
    font-family: Manrope;
    text-align: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.about-container h2:last-child {
    font-size: 1.7rem;
    color: var(--logo-color)
}

/* Contact Page Styling */

.questions {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Roboto;
    font-size: 2rem;
    color: #fff;
    background-color: #00000089;
    background-image: url('Images/contactBg.jpeg');
    background-position: center;
    background-blend-mode: darken;
}

.email {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: Roboto;
    border-bottom: 1px solid #00000090;
}

.email i {
    color: #fff;
    font-size: 1.7rem;
    background-color: #000;
    padding: 15px;
    border-radius: 7px;
    transition: background-color .3s ease;
}

.email i:hover {
    background-color: var(--logo-color);
}

.email h3:last-child {
    opacity: .75;
}

.main-about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 100px 0;
}

.contact-form-container {
    width: 500px;
    font-family: Manrope;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-group .name {
    width: 49.5%;
    padding: 10px 10px 5px 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #00000080;
    outline: none;
    font-family: Manrope;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #00000080;
    border-radius: 2px;
    box-sizing: border-box;
    font-family: Manrope;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    font-family: Manrope;
}

.form-group textarea:focus,
.form-group input[type="file"]:focus {
    border: 2px solid var(--logo-color);
}

.form-group input[type="file"]::-webkit-file-upload-button {
    font-family: Manrope;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 10px 10px 5px 5px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: Manrope;
    border: none;
    border-bottom: 2px solid #00000080;
    outline: none;
}

.form-group input[type="email"]:focus,
.form-group .name:focus {
    border-bottom: 2px solid #cba034;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 2px;
    box-sizing: border-box;
    font-family: Manrope;
    border: 2px solid #00000080;
    outline: none;
}

.submit-btn {
    width: 100%;
    background-color: var(--logo-color);
    color: #fff;
    padding: 10px 15px;
    font-family: Manrope;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid var(--logo-color);
}

.submit-btn:hover {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
}