@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500&display=swap');

:root {
    --white: white;
    --black: black;
    --dim-text: #777;
    --btn-dim-text: #333;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.355);
    --reach-container: linear-gradient(135deg, #022674, #0056b3);
    --reach-icon: #e8e8e8;
    --reach-border: #022674;
    --reach-mail: hsl(298, 100%, 50%);
    --con-bg: rgba(0, 0, 0, 0.6);
    --loc-content-box: 0 6px 15px rgba(0, 0, 0, 0.08);

}

html.dark-mode {
    --white: #000000;
    --black: #ffffff;
    --dim-text: #aaaaaa;
    --btn-dim-text: #e0e0e0;
    --box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    --reach-container: linear-gradient(135deg, #24252f, #3a4951);
    --reach-icon: #e0e0e0;
    --reach-border: rgba(255, 255, 255, 0.2);
    --reach-mail: #f06292;
    --con-bg: rgba(255, 255, 255, 0.15);
    --loc-content-box: 0 6px 15px rgba(210, 207, 207, 0.37);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    overflow-x: hidden;
    /* scroll-behavior: smooth; */
}

.header-cls {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: var(--white);
    position: fixed;
    z-index: 100;
}

.logo img {
    width: 150px;
    padding: 16px;
}

.menu-items {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--white);
}

.btn-close {
    display: none;
}

.hamburger {
    display: none;
}

.btn:hover {
    transform: scale(1.1);
}

.theme-toggle {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 12px;
    border-radius: 30%;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-right: 20px;
    /* position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000; */
}

body.dark .theme-toggle {
    background: #ddd;
    color: black;
}

.menu-items a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px;
}

.menu-items a:hover::after {
    width: 100%;
}

.menu-items a:hover {
    color: #ff4081;
}

.menu-icons {
    display: flex;
    text-decoration: none;
    list-style: none;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    margin-right: 20px;
}

.menu-icons a {
    color: var(--black);
}

.footer {
    margin-top: 5%;
}

.footer-head {
    display: grid;
    grid-template-rows: 6fr 1fr;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: black;
    color: white;
}

.footer-grid h3 {
    color: #0385ff;
}


.footer-content-company {
    margin: 7%;
}

.footer-content-company p {
    text-indent: 35px;
    margin: 0;
}

.footer-nav-grid {
    display: grid;
}

.footer-content-nav a {
    text-decoration: none;
    list-style: none;
    line-height: 50px;
    text-indent: 20px;
    color: white;
    transition: transform 0.5s ease;
}

.footer-content-nav a:hover {
    color: #0385ff;
    transform: translatey(-10px);
}

.footer-content-nav li {
    cursor: pointer;
}

.footer-content-contact a {
    list-style: none;
    text-decoration: none;
    color: white;
    text-indent: 20px;
    transition: color 0.5s ease;

}

.footer-content-contact a:hover {
    color: #0385ff;
}

.footer-content-legal-link a {
    text-decoration: none;
    color: white;
    text-align: justify;

}

.footer-content-legal-link li {
    list-style: none;
    text-indent: 20px;
    text-align: justify;
    transition: transform 0.5s ease;

}

.footer-content-legal-link li:hover {
    color: #0385ff;
    transform: translatey(-10px);
}

.footer-content-legal-link a {
    line-height: 70px;
    cursor: pointer;
    transition: transform 0.5s ease;
    /* color: white; */

}

.footer-content-legal-link a:hover {
    color: #0385ff;
    transform: translatey(-10px);
}

.footer-copy {
    text-align: center;
    background-color: #1C1C1C;
    color: white;
}

#backToTop {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s;
    z-index: 1999;
}

