* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    -webkit-user-drag: none;
}

body {
    background-color: #fff;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}


/* NAV BAR */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: calc(100% - 12px);
    padding: 12px 20px;
    margin: 6px;

    background-color: #272626;
    border-radius: 10px;
}

.nav-container .logo img {
    display: block;
    width: auto;
    height: 50px;
    transition: transform .5s ease-in-out;
}

.nav-container .logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 20px;
    margin: 10px;
    padding: 0;
}

.nav-links a {
    position: relative;

    color: #0ccf9e;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;

    text-decoration: none;
}

.nav-links a:hover {
    color: #ec4949;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background-color: #0ccf9e;

    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================
   CONTACT CONTAINER
========================================= */

.contact-container {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 50px;

    padding: 50px 30px;
}


/* =========================================
   MAP
========================================= */

.map {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50%;
}

.map iframe {
    display: block;

    width: 100%;
    max-width: 600px;
    height: 550px;

    border: 0;
    border-radius: 10px;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact {
    display: flex;
    flex-direction: column;

    width: 50%;
    max-width: 650px;

    margin: 0;
}

.contact-form {
    width: 100%;
}


/* =========================================
   CONTACT TITLE
========================================= */

.contact-form h1 {
    font-size: 43px;
    font-family: "Poppins", sans-serif;
    font-weight: 450;
    text-decoration: underline wavy #fff;
    transition: text-decoration .4s ease-in-out;


    padding-bottom: 15px;
}

.contact-form h1:hover {
    text-decoration: underline wavy #0ccf9e;
}


/* =========================================
   CONTACT DESCRIPTION
========================================= */

.contact-form p {
    font-size: 20px;
    font-family: "Roboto", sans-serif;

    letter-spacing: -0.01em;
    line-height: 1.6;

    color: #424242;

    padding-bottom: 25px;
}


/* =========================================
   GROUP 1
========================================= */

.group1 {
    display: flex;
    gap: 25px;

    padding-bottom: 40px;
}

.group1 label {
    width: 50%;

    font-size: 20px;
    font-family: "Roboto", sans-serif;

    color: #424242;
}

.group1 input {
    display: block;

    width: 100%;
    height: 45px;

    border: none;
    border-radius: 0;

    border-bottom: 2px solid #0ccf9e;

    color: #424242;

    font-size: 21px;
    font-family: "Poppins", sans-serif;

    padding: 0 4px;

    outline: none;

    transition: background-color 0.2s ease;
}

.group1 input:hover,
.group1 input:focus {
    background-color: #f8f7f7;
}


/* =========================================
   GROUP 2
========================================= */

.group2 {
    display: flex;
    align-items: center;

    padding-bottom: 40px;
}

.group2 label {
    width: 100%;

    font-size: 20px;
    font-family: "Roboto", sans-serif;

    color: #424242;
}

.group2 input {
    display: block;

    width: 100%;
    height: 45px;

    border: none;
    border-bottom: 2px solid #0ccf9e;

    font-size: 21px;
    font-family: "Poppins", sans-serif;

    color: #424242;

    padding: 0 4px;

    outline: none;

    transition: background-color 0.2s ease;
}

.group2 input:hover,
.group2 input:focus {
    background-color: #f8f7f7;
}


/* =========================================
   GROUP 3
========================================= */

.group3 {
    display: flex;

    padding-bottom: 25px;
}

.group3 label {
    display: flex;
    flex-direction: column;

    width: 100%;

    font-size: 20px;
    font-family: "Roboto", sans-serif;

    color: #424242;
}

.group3 textarea {
    display: block;

    width: 100%;
    height: 150px;

    border: none;
    border-bottom: 2px solid #0ccf9e;

    font-size: 21px;
    font-family: "Poppins", sans-serif;

    padding: 5px 4px;

    resize: vertical;

    outline: none;

    color: #424242;

    transition: background-color 0.2s ease;
}

.group3 textarea:hover,
.group3 textarea:focus {
    background-color: #f8f7f7;
}


/* =========================================
   CONTACT BUTTON
========================================= */

.contact-btn {
    display: block;

    width: 160px;
    height: 50px;

    background-color: #1a1a1a;

    border: 2px solid #1a1a1a;
    border-radius: 4px;

    cursor: pointer;

    color: #fff;

    font-size: 20px;
    font-family: "Poppins", sans-serif;

    transition: 0.3s ease;
}

.contact-btn:hover {
    color: #1a1a1a;
    background-color: #fff;
}


/*TOAST*/

.toast {
    position: fixed;

    top: 20px;
    right: 20px;

    max-width: 400px;

    background: #ffffff;
    color: #333;

    padding: 14px 22px;

    border-radius: 10px;

    font-size: 16px;
    font-weight: 500;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;

    z-index: 9999;
}

.toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================
   FOOTER
========================================= */

footer {
    width: 100%;

    margin: 0;
    padding: 50px 0 0;

    background-color: #222020;

    color: #fff;

    font-family:
        "Franklin Gothic Medium",
        "Arial Narrow",
        Arial,
        sans-serif;

    font-size: 1rem;
}


/* =========================================
   FOOTER CONTAINER
========================================= */

.footer-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    align-items: start;
    justify-content: center;
}


/* =========================================
   FOOTER CONTENT
========================================= */

.footer-content {
    width: 100%;
    text-align: center;
}

.footer-content h3 {
    font-size: 1.25rem;

    color: #0ccf9e;

    margin-bottom: 15px;

    text-align: center;
}


/* =========================================
   FOOTER CONTACT TEXT
========================================= */

.footer-content p {
    width: auto;

    margin: 0;

    padding: 6px 0;

    text-align: center;

    line-height: 1.4;
}


/* =========================================
   EMAIL
========================================= */

.footer-content #email {
    color: #fff;

    cursor: pointer;

    text-decoration: none;
}

