﻿
body {
    font-family: 'Quicksand', sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.left .logo {
    height: 70px;
}

.center .flag {
    height: 50px;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(4deg);
    }
}

.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/* Hide center and right section on small screens */
@media screen and (max-width: 768px) {
    .center,
    .right {
        display: none;
    }

    .header {
        justify-content: center;
    }

    .logo {
        width: 251px; /* adjust as needed */
    }
}

.navbar {
    background-color: #e57230; /* EPCH purple */
    padding: 0;
    font-family: 'Poppins', sans-serif;
    justify-content:center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

    .nav-menu li {
        position: relative;
    }

    .nav-menu > li > a {
        display: block;
        padding: 12px 12px;
        color: white;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
    }

    .nav-menu li a:hover {
        background-color: #e57230;
    }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fffeff;
    list-style: none;
    min-width: 160px;
    z-index: 1000;
}

    .dropdown-menu li a {
        padding: 5px 10px;
        display: block;
        color: rgb(12, 12, 12);
        font-size: 13px;
        text-decoration: none;
    }

.dropdown:hover .dropdown-menu {
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: rgb(255, 253, 253);
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
    }

        .nav-menu.active {
            display: flex;
        }

        .nav-menu li {
            width: 100%;
        }

            .nav-menu li a {
                display: block;
                padding: 10px;
                color: black;
                text-decoration: none;
                border-top: 1px solid #444;
            }

    .dropdown-menu {
        position: relative;
        background: #f4f4f4;
        display: none; /* Hide by default */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

.menu-buttons {
    display: flex;
    gap: 10px; /* spacing between buttons */
    margin-top: 10px;
}

.menu-btn {
    background: linear-gradient(to right, #ff8c00, #228b22);
    color: white;
    border: none;
    padding: 6px 12px; /* 👈 Chhota padding */
    font-size: 12px; /* 👈 Chhoti font */
    font-weight: 600;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    transition: background 0.3s ease;
}

    .menu-btn:hover {
        background: linear-gradient(to right, #228b22, #ff8c00);
    }

.language {
    margin-top: 5px;
    text-align: right;
    font-size: 12px;
}

    .language select {
        padding: 3px 6px;
    }

.news-link {
    text-decoration: none;
    display: block;
}

.epch-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.whats-new-box {
    background-color: #e39439;
    color: white;
    border-radius: 20px 0 0 20px;
    padding: 20px;
}

.news-item {
    background-color: #fdf8ef;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 12px;
    color: black;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-item:hover {
        transform: translateY(-4px); /* Lift */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Shadow */
        color: #e57230;
    }


.news-bullet {
    background-color: red;
    color: rgb(253, 251, 251);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 8px;
    animation: blink 1s infinite;
}

/* Blinking Animation */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.scroll-news {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.learn-btn {
    background: #e57230;
    border: 1px solid #e57230;
    color: #050505;
    font-weight: bold;
}

    .learn-btn:hover {
        background: #377a42dd;
        color: white;
    }

h2 {
    color: #1f4aa5;
    font-family: 'Poppins', sans-serif;
}

p {
    line-height: 1.8;
    font-size: 16px;
}

.mini-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    height: 100%;
    box-shadow: none;
    transition: transform 0.2s ease-in-out;
}

    .mini-card:hover {
        transform: translateY(-5px);
    }

    .mini-card img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        border-radius: 6px;
    }

    .mini-card h6 {
        font-size: 14px;
        font-weight: 600;
        margin-top: 10px;
    }

    .mini-card p {
        font-size: 12px;
        color: #666;
        margin-bottom: 8px;
    }

    .mini-card .btn {
        font-size: 13px;
        padding: 2px 10px;
        border-radius: 20px;
        background-color: #e57230;
        color: white;
        transition: all 0.3s ease;
    }

        .mini-card .btn:hover {
            background-color: #425c45;
            color: #ddd;
        }


.swiper-button-next,
.swiper-button-prev {
    color: #d59b27;
    top: 85%;
    width: 25px; /* container width */
    height: 25px;
    background-color: #82955b;
    border-radius: 50%;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: #e57230;
        color: #151514;
    }


    /* Pseudo element to resize arrow itself */
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important; /* arrow size */
    }

.swiper-slide {
    width: 300px !important;
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.read-more {
    color: #9C27B0;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

    .read-more::before {
        content: "— ";
        color: #E53935;
    }

    .read-more:hover {
        text-decoration: underline;
        color: #7B1FA2;
    }

.row img {
    transition: 0.3s ease;
}

    .row img:hover {
        transform: scale(1.03);
        z-index: 2;
        position: relative;
    }

.footer {
    background-color: #dcd7dd;
    color: #c68325;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

    .footer h5 {
        font-weight: bold;
        margin-bottom: 20px;
        color: #141314;
    }

    .footer a {
        color: #c68325;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

    .footer .social-icons a {
        color: #c68325;
        font-size: 18px;
        margin-right: 10px;
        display: inline-block;
    }

.footer-bottom {
    background-color: #eee;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.qr-img {
    width: 100px;
    margin-bottom: 10px;
}

.store-badge {
    height: 35px;
    display: block;
    margin-bottom: 5px;
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 10px;
    background: #812990;
    color: white;
    padding: 8px;
    border-radius: 5px;
}

.footer .fa-location-dot,
.footer .fa-phone,
.footer .fa-envelope {
    margin-right: 8px;
}
/* Optional but useful */
.nav-menu.show {
    display: flex !important;
}
/*for googletranslate*/
#languageSelector {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}
/* ✅ Mobile screen par Google Translate ka banner hide kare */
@media screen and (max-width: 768px) {
    .goog-te-banner-frame.skiptranslate {
        display: none !important;
    }

    body {
        top: 0px !important;
    }
}

/* ✅ “Show original”, “Options”, aur grey box hide kare (sab screen size par) */
.goog-te-balloon-frame,
.goog-te-menu-frame,
.goog-te-banner-frame {
    display: none !important;
}

/* ✅ Google toolbar ke liye body ka offset remove kare */
body {
    top: 0px !important;
}

.carousel-item {
    object-fit: contain;
}


/* about us */


.nav-purple {
    background-color: #74187b;
}

.nav-purple .nav-link, .nav-purple .navbar-brand {
    color: white !important;
}

.flag-img {
    width: 60px;
}

.action-buttons {
    background-color: #74187b;
    padding: 10px 0;
    text-align: right;
}

    .action-buttons a {
        color: white;
        margin-left: 10px;
        background-color: #50296d;
        padding: 6px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
    }

h2, h3 {
    color: #fc8804;
    text-align: justify;
}

p {
    text-align: justify;
}

.member-box {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .member-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.member-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

    .member-img:hover {
        transform: scale(1.1) rotate(2deg);
        border-color: orange;
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
    }

.member-text {
    transition: transform 0.3s ease;
}

.member-box:hover .member-text {
    transform: translateX(10px);
}

.contact-info {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.member-box:hover .contact-info {
    opacity: 1;
    transform: translateY(0);
}

/* activites */

.section-title {
    font-weight: bold;
    color: #002060;
    margin-top: 40px;
    position: relative;
}

    .section-title::after {
        content: '';
        width: 50px;
        height: 3px;
        background: orange;
        position: absolute;
        bottom: -8px;
        left: 0;
    }

ul.custom-bullets {
    list-style-type: disc;
    padding-left: 20px;
}

img.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Apply Member */

.heading {
    font-weight: 600;
    color: #002060;
    border-bottom: 3px solid orange;
    display: inline-block;
    margin-bottom: 30px;
}
.label {
    font-weight: 500;
}

.input, select {
    font-size: 14px;
}

.form-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.bank-details {
    margin-top: 20px;
    font-size: 14px;
    background-color: #fff;
    border-left: 4px solid #002060;
    padding: 15px;
}

.btn-submit {
    background-color: orange;
    border: none;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 5px;
}

    .btn-submit:hover {
        background-color: darkorange;
    }


/* Head Office */

.office-header {
    background-color: #dc661e;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.office-details {
    padding: 50px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

    .office-details h3 {
        color: #ac761f;
        margin-bottom: 15px;
    }

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 12px;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        border: 0;
    }

.office-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .office-details {
        padding: 30px 15px;
    }
}


/* Press Cliping */

.clipping-header {
    background-color: #c36f2f; /* purple */
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.8);
    animation: popupAnimation 0.6s ease-out forwards;
}

@keyframes popupAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

ul.press-list {
    list-style-type: disc;
    padding-left: 20px;
}

    ul.press-list li {
        margin-bottom: 15px;
        line-height: 1.6;
        font-size: 16px;
    }

        ul.press-list li em {
            color: #c36f2f;
            font-style: italic;
            font-weight: 600;
        }
/* Press release list container */
ul.press-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

    /* List item spacing */
    ul.press-list li {
        margin-bottom: 15px;
        line-height: 1.7;
        font-size: 16px;
        color: #000; /* default text color */
    }

/* Styling links inside <em> */
.press-list a em {
    color: #c36f2f;
    font-style: italic;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.press-list a:hover em {
    text-decoration: none;
    color: #8e1c2d; /* darker purple on hover */
}

/* Optional: Change link cursor */
.press-list a {
    cursor: pointer;
}



/* Login Membership */

.login-container {
    max-width: 400px;
    margin: 60px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
    overflow: hidden;
}

.login-header {
    background-color: #ea7827;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.login-form {
    padding: 25px 20px;
}

    .login-form label {
        display: block;
        margin: 10px 0 5px;
        font-weight: bold;
        color: #333;
    }

    .login-form input[type="text"],
    .login-form input[type="password"] {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

.captcha-img {
    margin: 10px 0;
    display: block;
}

.login-form .links {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

    .login-form .links a {
        text-decoration: none;
        color: #ea7827;
        font-weight: 500;
    }

        .login-form .links a:hover {
            text-decoration: underline;
        }

.login-form .btn-login {
    width: 100%;
    margin-top: 20px;
    background-color: #ea7827;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

    .login-form .btn-login:hover {
        background-color: #ea7827;
    }

@media (max-width: 480px) {
    .login-container {
        margin: 20px;
    }
}