#backToTop:hover {
    background: #444;
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .header-cls img {
        width: 40%;
    }

    .menu-items {
        gap: 20px;
        font-size: 16px;
    }

    .menu-icons {
        display: none;
    }

    .sponsor-grid {
        gap: 30px;
    }

    .sponsor-grid img {
        height: 60px;
    }

    .testimonial {
        flex: 0 0 100%;
    }

    .testimonial-container {
        gap: 10px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-grid-l form {
        grid-template-columns: repeat(2, 50%);

    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width:768px) {
    .menu-items {
        flex-direction: column;
        background: #000000;
        position: fixed;
        top: 0;
        right: -350px;
        width: 250px;
        height: auto;
        padding: 60px 20px;
        transition: right 0.5s ease;
        z-index: 999;
        /* color: #0385ff; */
    }

    .menu-items a {
        font-size: 18px !important;
        color: white;
    }

    .btn-close {
        display: block;
        color: rgb(0, 0, 0);
        background-color: #0385ff00;
        cursor: pointer;
        border-color: #00000000;
    }

    .hamburger {
        display: block;
        margin-right: 30px;
        cursor: pointer;
        color: var(--black);

    }

    .menu-items.show {
        right: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
        align-content: flex-start;
    }

    .hamburger:hover {
        color: #b82e5e;
    }

    .overlay {
        top: 75%;
        left: 50%
    }

    .menu-icons {
        display: none;
    }

    .menu-items {
        display: none;
    }

}

.contact-us-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./asstes/contact-us-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-us-hero h1 {
    font-size: 46px;
    margin: 0;
}

.contact-us-para {
    text-align: center;
    margin: 5%;
    line-height: 40px;
    letter-spacing: 1px;
    color: var(--black);
}

.location-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 3%;
    color: var(--black);
}

.contact-location iframe {
    width: 90%;
    height: 400px;
    border: 0;
    border-radius: 16px;
    margin: 20px 0;
    background: var(--map-linear-g);
    padding: 8px;
    border-radius: 18px;
}

.loc-content .l-content {
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--black);
}

.loc-content .l-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--loc-content-box);
}

.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--con-bg);
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #fff;
}

.contact-header h1 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: .5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-header p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 90%;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: none;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    transition: all .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.568);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-submit {
    padding: 1rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #ff0080, #7928ca);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255, 0, 128, 0.4);
}

.newsletter-container {
    margin: 5%;
    background-color: #363A45;
    padding: 16px 10px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 30px;
    text-align: center;
    min-height: 50vh;
    color: white;
}

.newsletter-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-input {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.newsletter-input input {
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.4s;
}

.newsletter-input button {
    padding: 16px;
    border-radius: 15px;
    background-color: #0385ff;
    color: white;
    border-color: #0385ff00;
    cursor: pointer;
}

.newsletter-input button:hover {
    background-color: #004cff;
}

.newsletter-content h1 {
    letter-spacing: 2px;
    font-size: 32px;
    color: #578aff;
    margin: 0%;
}

.newsletter-input input:focus {
    border-color: #00ffd0;
}

@media (max-width:478px) {
    .newsletter-container {
        margin: 2%;
    }

    .reach-container {
        /* margin: 3% !/important; */
        margin-left: 2 !important;
        margin-right: 3% !important;
    }
}

.reach-container {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    background: var(--reach-container);
    color: var(--white);
    height: auto;
    border: 20px solid;
    border-radius: 35px;
    margin-left: 5%;
    margin-right: 5%;
    gap: 20px;
    padding-bottom: 20px;
    overflow-x: hidden;
}

.reach-bottom-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    gap: 80px;
    margin-left: 5%;

}

.reach-top-container {
    margin-left: 5%;
}

.reach-top-container h4 {
    width: auto;
    padding: 6px;
    font-size: 26px;
    color: #00b0b3;
}

.reach-top-container p,
h3 {
    color: white;
}

.reach-bottom-container i {
    border-radius: 70%;
    border: 2px solid var(--reach-border);
    color: var(--reach-icon);
    width: 15%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reach-bottom-container span {
    color: white !important;
}

.reach-email span {
    margin-bottom: 30%;
    margin: 0;
    padding: 0%;
}

.reach-bottom-container h4 {
    font-weight: 600;
    margin: 0%;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 0%;
    color: white;
}

.mailID a {
    color: var(--reach-mail);
    cursor: pointer;
    text-decoration: none;
}

.reach-bottom-container a {
    text-decoration: none;
    color: var(--reach-mail);
}

@media (max-width:976px) {
    .reach-bottom-container {
        gap: 60px;
    }

}

.social-icons img {
    width: 30px;
    height: 30px;

}

.social-icons-img {
    display: flex;
    gap: 30px;
}