﻿/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 15px;
    bottom: 90px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common button */
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

    /* Icons */
    .float-btn i {
        font-size: 24px;
        color: #fff;
    }

    /* WhatsApp */
    .float-btn.whatsapp {
        background: #25d366;
    }

    /* Call */
    .float-btn.call {
        background: #0a58ca;
    }

/* 🔥 MOBILE FORCE VISIBILITY */
@media (max-width: 768px) {
    .floating-contact {
        display: flex !important;
    }
}

.social_list li a {
    background: rgba(255,255,255,0.15);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .social_list li a:hover {
        background: #ffffff;
    }


.chairman-section {
    background: #f4f6fa; /* light grey-blue */
    padding: 60px 0;
}

.chairman-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* IMAGE */
.chairman-image {
    flex: 0 0 280px;
    text-align: center;
}

    .chairman-image img {
        width: 260px;
        height: 340px; /* vertical look */
        object-fit: cover;
        border-radius: 12px; /* soft professional corners */
        border: 5px solid #ffffff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
        background: #fff;
    }

/*Chairman Message – Professional*/
/* TEXT */
.chairman-text {
    flex: 1;
}

    .chairman-text h3 {
        font-size: 28px;
        margin-bottom: 18px;
        color: #213368;
    }

    .chairman-text p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
        color: #333;
    }

.chairman-name {
    margin-top: 22px;
    font-size: 15px;
    color: #213368;
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .chairman-content {
        flex-direction: column;
        text-align: center;
    }

    .chairman-image {
        margin-bottom: 25px;
    }

    .chairman-text h3 {
        font-size: 24px;
    }
}

/* ===== Contact Page ===== */
.contact-page {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* Map + Address */
.contact-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 360px;
    border-radius: 10px;
    border: 2px solid #ddd;
}

/* Address */
.contact-address {
    background: #f4f6fa;
    padding: 25px;
    border-left: 5px solid #213368;
}

    .contact-address h4 {
        margin-bottom: 12px;
        color: #213368;
    }

    .contact-address p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-address a {
        color: #213368;
        text-decoration: none;
    }


/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .contact-top {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 280px;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Form */
.contact-form-box {
    background: #ffffff;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
}

    .contact-form-box h3 {
        margin-bottom: 20px;
        color: #213368;
        font-size: 22px;
        font-weight: 600;
    }

/* Row */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

    /* Inputs, Textarea, Select */
    .form-row input,
    .form-row textarea,
    .form-row select {
        width: 100%;
        padding: 16px 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
        box-sizing: border-box;
    }

        /* Focus effect */
        .form-row input:focus,
        .form-row textarea:focus,
        .form-row select:focus {
            border-color: #213368;
        }

    /* Dropdown arrow */
    .form-row select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='gray' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px;
    }

/* Button */
.contact-form-box button {
    background: #213368;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
}

    .contact-form-box button:hover {
        background: #182654;
    }

/* Mobile responsive */
@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }
}


/* Language switcher container */
/*.lang-switcher {
    margin-left: 20px;
}*/

/* Google Translate dropdown */
/*.goog-te-combo {
    width: 160px !important;*/ /* size yahin control hoga */
    /*padding: 6px 10px !important;
    font-size: 13px !important;
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
    cursor: pointer;
}*/

/* Extra Google branding hide */
/*.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}
.goog-te-gadget {
    font-size: 0 !important;
}*/

/* Keep dropdown visible */
/*.goog-te-gadget .goog-te-combo {
    font-size: 13px !important;

}*/

/* Extra safety: hide text nodes */
/*.goog-te-gadget span,
.goog-logo-link {
    display: none !important;
}*/
/* Space between language dropdown and Home */
/*#google_translate_element {
    margin-right: 18px;
}*/




/* Language switcher spacing */
.lang-switcher {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

/* Google dropdown size */
.goog-te-combo {
    width: 64px !important;
    padding: 6px 10px !important;
    font-size: 13px !important;
    border-radius: 24px !important;
    border: 1px solid #ccc !important;
    cursor: pointer;
}

/* Hide "Powered by" text */
.goog-te-gadget {
    font-size: 0 !important;
}

    .goog-te-gadget .goog-te-combo {
        font-size: 13px !important;
    }

    .goog-logo-link,
    .goog-te-gadget span {
        display: none !important;
    }

/* LTR / RTL layout */
body.ltr {
    direction: ltr;
}

body.rtl {
    direction: rtl;
}

/* Navbar alignment */
body.ltr .navbar-nav {
    margin-left: auto;
}

body.rtl .navbar-nav {
    margin-right: auto;
}
/* Default LTR */
body.ltr #navigation {
    direction: ltr;
    text-align: left;
}

/* 🔥 Arabic RTL */
body.rtl #navigation {
    direction: rtl;
    text-align: right;
}

    /* 🔥 MENU ORDER REVERSE (MAIN FIX) */
    body.rtl #navigation > li {
        float: right;
    }

/* LTR reset */
body.ltr #navigation > li {
    float: left;
}

/* Language switcher spacing */
body.ltr .lang-switcher {
    margin-right: 20px;
}

body.rtl .lang-switcher {
    margin-left: 20px;
    margin-right: 0;
}

/*body.ltr .logo img {
    margin-inline-start: -124px;
}

body.rtl .logo img {
    margin-inline-start: -124px;*/ /* auto becomes right side */
/*}*/



/* =========================
   MOBILE NAVIGATION FIX
========================= */
@media (max-width: 768px) {

    /* Navigation container */
    #navigation {
        width: 100%;
        float: none;
        display: block;
        text-align: left;
    }

    body.rtl #navigation {
        text-align: right;
    }

    /* Each menu item full width */
    #navigation > li {
        float: none !important;
        display: block;
        width: 100%;
        margin: 0;
    }

        /* Menu links */
        #navigation > li > a {
            display: block;
            padding: 12px 16px;
        }

    /* Language dropdown full width */
    .lang-switcher {
        width: 100%;
        margin: 10px 0 !important;
    }

    .goog-te-combo {
        width: 100% !important;
    }

    /* Submenu fix */
    #navigation li ul {
        position: static;
        width: 100%;
    }

        #navigation li ul li {
            width: 100%;
        }
}



.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #fff;
    padding: 24px 18px;
    border-radius: 14px;
    width: 90%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    animation: popup 0.25s ease;
}

    .modal-box h3 {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .modal-box p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .modal-box button {
        background: #e6e6e6;
        border: none;
        padding: 10px 32px;
        border-radius: 22px;
        font-size: 14px;
        cursor: pointer;
    }

@keyframes popup {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}




