body{
    margin: 0%;
    font-family: Arial, Helvetica, sans-serif;
}


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* -------------------------- Navbar --------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* NAVBAR STYLES ARE IN main.css FOR CONSISTENCY ACROSS ALL PAGES */

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* -------------------------- WhatsApp ------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* WHATSAPP STYLES MOVED TO main.css FOR CONSISTENCY */

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ---------------------- Contact Form Section ----------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.contactstartdiv {
    margin: 0;
    padding: 60px 20px;
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.05) 0%, rgba(8, 37, 88, 0.05) 100%);
    display: flex;               
    flex-direction: column;  
    align-items: center;         
    justify-content: center;
}

.contactouterdiv {
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headingdiv {
    text-align: center;
    margin-bottom: 40px;
}

#contactheading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: rgb(0, 51, 141);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

#contactSubheading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contactinnerdiv {
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid rgba(0, 51, 141, 0.1);
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.formGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#namepra, #lastnamepra, #emailpra, #commentormessagepra {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(0, 51, 141);
    margin: 0;
}

#firstnameinput, #lastnameinput, #emailinput, #commentinput {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid rgba(0, 51, 141, 0.2);
    border-radius: 10px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#firstnameinput:focus, #lastnameinput:focus, #emailinput:focus, #commentinput:focus {
    outline: none;
    border-color: rgb(0, 51, 141);
    box-shadow: 0 0 0 4px rgba(0, 51, 141, 0.1);
    transform: translateY(-2px);
}

#firstnameinput::placeholder, #lastnameinput::placeholder, #emailinput::placeholder, #commentinput::placeholder {
    color: #999;
    font-style: italic;
}

#commentinput {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.submitdiv {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

#submitbutton {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, rgb(0, 51, 141) 0%, rgb(8, 37, 88) 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 141, 0.3);
    position: relative;
    overflow: hidden;
}

#submitbutton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#submitbutton:hover::before {
    left: 100%;
}

#submitbutton:hover {
    background: linear-gradient(135deg, rgb(8, 37, 88) 0%, rgb(0, 51, 141) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 51, 141, 0.4);
}

#submitbutton:active {
    transform: translateY(-1px);
}

#submitbutton i {
    transition: transform 0.3s ease;
}

#submitbutton:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contactstartdiv {
        padding: 40px 15px;
    }

    .contactinnerdiv {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .formRow {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #contactheading {
        font-size: 28px;
    }

    #contactSubheading {
        font-size: 16px;
    }

    #submitbutton {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    /* Dark Mode Styles for Tablet */
    body.dark .contactstartdiv {
        background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.9) 100%) !important;
    }

    body.dark #contactheading {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }

    body.dark #contactSubheading {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    body.dark .contactinnerdiv {
        background: #020617 !important;
        border-color: rgba(76, 175, 80, 0.3) !important;
        box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1) !important;
    }

    body.dark #namepra,
    body.dark #lastnamepra,
    body.dark #emailpra,
    body.dark #commentormessagepra {
        color: white !important;
    }

    body.dark #firstnameinput,
    body.dark #lastnameinput,
    body.dark #emailinput,
    body.dark #commentinput {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(76, 175, 80, 0.3) !important;
        color: white !important;
    }

    body.dark #firstnameinput:focus,
    body.dark #lastnameinput:focus,
    body.dark #emailinput:focus,
    body.dark #commentinput:focus {
        border-color: rgba(76, 175, 80, 0.6) !important;
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1) !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    body.dark #firstnameinput::placeholder,
    body.dark #lastnameinput::placeholder,
    body.dark #emailinput::placeholder,
    body.dark #commentinput::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    body.dark #submitbutton {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(34, 211, 238, 0.8) 100%) !important;
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3) !important;
    }

    body.dark #submitbutton:hover {
        background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(34, 211, 238, 1) 100%) !important;
        box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4) !important;
    }
}

