/* Custom Fonts - End */

/* Main Style - Start */
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'MonaSans', sans-serif;
    scroll-behavior: smooth;
    font-weight: 400;
    font-size: 16px;
    background-color: var(--white);
    line-height: 1.6;
    max-width: 100%;
}

p,
li {
    margin: 0;
    color: var(--black);
}

a {
    text-decoration: none;
    font-size: 16px;
    color: var(--black);
    transition: color 0.3s ease;
}

/* Heading Styles */
h1,
h2,
h3,
h4 {
    font-family: 'Dellaris', serif;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
    max-width: 100%;
    color: var(--dtc1);
}

h5,
h6 {
    font-family: 'MonaSans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    max-width: 100%;
    color: var(--black);
}

/* Specific heading sizes */
h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}


@media (max-width: 767.98px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }
}

/* Header - Start */
header {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom,
            var(--white) 0%,
            rgba(229, 232, 225, 0) 100%);
}

.header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.brand-logo img {
    width: 150px;
    height: auto;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.brand-navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--black);
    padding: 8px 8px 8px 30px;
    border-radius: 100px;
    height: 50px;
}

.theme-toggle {
    background-color: var(--black);
    color: var(--white);
    padding: 8px;
    border-radius: 100px;
    height: 50px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-icon i {
    font-size: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--dtc1);
}

.brand-navbar a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
}

.brand-navbar a:active {
    color: var(--ltc1);
}

.brand-navbar a:hover {
    color: var(--tc2);
}

.header-btn {
    background-color: var(--tc2);
    color: #101C1D;
    border-radius: 100px;
    padding: 5px 20px;
    border: 0px;
    transition: color 0.3s ease;
}

.header-btn:hover {
    background-color: var(--tc1);
    color: var(--white);
}

@media (max-width: 995px) {
    .hidefromtablet {
        display: none;
    }

    .brand-navbar {
        padding: 5px;
        height: 45px;
    }

    .theme-toggle {
        height: 45px;
        width: 45px;
    }
}

@media (max-width: 767.98px) {
    .brand-navbar {
        padding: 5px;
        height: 45px;
    }

    .theme-toggle {
        height: 45px;
        width: 45px;
    }
}
@media (max-width: 375px) {    
    .brand-logo img {
        width: 120px;
    }
    .brand-navbar a {
        font-size: 14px;
    }
    .brand-navbar {
        padding: 5px;
        height: 40px;
    }

    .theme-toggle {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 328px) {    
    .brand-logo img {
        width: 100px;
    }
}

@media (max-width: 308px) {    
    .brand-navbar {
        display: none;
    }
}

/* Header - End */
/* Footer - Start */
footer {
    background-color: var(--white);
    border-top: 1px solid var(--elgray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.footer-grid-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0;
}

.footer-grid-item img {
    width: 150px;
    height: auto;
}

.footer-grid-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dtc1);
    font-family: 'MonaSans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-grid-item p {
    color: var(--black);
    margin-top: 10px;
    line-height: 1.5;
}

.footer-grid-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid-item ul li {
    margin-bottom: 5px;
}

.footer-grid-item ul li a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-grid-item ul li a:hover {
    color: var(--tc1);
}

.social-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 10px;
}

.social-container a {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    color: var(--white) !important;
    border-radius: 100px;
    transition: color 0.3s ease;
}


.social-container a:hover {
    background-color: var(--tc2);
    color: var(--black) !important;
}

.footer-end {
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--elgray);
    text-align: center;
}

@media (max-width: 767.98px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .footer-grid-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0;
    }
}

/* Footer - End */
.img-bg {
    background-image: url('web-img/backdrop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.color-bg {
    background-color: var(--white);
}

.center-text {
    text-align: center;
}

/* Button */
button {
    transition: color 0.3s ease;
}

.btn-sec {
    border: 0px;
    border-radius: 100px;
    padding: 5px 5px 5px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    background-color: var(--white);
    color: var(--dtc1);
    transition: color 0.3s ease;
}

.btn-sec img {
    width: 30px !important;
    height: auto !important;
    margin-bottom: 0px !important;
}

.btn-pri {
    border: 0px;
    border-radius: 100px;
    padding: 3px 3px 2px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    background-color: var(--white);
    color: var(--dtc1);
    margin-top: -3px;
    transition: color 0.3s ease;
}

.btn-pri img {
    width: 30px !important;
    height: auto !important;
    margin-bottom: 0px !important;
}


/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.icon-ctn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--black);
    border-radius: 50px;
}

.icon-ctn i {
    font-size: 16px;
    color: var(--white);
    border-radius: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--gray);
    color: var(--black);
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 16px;
}

.submit-btn {
    background-color: var(--tc1);
    border: 1px solid var(--tc1);
    color: #E5E8E1;
    border-radius: 10px;
    padding: 8px 0px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
}

@media (max-width: 767.98px) {}