/* IMPORTANT:
   Email ke neeche underline remove */
.footer-content a {
    color: #fff;

    text-decoration: none;
}

.footer-content a:hover {
    color: #0ccf9e;

    text-decoration: none;
}


/* =========================================
   QUICK LINKS
========================================= */

.links1 {
    margin: 0;
    padding: 0;

    text-align: center;
}

.links1 li {
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.links1 li a {
    display: inline-block;

    color: #fff;

    font-size: 16px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.links1 li a:hover {
    color: #0ccf9e;

    text-decoration: none;
}


/* =========================================
   REMOVE OLD LIST LINE EFFECT
========================================= */

.list {
    padding: 0;
}

.list li::before {
    display: none;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    margin: 0;
    padding: 0;
}

.social-icons li {
    display: flex;

    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 0;
}


/* Icons */

.social-icons li a {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 28px;
    height: 35px;

    color: #fff;

    text-decoration: none;

    /* No movement */
    transform: none;

    transition: color 0.3s ease;
}

.social-icons li a:hover {
    color: #0ccf9e;

    /* No upward movement */
    transform: none;

    text-decoration: none;
}


/* Icon itself */

.social-icons i {
    color: #fff;

    font-size: 25px;

    transition: color 0.3s ease;

    transform: none;
}

.social-icons i:hover {
    color: #0ccf9e;

    /* No transition movement */
    transform: none;
}


/* =========================================
   BOTTOM BAR
========================================= */

.bottom-bar {
    width: 100%;

    background-color: #0ccf9e;

    padding: 10px 20px;

    text-align: center;

    margin-top: 50px;
}

.bottom-bar p {
    width: 100%;

    color: #343434;

    margin: 0;

    padding: 7px;

    font-size: 16px;

    text-align: center;
}


/* =========================================
   TABLET - 992px
========================================= */

@media (max-width: 992px) {

    /* Contact */

    .contact-container {
        gap: 30px;
        padding: 40px 25px;
    }

    .map,
    .contact {
        width: 50%;
    }

    .map iframe {
        height: 500px;
    }

    .contact-form h1 {
        font-size: 38px;
    }

    .contact-form p {
        font-size: 18px;
    }

    .group1 {
        gap: 15px;
    }

    .group1 label,
    .group2 label,
    .group3 label {
        font-size: 18px;
    }

    .group1 input,
    .group2 input,
    .group3 textarea {
        font-size: 19px;
    }


    /* Footer */

    .footer-container {
        padding: 0 30px;
    }

}


/* =========================================
   TABLET / SMALL SCREEN - 768px
========================================= */

@media (max-width: 768px) {

    /* =========================
       NAV
    ========================= */

    .nav-container {
        padding: 10px 15px;
    }

    .nav-container .logo img {
        height: 45px;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact-container {
        flex-direction: column;

        width: 100%;

        gap: 35px;

        padding: 35px 20px;
    }

    .map,
    .contact {
        width: 100%;
        max-width: 600px;
    }

    .map iframe {
        width: 100%;
        height: 450px;
    }

    .contact {
        margin: 0;
    }

    .contact-form h1 {
        font-size: 36px;
    }

    .contact-form p {
        font-size: 17px;
        line-height: 1.6;
    }

    .group1 {
        width: 100%;

        flex-direction: column;

        gap: 25px;

        padding-bottom: 30px;
    }

    .group1 label {
        width: 100%;
    }

    .group2 {
        padding-bottom: 30px;
    }

    .group3 {
        padding-bottom: 20px;
    }

    .group1 input,
    .group2 input,
    .group3 textarea {
        width: 100%;
    }

    .contact-btn {
        width: 150px;
        height: 48px;

        font-size: 18px;
    }


    /* =========================
       FOOTER
    ========================= */

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

        gap: 35px;

        padding: 0 25px;
    }

    .footer-content {
        width: 100%;
    }

    .footer-content p {
        width: auto;
        padding: 5px 0;
    }

    .social-icons {
        gap: 14px;
    }

    .social-icons i {
        font-size: 24px;
    }

}


/* =========================================
   MOBILE - 576px
========================================= */

@media (max-width: 576px) {

    /* =========================
       NAV
    ========================= */

    .nav-container {
        width: calc(100% - 12px);

        padding: 10px 12px;
        margin: 6px;
    }

    .nav-container .logo img {
        height: 42px;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact-container {
        gap: 30px;

        padding: 30px 15px;
    }

    .map iframe {
        height: 380px;
    }

    .contact-form h1 {
        font-size: 32px;
    }

    .contact-form p {
        font-size: 16px;

        padding-bottom: 25px;
    }

    .group1 label,
    .group2 label,
    .group3 label {
        font-size: 17px;
    }

    .group1 input,
    .group2 input,
    .group3 textarea {
        font-size: 17px;
    }

    .group3 textarea {
        height: 130px;
    }

    .contact-btn {
        width: 140px;
        height: 46px;

        font-size: 17px;
    }


    /* =========================
       FOOTER
    ========================= */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 0 20px;
    }

    .footer-content {
        width: 100%;
        text-align: center;
    }

    .footer-content h3 {
        font-size: 1.2rem;

        margin-bottom: 10px;
    }

    .footer-content p {
        font-size: 15px;

        padding: 4px 0;
    }

    /* Quick links bilkul close */

    .links1 li {
        padding: 0;
        margin: 0;

        line-height: 1.6;
    }

    .links1 li a {
        font-size: 15px;
    }

    /* Icons */

    .social-icons {
        gap: 13px;
    }

    .social-icons li a {
        width: 28px;
        height: 32px;
    }

    .social-icons i {
        font-size: 23px;
    }

    /* Bottom */

    .bottom-bar {
        margin-top: 35px;

        padding: 8px 15px;
    }

    .bottom-bar p {
        font-size: 14px;

        padding: 7px 0;
    }

}


/* =========================================
   VERY SMALL MOBILE - 400px
========================================= */

@media (max-width: 400px) {

    .contact-container {
        padding: 25px 12px;
    }

    .map iframe {
        height: 330px;
    }

    .contact-form h1 {
        font-size: 28px;
    }

    .contact-form p {
        font-size: 15px;
    }

    .group1 label,
    .group2 label,
    .group3 label {
        font-size: 16px;
    }

    .group1 input,
    .group2 input,
    .group3 textarea {
        font-size: 16px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons i {
        font-size: 21px;
    }

    .bottom-bar p {
        font-size: 13px;
    }

}

/* Quick Links - No Space */
.links1 {
    margin: 0 !important;
    padding: 0 !important;
}

.links1 li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.links1 li a {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
}

/* Social Icons - Less Gap */
.social-icons {
    gap: 7px !important;
}

.social-icons li {
    margin: 0 !important;
    padding: 0 !important;
}

.social-icons li a {
    width: 28px;
    height: 32px;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================
   RESPONSIVE NAVBAR
========================================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;

    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 10001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;

    margin: 3px 0;

    background: #0ccf9e;
    border-radius: 20px;

    transition: 0.35s ease;
}


/* =========================================
   MOBILE NAVBAR
========================================= */

@media (max-width: 768px) {

    .nav-container {
        position: relative;

        width: calc(100% - 12px);
        margin: 6px;

        padding: 10px 15px;

        z-index: 10000;
    }

    .nav-container .logo img {
        height: 45px;
        width: auto;
    }

    /* hamburger show */

    .menu-toggle {
        display: flex;
    }

    /* mobile menu */

    .nav-links {
        position: fixed;

        top: 75px;
        left: 10px;
        right: 10px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 20px;

        margin: 0;
        padding: 0;

        background: rgba(25, 25, 25, 0.35);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;

        overflow: hidden;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-20px) scale(0.97);

        max-height: 0;

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            max-height 0.35s ease,
            padding 0.35s ease,
            visibility 0.35s ease;
    }

    /* active menu */

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0) scale(1);

        max-height: 350px;

        padding: 30px 0;
    }

    .nav-links li {
        opacity: 0;

        transform: translateY(-15px);

        transition: 0.35s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.10s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.20s;
    }

    .nav-links a {
        font-size: 18px;
    }


    /* =====================================
       HAMBURGER → X
    ===================================== */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    /* =====================================
       GLASS SHINE
    ===================================== */

    .nav-links::before {
        content: "";

        position: absolute;
        inset: 0;

        background: linear-gradient(120deg,
                transparent 20%,
                rgba(255, 255, 255, 0.10) 50%,
                transparent 80%);

        transform: translateX(-120%);

        opacity: 0;

        pointer-events: none;
    }

    .nav-links.active::before {
        opacity: 1;

        animation: glassMove 2.5s linear infinite;
    }

    .nav-links:not(.active)::before {
        animation: none;
        opacity: 0;
    }
}


/* =========================================
   GLASS SHINE ANIMATION
========================================= */

@keyframes glassMove {

    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(120%);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .nav-container {
        padding: 9px 12px;
    }

    .nav-container .logo img {
        height: 42px;
    }

    .nav-links {
        top: 68px;
        left: 8px;
        right: 8px;

        gap: 18px;
    }

    .nav-links.active {
        padding: 25px 0;
    }

    .nav-links a {
        font-size: 17px;
    }

}