@media (max-width: 480px) {
    .contactstartdiv {
        padding: 30px 10px;
    }

    .contactinnerdiv {
        padding: 25px 15px;
    }

    #contactheading {
        font-size: 24px;
    }

    #contactSubheading {
        font-size: 14px;
    }

    #namepra, #lastnamepra, #emailpra, #commentormessagepra {
        font-size: 14px;
    }

    #firstnameinput, #lastnameinput, #emailinput, #commentinput {
        padding: 12px 15px;
        font-size: 15px;
    }

    #submitbutton {
        font-size: 16px;
        padding: 12px 25px;
    }

    /* Dark Mode Styles for Mobile */
    body.dark .contactstartdiv {
        background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.9) 100%) !important;
    }

    body.dark #contactheading {
        color: white !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    }

    body.dark #contactSubheading {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    body.dark .contactinnerdiv {
        background: #020617 !important;
        border-color: rgba(76, 175, 80, 0.3) !important;
        box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1) !important;
    }

    body.dark #namepra,
    body.dark #lastnamepra,
    body.dark #emailpra,
    body.dark #commentormessagepra {
        color: white !important;
    }

    body.dark #firstnameinput,
    body.dark #lastnameinput,
    body.dark #emailinput,
    body.dark #commentinput {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(76, 175, 80, 0.3) !important;
        color: white !important;
    }

    body.dark #firstnameinput:focus,
    body.dark #lastnameinput:focus,
    body.dark #emailinput:focus,
    body.dark #commentinput:focus {
        border-color: rgba(76, 175, 80, 0.6) !important;
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1) !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    body.dark #firstnameinput::placeholder,
    body.dark #lastnameinput::placeholder,
    body.dark #emailinput::placeholder,
    body.dark #commentinput::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    body.dark #submitbutton {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(34, 211, 238, 0.8) 100%) !important;
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3) !important;
    }

    body.dark #submitbutton:hover {
        background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(34, 211, 238, 1) 100%) !important;
        box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4) !important;
    }
}

/* -------------------------- Footer Section ------------------------- */
/* FOOTER STYLES MOVED TO main.css FOR CONSISTENCY - All footer styling is now centralized in main.css */

.saminamediv {
    text-align: center;
    position: relative;
    bottom: 35px;
    font-weight: bold;
    font-size: larger;
    color: rgb(116, 186, 248);
}

/* ------------------------------------------------------------------- */
/* -------------------------- Dark Mode Styles ----------------------- */
/* ------------------------------------------------------------------- */

body.dark .contactstartdiv {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.9) 100%) !important;
}

body.dark #contactheading {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

body.dark #contactSubheading {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark .contactinnerdiv {
    background: #020617 !important;
    border-color: rgba(76, 175, 80, 0.3) !important;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.1) !important;
}

body.dark #namepra,
body.dark #lastnamepra,
body.dark #emailpra,
body.dark #commentormessagepra {
    color: white !important;
}

body.dark #firstnameinput,
body.dark #lastnameinput,
body.dark #emailinput,
body.dark #commentinput {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(76, 175, 80, 0.3) !important;
    color: white !important;
}

body.dark #firstnameinput:focus,
body.dark #lastnameinput:focus,
body.dark #emailinput:focus,
body.dark #commentinput:focus {
    border-color: rgba(76, 175, 80, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

body.dark #firstnameinput::placeholder,
body.dark #lastnameinput::placeholder,
body.dark #emailinput::placeholder,
body.dark #commentinput::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

body.dark #submitbutton {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(34, 211, 238, 0.8) 100%) !important;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3) !important;
}

body.dark #submitbutton:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(34, 211, 238, 1) 100%) !important;
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4) !important;
}

@media (max-width: 600px){
   
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* --------------------------- Nav Section --------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* NAVBAR RESPONSIVE STYLES ARE IN main.css FOR CONSISTENCY */


 
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* --------------------------- WhatsApp Section ---------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* WHATSAPP RESPONSIVE STYLES MOVED TO main.css FOR CONSISTENCY */



    .contactstartdiv {
        padding: 30px 10px;
    }

    .contactinnerdiv {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .formRow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #contactheading {
        font-size: 24px;
        margin-bottom: 12px;
    }

    #contactSubheading {
        font-size: 14px;
    }

    #namepra, #lastnamepra, #emailpra, #commentormessagepra {
        font-size: 14px;
    }

    #firstnameinput, #lastnameinput, #emailinput, #commentinput {
        padding: 12px 15px;
        font-size: 15px;
        border-radius: 8px;
    }

    #commentinput {
        min-height: 100px;
    }

    .submitdiv {
        margin-top: 15px;
    }

    #submitbutton {
        font-size: 16px;
        padding: 12px 25px;
        width: 100%;
    }


/* -------------------------- Footer Section ------------------------- */
/* FOOTER RESPONSIVE STYLES MOVED TO main.css FOR CONSISTENCY - All footer styling is now centralized in main.css */




}