
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Spartan", sans-serif !important;
}

body {
    margin: 0;
    /* font-family: Arial, sans-serif */
     font-family: "Spartan", sans-serif !important;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    top: 0;
    z-index: 1000;

}

.main-header .top-bar {
    display: none !important;
}

.container {
    margin: 0 auto;

}

.header-container {
    display: flex;
    align-items: center;
    height: 130px;
    max-width: 1150px;
    letter-spacing: 1px;
}

.header-logo {
    width: 200px;
}

.main-nav {
    margin-left: 104px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;

    padding: 0;
    align-items: left;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: #282f3b;
    padding: 8px 8px;
    font-weight: lighter;
    transition: color 0.3s, background 0.3s;
    font-size: 17px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #24cfcf;

    border-radius: 5px;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-contact {
    display: none;

}

.logo img {
    height: 77px;

    user-select: none;
}

nav.desktop-nav ul li {
    position: relative;
}

nav.desktop-nav ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav.desktop-nav ul li a:hover {
    color: #a03110;
}

nav.desktop-nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

/* dropdown css */

li a,
.dropdown {
    display: inline-block;
    color: white;
    text-align: left;
    text-decoration: none;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    flex-direction: column;
}

.dropdown .dropdown-menu a {
    padding: 5px 10px;
    color: #333;
    white-space: nowrap;
}

.dropdown .dropdown-menu a:hover {
    background: #f5f5f5;
    color: #24cfcf;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Normal Navbar */
.sticky-header .container {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    letter-spacing: 1px;
    height: 120px;
}

/* Sticky Navbar */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.9s ease-in-out;
    transform: translateY(-110%);
    will-change: transform;
}

.sticky-header.show {
    top: 0;
    transform: translateY(0);
}

.sticky-header.no-transition {
    transition: none !important;
    top: -100px;
    transform: translateY(-110%) !important;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.top-bar {
    display: none;
}

.top-bar span {
    margin: 10px 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 100px;
    margin-top: 2px;
    background-color: rgba(255, 255, 255, 0.4);




}

.model-btn {
    background: none;
    background-color: none;
    font-size: 22px;
    border: none;
    margin-left: 100px;
}

.model-container {
    background-color: #fff;
    width: 1106px;
    padding: 40px 50px 40px 50px;
    border-radius: 15px;
    height: auto !important;   
}

.reg-group {
    position: relative;
}

.reg-group input,
.reg-group textarea {
    width: 100%;
    color: #333;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    /* margin-bottom: 35px; */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;

}

.reg-group input:focus,
.reg-group textarea:focus {
    border-color: #a00;
    box-shadow: 0 0 5px rgba(170, 0, 0, 0.4);
    outline: none;
}

.model-submit {
    width: 100%;
    padding: 22px;
    background: #a00;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 12px 0 12px 0;
    cursor: pointer;

}

.model-submit:hover {
    background: #c00;
}

.model-view {

    padding: 40px 50px 40px 50px;
}

.model-image {
    position: relative;
    margin-bottom: 30px;
}

.model-picture {
    max-width: 200px;
    height: auto;
}

.model-matter p {
    font-size: 17px;
    color: #666;
    letter-spacing: 1px;

    margin-bottom: 30px;
    font-size: 16px;
    line-height: 26px;

    font-weight: 400;

}

.model-matter {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e4e7ee;
}

.model-a {
    color: #534f4f;
    font-size: 14px;
    font-weight: 700;
}


.modal.show {
    display: block;
}

.modal.closing {
    display: block;
}

.modal-form {
    background-color: #f0f3f9;
    margin: auto;
    max-width: 1150px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    height: 400px;
    height: auto !important;  
    min-height: 400px;      
}

.close-modal {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    background: #a00;
    color: #fff;
    font-size: 25px;
    z-index: 3;
    cursor: pointer;
}


.modal.show .modal-form {
    animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.modal.closing .modal-form {
    animation: slideUp 0.4s ease-in forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}


/* --- Main Header --- */

.site-footer {
    background-color: #282F3B;
    ;
    color: #fff;
    /* padding: 40px 20px; */
    /* font-family: Arial, sans-serif; */
    padding-top: 20px;
    margin-top: 10px;

}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    /* height: 300px; */
    margin: 0 auto;
    padding: 0 80px 0;
}

.footer-section {
    flex: 1 1 220px;
    margin: 10px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-size: 25px;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 5px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;

    margin-bottom: -10px;
    background-color: #d32f2f;
}

.footer-content h6 {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 60px;
}

.footer-content h5 {
    display: inline-block;
    /* font-family: var(--creote-family-two); */
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 26px;
}

.footer-section p,
.footer-section a {
    font-size: 17px;
    color: #aaafb8;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    color: #e40e0e;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    width: 100%;
    font-weight: 500;
    border-top: 1px solid #33333343;
    font-size: 14px;
    color: #aaafb8;
    ;
    background-color: #1f2530;
    margin-top: 60px;
}

.scroll-toggle {
    position: fixed;
    bottom: 60px;
    right: 20px;
    border: 2px solid #a00;
    background: none;
    color: #a00;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    display: none;
    transition: opacity 0.3s;

}

.hero {
    background-color: #fcf6f6;
    text-align: center;
    padding: 40px 20px 40px 20px;
    margin-bottom: 40px;
}

.hero h3 {
    color: #083C7A;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 2px;

}

.hero h1 {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #282f3b;
}

.hero p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
}

/* New Enroll button container */
.enroll-container {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Enroll button styling */
.enroll-btn {
    background-color: blue;
    background-color: #413a8d;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    animation: unique-blink 1s infinite;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;

}

/* Zoom-in effect on hover */
.enroll-btn:hover {
    transform: scale(1.1);
    color: red;
}

/* Unique blinking animation */
@keyframes unique-blink {
    0% {
        opacity: 1.5;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1.5;
    }
}

.benefits {
    text-align: center;
    padding: 50px 20px;
    margin-top: -32px;
}


.benefits h4 {
    font-size: 22px;
    color: #2b4b88;
    margin-bottom: 10px;
    text-decoration: underline;
    font-weight: 500;
    letter-spacing: 1px;
}

.benefits h2 {
    font-size: 38px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #241e1e;
}

.benefits p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 27px;
    color: #666;
}

/* Features Section */
        .features-section {
            padding: 50px 20px;
           
        }

        .features-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Feature Card */
        .features-cards {
            width: 300px;
        }

        .feature {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            transition: background-color 0.3s ease;
            padding: 20px;
        
        }
        .content-inner{
            padding:20px;
        }
        .content-inner ul li::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 14.3rem;
      width: 12px;
      height: 6px;
      background-color:#a00; 
      transform: translateY(-50%);
      border-radius: 1px;
}
        /* Content inside Feature */
        
 .future-img {
    position: relative;
  text-align: center;
  margin-bottom: 20px;
 }
 
        .future-img .logo {
            width: 126px;
            height: auto;
            margin-bottom: 15px;
            transition: opacity 0.3s ease;
        }

        .content-inner h3 {
            margin-bottom: 15px;
            color: #333;
            transition: opacity 0.3s ease;
            font-size: 21px;
            text-align: left;
        }

        .feature ul {
            text-align: left;
            transition: opacity 0.3s ease;
        }

        .feature ul li {
            margin-bottom: 10px;
            color: #555;
            font-size: 17px;
            text-align:left;
        }

        /* Overlay Link – centered arrow */
        .overlay_link {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            background:#a00;
             padding: 12px 16px;
             z-index: 9999;          
             pointer-events: auto !important; 
            display: inline-block;
            cursor: pointer;
             border-radius:10px 0 10px 0;
              text-decoration: none;
               font-size: 20px;
                opacity: 0;
  
                }

        .overlay_link i {
            font-size: 20px;
            color: #fff;
            transition: color 0.3s ease;
            
        }

        /* Overlay Content – bottom left */
        .overlay_content {
            position: absolute;
            bottom: 15px;
            left: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
            text-align: left;
             padding: 20px;
        }

        .overlay_content .subheading a {
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: text-decoration 0.3s ease;
        }

        /* Hover Effect */
        .feature:hover {
            background-color: #ffffff;
            border-radius:10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .feature:hover .content-inner {
            opacity: 0;
        }

        .feature:hover .overlay_link {
            opacity: 1;
        }

        .feature:hover .overlay_content {
            opacity: 1;
        }
        .benefits, .features-section, .memberships-section {
        opacity: 0;
       transform: translateY(100px);
       transition: opacity 0.6s ease-out, transform 0.6s ease-out;
       }

        /* Active class when section is visible */
      .section-visible {
        opacity: 1;
         transform: translateY(0);
           }
           .feature ul li {
       position: relative; 
    
       }
       .feature ul {
    list-style: none; 
    padding-left: 0;
}

.feature ul li::before {
    content: '';
    position: absolute;
    left: -25px; 
    top: 50%;    
    width: 12px;
    height: 6px;
    background-color: #cf2f0fff;
    transform: translateY(-50%);
    border-radius: 1px;
}

        /* Responsive */
        @media (max-width: 768px) {
            .features-container {
                flex-direction: column;
                align-items: center;
            }

            .features-cards {
                width: 90%;
            }
        }
        /* feature section end */




.memberships-section {
    background: #f8f8fc;
    text-align: center;
    padding: 50px 20px;
    margin-top: 10px;
    /* height: 600px; */
}

.section-subtitle {
    color: #083C7A;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 38px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #282f3b;
}

.membership-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.membership-card {
    padding: 20px;
    width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    background: #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 54px;
    color: #083C7A;
}

.icon-circle img {

    height: 50px;
    color: #1f4da1;
}

.membership-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #352d2d;
}

.membership-card p {
    font-size: 17px;
    color: #666;
    line-height: 27px;
    font-weight: 500;
}



/*ABOUT-US CSS STYLING*/
.about-banner {
    background: url('../images/page-header-default.jpg') center/cover no-repeat;
    position: relative;
    background-position: center 0px;
    transition: background-position 0.6s linear;
    text-align: center;
    height: 150px;

}

.about-banner .overlay {
    background-color: rgba(60, 45, 136, 0.9);
    padding: 50px;
    text-align: center;
    color: white;
    height: 150px;
    width: 100%;
}

.about-content {
    background-color: #f5f7fb;
}

.about-banner h1 {
    margin-top: -25px;
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.about-banner p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
}

.para-text a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
}

.about-content {
    padding: 40px 20px;
    text-align: center;
}

.tagline {
    color: #a30000;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    border-bottom: 2px solid #a30000;
    display: inline-block;
    padding-bottom: 3px;
}

.org-name {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

.about-section {
    margin-top: -50px;
    background-color: #f5f7fb;
    padding: 40px 0;
    /* font-family: Arial, sans-serif; */
}

.about-card {
    /* margin-top: 10px; */
    background: white;
    max-width: 1100px;
    margin: 20px auto;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.about-icon  {
    margin-bottom: 15px;
  font-size: 48px;
  color: #a00;
  margin-top: -28px
}

.about-title {
    color: #2b1c7f;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-text {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}

/*END OF ABOUT-US CSS*/

/*CONTACT-US CSS*/
.contact-section {
    padding: 50px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Form Section */
.contact-form {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form label {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin: 10px 0 5px;
    color: #555;
    letter-spacing: 1px;
}

.input-group {
    position: relative;
    /* margin-bottom: 15px; */
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    /* margin-bottom: 20px; */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;

}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #a00;
    box-shadow: 0 0 5px rgba(170, 0, 0, 0.4);
    outline: none;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.input-group .contact-icon {
    position: absolute;
    right: 14px;
    top: 37%;
    transform: translateY(-50%);
    color: #a00;
    font-size: 18px;
}

.input-group.textarea .contact-icon {
    top: 12px;
    transform: none;
}

.button-submit {
    width: 100%;
    padding: 22px;
    background: #a00;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 12px 0 12px 0;
    cursor: pointer;
    margin-bottom: 20px;
    margin-top: 20px;
}

.button-submit:hover {
    background: #c00;
}

/* Contact Info Section */
.contact-info {
    flex: 1;
}

.contact-subtitle {
    color: #a00;
    margin: 0;
    font-size: 26px;
    margin-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #a00;
    display: inline-block;
    padding-bottom: 3px;
}

.contact-title {
    font-size: 37px;
    letter-spacing: 1px;
    margin: 5px 0;
    margin-bottom: 18px;
}

.contact-description {
    color: #666;
    margin-bottom: 40px;
    line-height: 27px;
    font-size: 17px;
}

.info-card {
    position: relative;
    padding: 20px 30px;
    display: block;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;


}

.info-card:hover {
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.info-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 500;
    margin-bottom: 0px;

}

.error {
    color: #b11b0d;
    font-size: 14px;
    display: block;
    margin-top: 5px;
    margin-bottom:30px;
    letter-spacing: 1px;
}

.info-img {

    position: absolute;
    left: 24px;
    bottom: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin: auto;
    text-align: center;
    line-height: 40px;
    background: #a00;
    color: #fff;
    font-size: 22px;
}


.info-content {
    margin-left: 55px;
    position: relative;
}

/*END OF CONTACT-US PAGE*/

/* PRIVACY POLICY PAGE CSS */

.privacy-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;

}

.privacy-content h2 {
    font-size: 18px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #3f3f3f;
    font-weight: 780;
    margin: 15px;
}

.privacy-content h3 {
    font-size: 17px;
    margin-top: 1.5rem;
    font-weight: 780;
    color: #3f3f3f;
    margin-bottom: 20px;
}

.privacy-content p {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.6rem;
    color: #666;
}

a {
    color: #d32f2f;
    text-decoration: none;
}

.close-icon {
    display: none;
}

/* ANIMATIONS OF HOME PAGE */
.membership-card,
.feature,
.benefits {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.9s ease-out;
}

/* Animate when in view */
.membership-card.animate-up,
.feature.animate-up,
.benefits.animate-up {
    opacity: 1;
    transform: translateY(0);
}


/* student section */
.membership-sections {
    background-color: #f3eefc;
    text-align: center;
    margin-bottom: -20px;
    padding: 20px 0px 8px 0px;
}

.membership-sections h3 {
    color: #b11b0d;
    text-decoration: underline;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    padding: 0px 0px 10px 0px;
    
}

.membership-sections h1 {
    font-size: 2.5rem;
    padding: 0 0 20px 0;
    
}

.membership-sections p {
    max-width: 600px;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
    padding: 0 0 0 0;
    color: #555;
    margin:auto;
    
}
.membership-contents{
    margin-bottom: 15px;
}
/*MEMBERSHIP BENEFITS CSS */
.padai-membership-benefits-section {
    padding: 1px 20px;
    border: 1px solid #9e9e9f69;
     background-color:#f0f3f969;
    margin-bottom: -20px;
    margin-top: 20px;
      border-bottom: 1px solid #ddd;
   
}
.padai-membership-benefits-container::before {
    content: "";
    position: absolute;
    top: 364px;
    bottom: -673px;
    left: 50%;
    width: 1px;
    background: #ddd; 
}

.padai-membership-benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 86px;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top:50px;
   
}

/* ====== Feature Card ====== */
.padai-membership-benefits-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
        padding: 23px 30px 0;
     position: relative;
     overflow: hidden;
    transition: all 0.4s ease; 
    /* padding: 53px 30px 30px 30px; */
}

.padai-membership-benefits-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.padai-membership-benefits-card:hover .padai-hover-content {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateZ(0);
}

/* ====== Icon + Number ====== */
.padai-icon {
    font-size: 80px;
    color: #a00;
    margin-bottom: 10px;
}

.padai-icon-content small {
    font-size: 60px;
    font-weight: 700;
    color: #f0f3f9;
    position: absolute;
    top: 28px;
    right: 25px;

}
.padai-membership-benefits-container{
    /* border-style: solid; */
    border-width: 1px 1px 1px 1px;
    border-color: #0C00000F;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 0px 20px 0px 20px;
}

/* ====== Title ====== */
.icon-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* ====== Paragraph ====== */
.padai-text-box p {
    font-size: 16px;
    color: #444;
    line-height: 26px;
    margin-bottom: 15px;
    transition: 0.5s ease-in-out;
}

/* ====== Hover Content (3D Animation) ====== */
.padai-hover-content {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-45deg) translateZ(-50px);
    padding: 30px 40px;
    transition: 700ms 100ms;
    background:  #b11b0d;
    border-radius: 12px;
    text-align: center;
}

.padai-feture-card:hover .padai-hover-content {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateZ(0);
}

/* ====== Inner Content ====== */
.padai-hover-content .inner p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
}


/*student bar */

.student-bar {
    background-color: #008080;
    padding: 10px 0;
    text-align: center;
    margin-top: 21px;
}

.student-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.student-bar li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;

}



/*student bar end */

/*institutional bar */
.institutional-nav {
    background-color: #008080;
    padding: 10px 0;
    text-align: center;
    margin-top:21px;
}

.institutional-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
   
}

.institutional-nav li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}



/*institutional bar end */


/* individual bar styling */

.individual-bar {
    background: #0d8686;
    padding: 15px;
    margin-top: 21px;
}

.individual-bar ul {
   display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  margin-inline-start: 150px;

}

.individual-bar li {
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.individual-bar i {
    margin-right: 8px;
    font-size: 18px;
}

/*individual bar styling end */

/* Container styling */
.form-container {
    max-width: 1155px;
    margin: 40px auto;
    padding: 18px 18px;
    background: #fafcff;
    box-shadow: 0 12px 40px rgba(8, 5, 76, 0.5);
    transform: translateY(60px);
    animation: slideUpFadeIn 0.7s ease-out forwards;
}

/* Heading styling */
.form-container h2 {
    font-size: 2.2rem;
    color: #08054c;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* hr styling */
.form-container hr {
   margin-top: 36px;
   margin-bottom: 24px;
   border: none;
  border-top: 1.5px solid #d3d8e8;

}

/*hr styling end */

/* .form-container h2 i {
    color: black;
} */

.icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 0;
    vertical-align: middle;
}


/* Grid layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
}

/* Label and input styling */
label {
    font-size: 1rem;
    color: #08054c;
    margin-bottom: 10px;
    display: block;

}

input::placeholder {
    font-size: 0.9rem;
    color: rgb(203, 200, 200);
    font-weight: 400;
    opacity: 1;
}

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cacccf;
    border-radius: 10px;
    font-size: 1.15rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.input:hover {
    border: 1px solid black;
}

.input:focus {
    border-color: #08054c;
    box-shadow: 0 0 0 3px rgba(8, 5, 76, 0.15);
    cursor: pointer;
}
/* institutional membership details start */
.institutional-members h2 {
    font-size: 18px;
    font-weight: 700;
    color: #11114e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 2.2rem;
    margin-bottom: 18px
}

/* Label above fields */
.institutional-members.member-label {
    font-weight: 600;
    color: #11114e;
    margin-bottom: 8px;
    display: inline-block;

}

/* Apply border only between rows, not before the first one */
.member-table .member-row+.member-row {
    border-top: 1px solid #ddd;
    margin-bottom: 70px;
    padding-top: 15px;
}

/* Table layout */
.member-table {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: white;
    margin-top: 8px;
}
/* Row spacing */
.member-table .member-row + .member-row {
    border-top: 1px solid #ddd;
    margin-bottom: 30px;
    padding-top: 15px;
}
/* Row styling */
.institutional-members .member-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Input styling */
.institutional-members .input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    flex: 1 1 200px; /* flexible, min 200px */
    min-width: 200px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.institutional-members .input.phone-input {
   flex: 1 1 150px;
    min-width: 150px;
}

.institutional-members .input:focus {
    border-color: #11114e;
    box-shadow: 0 0 0 3px rgba(8, 5, 76, 0.15);
}

/* Action buttons (+ and -) */
.icon-btn {
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 20px;
    margin-bottom: 6px;
}

.icon-btn:hover {
    box-shadow: 0 0 0 3px rgba(8, 5, 76, 0.15);
}

/* Add New button */
.add-member-btn {
    background: #0d1b66;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: -10px;
}

.add-member-btn:hover {
    background: #0b1654;
}

/* Note under the button */
.member-note {
    font-size: 12px;
    color: #26205b;
    margin-top: 5px;
}

.institutional-members input::placeholder {
    font-size: 12px;
}

select.input {
    font-size: 0.9rem;
    color: black;
    font-weight: 400;
    opacity: 1;
}

/*institutional membership details end */

.termcheckbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    margin-top: 35px;
    font-size: 1.1rem;
    flex-direction: column;



}

.termcheckbox input[type="checkbox"] {
    margin-top: 26px;
    accent-color: #0a1b57;
    height: 15px;
    width: 15px;
    gap: 20px;
    position: absolute;

}

.termcheckbox p {
    line-height: 1.6;
    color: #0a1b57;
    font-size: 15px; 
    /* width: 730px; */
    text-align: justify;
     margin-left: 30px;
    margin-top: 20px;
}


.form-group {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    margin-left: -8px;

}


.form-group input[type="text"] {
    width: 102%;
    padding: 12px;
    border-radius: 10px;
    font-size: 1.15rem;
    border: none;
    background-color: #f2f2f2;
    margin-left: -9px;
    font-size: 1rem;
    color: grey;
    font-weight: 400;
    opacity: 1;
}

.form-group input[type="text"]:hover {
    border: 1px solid #1f2530;
}

/* Submit button styling */
.button {
    display: block;
    margin: 24px auto 0 auto;
    padding: 12px 18px;
    font-size: 0.9rem;
    background: #0b336f;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(8, 5, 76, 0.08);
    transition: background 0.2s;
}

.button:hover {
    background: #0a0a6b;
}

/* students form container start */

@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* students form container end

/* hr styling */
.form-container hr {
    margin-top: 36px;
    margin-bottom: 24px;
    border: none;
    border-top: 1.5px solid #d3d8e8;
}

.form-container h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 700;
    color: #08054c;
    display: flex;
    align-items: center;
    gap: 10px;
}

/*hr styling end */

.error-message {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: block;
    margin-bottom: 20px;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    margin-right: 8px;
}

#contact-phone {
    width: 100%;
    padding-left: 60px;
    box-sizing: border-box;
}

/* HONORWALL CSS */


.honor-wall-container {
    width: 100%;
    max-width: 1039px;
    padding: 20px;
    border-radius: 8px;
    margin: 15px auto;
}

/* Table normal on desktop */
.honor-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

    .honor-wall-header-text {
        text-align: center;
        margin-bottom: 20px;
        color: #555;
    }

    .honor-wall-header-text p {
        font-size: 18px;

    }

    .honor-wall-container .controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .entries-per-page,
    .search-bar {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9em;
    }

    select,
    .search {
        padding: 5px 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 0.9em;
    }

    .search {
        width: 200px;
    }


    .honor-data-table th i {
        margin-left: 100px;
        font-size: 1rem;
        color: #888;
    }

    .honor-data-table th,
    .honor-data-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
        white-space: nowrap;
    }

    .honor-data-table th {
        background-color: #f8f8f8;
        color: #333;
        font-weight: bold;
    }

    .honor-data-table th:first-child,
    .honor-data-table td:first-child {
        width: 20%;
    }

    .honor-data-table th:nth-child(2),
    .honor-data-table td:nth-child(2) {
        width: 10%;
        text-align: center;
    }

    .honor-data-table th:nth-child(3),
    .honor-data-table td:nth-child(3) {
        width: 15%;
    }

    .honor-data-table th:nth-child(4),
    .honor-data-table td:nth-child(4) {
        width: 30%;
    }

    .honor-data-table th:last-child,
    .honor-data-table td:last-child {
        width: 20%;
    }

    .honor-data-table tbody tr:nth-child(odd) {
        background-color: #fcfcfc;
    }

    .honor-data-table tbody tr:hover {
        background-color: #f1f1f1;
    }

    .photo-cell {
        text-align: center;
    }

    .photo-placeholder {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .photo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
       
    }

    
    select:hover {
        border-color: #888;
    }

    
    .search:focus {
        outline: none;
        border-color: #5cb85c;
        box-shadow: 0 0 5px rgba(92, 184, 92, 0.5);
    }

    .honor-wall-container .table-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .entry-info {
        font-size: 0.9em;
        color: #555;
    }

    .pagination {
        display: flex;
        list-style: none;
        padding: 0;
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
        background-color: #fff;
    }

    .page-link {
        display: block;
        padding: 8px 12px;
        text-decoration: none;
        color: #007bff;
        background-color: #fff;
        border-right: 1px solid #ddd;
        font-size: 0.9em;
        transition: background-color 0.2s, color 0.2s;
    }

    .page-link:last-child {
        border-right: none;
    }

    .page-link:hover:not(.active):not(.disabled) {
        background-color: #f1f1f1;
    }

    .page-link.active {
        background-color: #f8f8f8;
        color: #333;
        font-weight: bold;
        cursor: default;
    }

    .page-link.disabled {
        color: #ccc;
        cursor: not-allowed;
        background-color: #fcfcfc;
    }

    .page-link.ellipsis {
        color: #999;
        cursor: default;
        background-color: #fff;
        padding: 8px 5px;
        border-right: 1px solid #ddd;
    }

/* MOBILE VIEW RESPONSIVE */

/* header mobile */

@media (max-width: 768px) {

    .header-container {
    justify-content: space-between;
    display: flex;
    align-items: center;
    height: 120px;
    letter-spacing: 1px;
    
}
.scroll-toggle {
    display: block;
}
 .sticky-header .container {
    background: #fff;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    letter-spacing: 1px;
}
.sticky-header.show {
    transition: transform 0.8s ease-in-out; 
    top: 0;
     transform: translateY(0);
}
.sticky-header.no-transition {
    transition: none !important;  
    top: -100px; 
    transform: translateY(-110%) !important;            
}

.logo img {
  width: 20vh;
  height: auto;
}

.sticky-header {
    transition: top 0.8s ease-in-out;
     transform: translateY(-110%); 
     will-change: transform; 
   }
    .header-logo {
        width: 20vh;
        height: auto;
        margin-left: 17px;
    }
    .menu-toggle {
        display: block;
        order: 1; 
        margin-left: 6px;
        
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0; 
        width: 100%;
       height: 100vh;  
        background: #fff;
        z-index: 2000;
        padding: 60px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1); 
        overflow-y: auto;
        margin-left: 0;
    }
    .main-nav ul .model-btn{
        display: none !important;
    }

  .main-header .top-bar{
        display: block !important;
    }
    .top-bar { 
        display: flex;
        flex-direction: column;  
        align-items: center;     
        justify-content: center;
        background: #2d1f77;     
        padding: 15px;
        gap: 10px;
       
    }
.top-item   {
    margin-top: 8px; 
    margin-bottom: 4px;
}
    .top-bar .top-item {
       color: #fff;
  font-size: 14px;
  display: block;
  min-width: 100%;
  text-align: center;
    }

    .top-bar .top-item svg {
        fill: #fff;   
        font-size: 38px;
    }
    .mobile-contact{
        display: block;
        margin-left: 56px;
        display: flex;
        margin-right: 7px;
    }
    .contact-btn{  
       color: white;
        padding: 16px 21px;
        text-wrap: nowrap;
        letter-spacing: 1px;
        font-weight: 700;
        background-color: #a00;
        border: none;
        border-radius: 12px 0 12px 0;
        margin-left:-40px;
    }
/* end of header */

/* home page view */

    .feature ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 13px;
    width: 12px;
    height: 6px;
    background-color: #ad0a0a;
    transform: translateY(-50%);
    border-radius: 1px;
}
  .hero {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .hero h3 {
    font-size: 16px;
  }

  .hero p {
    font-size: 16px;
  }

  .enroll-btn {
    font-size: 15px;
    padding: 15px 20px;
  }

  .benefits {
    padding: 40px 15px;
  }

  .benefits h2 {
    font-size: 33px;
    line-height: 38px;
  }
  .benefits h4{
    font-size: 17px;
  }

  .features-cards {
    flex-direction: column;
    gap: 20px;
  }

  .feature {
    width: 100%;
    padding: 25px;
    text-align: center;
  }
   

  .feature h3 {
    justify-content: left;
  }

  .feature ul {
    text-align: left;
  }

  .memberships-section {
    padding: 40px 15px;
  }

  .membership-card {
    width: 100%;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
    font-size: 32px;
  }

  .membership-card h4 {
    font-size:19px;
  }

  .membership-card p {
    font-size: 17px;
  }
  /* end of home page */
  
  /* about us view */
  .about-banner {
    height: 150px;
  }

  .about-banner .overlay {
    height: 150px;
    padding: 55px 15px;
  }
  .cancellation-banner {
    height: 130px;
  }

  .cancellation-banner .cancellation-overlay {
    height: 130px;
    padding: 30px 15px;
  }
  .cancellation-banner h1 {
    font-size: 30px;
    margin-top: 10px;
   margin-bottom: 10px;
  }

  .about-banner h1 {
    font-size: 32px;
    margin-top: -10px;
  }

  .about-banner p {
    font-size: 13px;
    letter-spacing: 0.5px;
    word-spacing: 2px;
  }
  .about-content {
    padding: 0;
  }

  .org-name {
    font-size: 20px;
    margin-bottom: -55px;

  }
   .tagline{
    margin-top: 47px;
    font-size: 18px;
   }
  .about-card {
    padding: 25px;
    margin: 24px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 16px;
    line-height: 27px;
  }

  .about-icon svg {
    width: 63px;
    height: 60px;
  }
  .about-icon{
    font-size: 42px;
   padding: -3px;
    margin-top: 1px;
  }
/* end of about-us */

/* contact-us view */
  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    gap: 25px;
    padding: 0 12px;
    flex-direction: column;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-title {
    font-size: 34px;
  }
  .contact-subtitle {
    
    font-size: 16px;
  }

  .contact-description {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 40px;
  }

  .input-group input,
  .input-group textarea {
    padding: 20px;
    font-size: 12px;
  }

  .button-submit {
    padding: 20px;
    font-size: 12px;
  }

  .info-card {
    padding: 14px 18px;
  }

  .info-card p {
    font-size: 16px;
  }

  .info-img {
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }

  .info-content {
    margin-left: 55px;
  }
 /* footer view */
   .footer-container {
    padding: 0 20px;
    gap: 25px;
  }
  .footer-logo {
    width: 150px;
    margin-bottom: 10px;
  }


  .footer-section {
    margin: 5px 0;
  }

  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 17px;
  }

  .footer-content h6 {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 18px 10px;
    margin-top: 40px;
  }
  /* membership-benefits view */
  .membership-sections h3 {
          font-size: 18px;
        }
        .membership-sections h1{
          font-size: 34px;
          color:#282f3b;
        }
        .membership-sections p {
          font-size: 15px;
          padding: 4px;
        }

  .padai-membership-benefits-section {
    padding: 10px 15px;
    margin-bottom: -16px;
    margin-top: 15px;
  }

  .padai-membership-benefits-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 10px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .padai-membership-benefits-card {
     background: #fff;
        border-radius: 12px;
       box-shadow: 0 4px 20px rgba(0,0,0,0.05);
       /* padding: 23px 30px 0; */
       position: relative;
       overflow: hidden;
       transition: all 0.4s ease;
       width: 100%;
       
    padding: 20px 20px 0;
  }
.padai-text-box{
  padding: 12px;
}
  .padai-icon {
    font-size: 80px;
    margin-bottom: 8px;
  }
    
  .padai-icon-content small {
    font-size: 57px;
    top: 25px;
    right: 15px;
  }

  .icon-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .padai-text-box p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 12px;
    color:#444;
  }

  .padai-hover-content {
    padding: 20px 25px;
  }

  .padai-hover-content .inner p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .padai-membership-benefits-container::before {
    display: none; /* Hide central vertical line on mobile */
  }
  /* students institutonal and andividual */
  /* student institutional individual */
  .form-grid {
    display: block;              
  }
  .form-grid  {
    width: 100%;
  }
    .form-container {
    width: 90%;
    margin: 40px auto;
    padding: 18px 18px;
    background: #fafcff;
    box-shadow: 0 12px 40px rgba(8, 5, 76, 0.5);
    transform: translateY(60px);
    animation: slideUpFadeIn 0.7s ease-out forwards;
}
.student-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
  justify-content: center;
  gap: 12px;
}
.student-bar {
    padding: 20px;
}
.student-bar li {
    font-size: 16px;
}
  .form-group label {
    margin-left: 0 !important;
  }
  .form-group input[type="text"],
  .form-container .input,
  .form-container select.input,
  .form-container textarea {
    width: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    display: block;
  }

  
  .professional .input {
    width: 100% !important;
  }

  .institutional-members h2 {
    font-size: 1.4rem;
  }
  
   .input {
    margin-bottom: 30px;
   }
   .iti {
    margin-bottom: 30px;
   }

    
/* students form container end */
   .form-container h2 {
    font-size: 23px;
    gap: 8px;
    text-wrap: nowrap;
   } 

   .individual-bar li {
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
   white-space: normal !important; /* override any mobile-specific styles */
    
}

.individual-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

/* Institutional Membership */
 .institutional-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
  justify-content: center;
  gap: 12px;
  }
  .institutional-nav {
    padding: 20px;
}

  .institutional-nav li {
   
    font-size: 16px;
    
  }


    /* HONOR WALL */
     .controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .entries-per-page, .search-bar {
        width: 100%;
        justify-content: space-between;
    }

    .honor-data-table {
        display: block;
        overflow-x: auto;   /* enable horizontal scroll */
        white-space: nowrap;
        font-size: 0.8em;
    }

    .honor-data-table th,
    .honor-data-table td {
        padding: 8px 6px;
    }

    .table-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .pagination {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media only screen 
  and (min-width: 768px) 
  and (max-width: 992px) {

/* honor wall */
    .controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .search {
        width: 100%;
    }

    .honor-data-table {
        display: block;
        overflow-x: auto;   /* scroll only for iPads if needed */
        white-space: nowrap;
        font-size: 0.85em;
    }

    .honor-data-table th,
    .honor-data-table td {
        padding:10px 8px;
}

     /* header */
   .header-container {
    justify-content: space-between;
    display: flex;
    align-items: center;
    height: 130px;
    letter-spacing: 1px;
}

 .sticky-header .container {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    letter-spacing: 1px;
}
.sticky-header.show {
    transition: transform 0.8s ease-in-out; 
    top: 0;
     transform: translateY(0);
}
.sticky-header.no-transition {
    transition: none !important;  
    top: -100px; 
    transform: translateY(-110%) !important;                 
}

.logo img  {
  width: 116px;
  height: auto;
  margin-left: 16px;
}

.sticky-header {
    transition: top 0.8s ease-in-out;
     transform: translateY(-110%); 
     will-change: transform; 
}
    .header-logo {
        width: 160px;
        height: auto;
        margin-left: 27px;
    }
     .mobile-contact .menu-toggle {
      display: block !important;
       order: 1;
    font-size: 33px;
    margin-left: 20px;
    } 
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0; 
        width: 100%;
       height: 100vh;  
        background: #fff;
        z-index: 2000;
        padding: 60px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
        margin-left: 0;
       
    }
    .menu-toggle {
        display: block;
        order: 1; 
        margin-left: 20px;
        
    }
    .main-nav ul .model-btn{
        display: none !important;
    }
    
    .mobile-nav-items{
        background: #282f3b !important;

     }
    /* .main-nav.active {
        display: block;
        
    }
     */
/* .main-nav.active {
        left: 0;
    }
    .main-nav ul {
        flex-direction: column;
        margin-top: 40px;
    } */
  /* .main-nav .close-icon {
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    display: block;
    margin-bottom: 20px;
    } */
    /* .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border-left: 2px solid #24cfcf;
        margin-left: 15px;
        padding-left: 10px;
        }
      .dropdown.active .dropdown-content {
        display: block;
         } */

       .main-header .top-bar{
        display: block !important;
         }
        .top-bar {
        display: flex;
        flex-direction: column;  
        align-items: center;     
        justify-content: center;
        background: #2d1f77;     
        padding: 18px;
        gap: 10px;
       
          }
      .top-item   {
      margin-top: 8px; 
      margin-bottom: 4px;
       }
     .top-bar .top-item {
      color: #fff;
     font-size: 14px;
      display: block;
       min-width: 100%;
        text-align: center;
         }

       .top-bar .top-item svg {
        fill: #fff;   
        font-size: 38px;
        }
       .mobile-contact{
        display: block;
        display: flex;
       margin-right: 30px;
        }
    .contact-btn{
       color: white;
        padding: 15px;
        font-size: 18px;
        letter-spacing: 1px;
        font-weight: 700;
        background-color: #a00;
        border: none;
        border-radius: 12px 0 12px 0;
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
    }
    /* end of header */


    /* home page view */
      .hero h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero h3 {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
    max-width: 90%;
  }

  .benefits h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .benefits p {
    font-size: 16px;
    max-width: 90%;
  }

  .feature {
    width: 300px;
    height: auto;
    padding: 30px;
  }

  .membership-card {
    width: 20px;
    margin-bottom: 25px;
   
  }

  .icon-circle {
    width: 120px;
    height: 120px;
    font-size: 40px;
  }
  .membership-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.membership-card {
    padding: 20px;
    width: 314px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.membership-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.membership-card {
    padding: 20px;
    width: 314px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* end of home page */

/* about-us view */
.about-banner {
    height: 150px;
  }

  .about-banner .overlay {
    height: 150px;
    padding: 26px 20px;
  }
    .cancellation-banner {
    height: 220px;
  }

  .cancellation-banner .cancellation-overlay {
    height: 220px;
    padding: 30px 15px;
  }
  .cancellation-banner h1{
    margin-top: 1px;
   margin-bottom: 10px;
  }

  .about-banner h1 {
    font-size: 60px;
    margin-top: -4px;
  }

  .about-banner p {
    font-size: 13px;
    word-spacing: 2px;
  }
  .tagline{
    font-size: 24px;
  }

  .org-name {
    font-size: 42px;
  }

  .about-card {
    padding: 35px;
    margin-left:36px;
    margin-right: 36px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 17px;
    line-height: 1.5;
  }
  .about-icon{
    font-size: 42px;
    padding: -3px;
    margin-top: 1px;
  }
  
    /* contact-us view */
    .contact-container {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .input-group input,
  .input-group textarea {
    padding: 20px;
    font-size: 13px;
  }

  .button-submit {
    padding: 20px;
    font-size: 13px;
    margin-top: 15px;
  }

  .contact-subtitle {
    font-size: 23px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-description {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .info-card {
    padding: 16px 22px;
  }

  .info-card p {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .info-img {
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 36px;
  }

  .info-content {
    margin-left: 55px;
  }

  /* footer view */
  .footer-container {
    padding: 0 40px;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 15px;
  }

  .footer-content h6 {
    font-size: 16px;
    margin-top: 40px;
  }

  .footer-content h5 {
    font-size: 15px;
  }

  .footer-logo {
    width: 120px;
  }

  /* membership-benefits view */
   .padai-membership-benefits-container::before {
                display: block;
            }
            .padai-membership-benefits-container::before {
             content: "";
               position: absolute;
               top: 460px;
                  bottom: -1258px;
               left: 50%;
             width: 1px;
              background: #ddd; 
               }

            
            .padai-membership-benefits-container {
            grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .padai-membership-benefits-card {
                padding: 35px 25px 25px 25px;
            }
            
            .padai-icon {
                font-size: 60px;
            }
            
            .padai-icon-content small {
                font-size: 45px;
                top: 20px;
                right: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
  }

  @media only screen 
  and (min-width: 993px) 
  and (max-width: 1200px){

    /* honorwall */
.honor-wall-container {
        padding: 15px;   /* slightly reduce padding */
    }

    .controls {
        flex-wrap: wrap; /* allow wrapping if not enough space */
        gap: 12px;
    }

    .search {
        width: 250px;    /* adjust search bar size */
    }

    .honor-data-table {
        font-size: 0.9em;  /* slightly smaller text */
    }

    .honor-data-table th,
    .honor-data-table td {
        padding:10px;
       }
     /* header  */

     .header-container {
        justify-content: space-between;
        padding: 15px;
        display: flex;
         align-items: center;
           height: 130px;
            letter-spacing: 1px;
                }
        .sticky-header .container {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 1px;
}
.sticky-header.show {
    transition: transform 0.8s ease-in-out; 
    top: 0;
     transform: translateY(0);
}
.sticky-header.no-transition {
    transition: none !important;  
    top: -100px; 
    transform: translateY(-110%) !important;                 
}

.logo img {
  width: 30%;
  height: auto;
  margin-left: 18px;
}

.sticky-header {
    transition: top 0.8s ease-in-out;
     transform: translateY(-110%); 
     will-change: transform; 
}
    .header-logo {
        width: 40%;
        height: auto;
        margin-left: 18px;
    }
    .mobile-contact.menu-toggle {
        display: block !important;
        order: 1; 
        margin-left: auto; 
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0; 
        width: 100%;
       height: 100vh;  
        background: #fff;
        z-index: 2000;
        padding: 60px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1); 
        overflow-y: auto;
        margin-left: 0;
    }
    
    
    .main-nav ul .model-btn{
        display: none !important;
    }

    /* .main-nav.active {
        display: block;
    } */
    /* .main-nav.active {
        left: 0;
    } */
    .main-nav ul {
        flex-direction: column;
        margin-top: 40px;
    }

    /* .main-nav .close-icon {
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    display: block;
    margin-bottom: 20px;
     } */
      /* .dropdown-content {
        position: absolute;
        top: 100%;
        display: none;
        box-shadow: none;
        border-left: 2px solid #24cfcf;
        margin-left: 15px;
        padding-left: 10px;
        } */

        /* .dropdown.active .dropdown-content {
        display: block;
        } */

      .top-bar {
        display: flex;
        flex-direction: column;  
        align-items: center;     
        justify-content: center;
        background: #282f3b;     
        padding: 15px;
        gap: 10px;
       
    }
    .top-item   {
    margin-top: 8px; 
    margin-bottom: 4px;
    }
    .top-bar .top-item {
       color: #fff;
       font-size: 14px;
        display: block;
         min-width: 100%;
         text-align: center;
         }

        .top-bar .top-item svg {
        fill: #fff;   
        font-size: 38px;
        }
         .mobile-contact{
        display: block;
        display: flex;
        margin-right: 21px;
       
        }
    .contact-btn{
       color: white;
        padding: 15px;
        font-size: 18px;
        letter-spacing: 1px;
        font-weight: 700;
        background-color: #a00;
        border: none;
        border-radius: 12px 0 12px 0;
        display: block;
    }
        .menu-toggle{
            display: block;
             margin-left: 20px;
        }
        /* end of header */

        /* home page view */
        .benefits p {
    font-size: 17px;
    max-width: 100%;
  }

         .feature {
    width: 300px;
    height: auto;
    padding: 30px;
  }
.membership-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.membership-card{
padding: 0px 2px;
    width: 346px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

 /* about us view */
  .about-card{
   margin: 31px;
}

/* contact-us */
.contact-info{
  margin-right: 41px;
}
.padai-membership-benefits-container::before {
                display: block;
            }
            .padai-membership-benefits-container::before {
             content: "";
               position: absolute;
               top: 392px;
               bottom: -923px;
               left: 50%;
               width: 1px;
               background: #ddd; 
               }

            
            .padai-membership-benefits-container {
            grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .padai-membership-benefits-card {
                padding: 35px 25px 25px 25px;
            }
            
            .padai-icon {
                font-size: 60px;
            }
            
            .padai-icon-content small {
                font-size: 45px;
                top: 20px;
                right: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
       }
       
@media (max-width: 1024px) {
  .cancellation-banner {
    height: 220px;
  }

  .cancellation-banner .cancellation-overlay {
    height: 220px;
    padding: 30px 15px;
  }
  .cancellation-banner h1{
    margin-top: 15px;
   margin-bottom: 18px;
  }

}

/* students institutional individual view */
/* students individual and institutional view */
  @media (min-width: 320px) and (max-width: 480px) {
    
  .form-grid {
    display: block;              
  }
  .form-grid > * {
    width: 100%;
  }

  
  .form-group label {
    margin-left: 0 !important;
  }
  .form-group input[type="text"],
  .form-container .input,
  .form-container select.input,
  .form-container textarea {
    width: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    display: block;
    margin-bottom: 0px;
  }
.error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
  display: block;
  margin-bottom: 20px;
}
  
  .professional .input {
    width: 100% !important;
  }

  .institutional-members h2 {
    font-size: 1.4rem;
  }
  
   .input {
    margin-bottom: 30px;
   }
   .iti {
    margin-bottom: 30px;
   }

    /* Membership Details for desktop  */
   .institutional-members .member-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .institutional-members .input,
    .institutional-members .input.phone-input {
        width: 80% !important;  /* full width */
    }

    /* Action buttons (+ and -) align right */
    .member-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
    .icon-btn {
      margin-top: -250px;
    }
   .institutional-members .member-row  {
      margin-bottom: -40px;
    }
    .member-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Buttons */
.icon-btn {
    background: #f1f1f1;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: background 0.2s ease-in-out;
}

.icon-btn:hover {
    background: #ddd;
}

     /* end Membership Details  */
/* students form container end */
   .form-container h2 {
    font-size: 23px;
    gap: 8px;
    text-wrap: nowrap;
   } 

   /* honorwall */
     .honor-wall-container {
        padding: 15px;   /* slightly reduce padding */
    }

    .controls {
        flex-wrap: wrap; /* allow wrapping if not enough space */
        gap: 12px;
    }

    .search {
        width: 250px;    /* adjust search bar size */
    }

    .honor-data-table {
        font-size: 0.9em;  /* slightly smaller text */
    }

    .honor-data-table th,
    .honor-data-table td {
        padding: 10px;
}

}
@media (min-width: 320px) and (max-width: 900px) and (orientation: landscape) {
  .form-grid {
    display: block;              
  }
  .form-grid > * {
    width: 100%;
  }

  
  .form-group label {
    margin-left: 0 !important;
  }
  .form-group input[type="text"],
  .form-container .input,
  .form-container select.input,
  .form-container textarea {
    width: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    display: block;
    margin-bottom: 0px;
  }

  
  .professional .input {
    width: 100% !important;
  }

  .institutional-members h2 {
    font-size: 1.4rem;
  }
  
   .input {
    margin-bottom: 30px;
   }
   .iti {
    margin-bottom: 30px;
   }
   .institutional-members .member-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .institutional-members .input,
    .institutional-members .input.phone-input {
        width: 80% !important;  /* full width */
    }

    /* Action buttons (+ and -) align right */
    .member-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
    .icon-btn {
      margin-top: -250px;
    }
   .institutional-members .member-row  {
      margin-bottom: -40px;
    }

}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  /* students form container end */
  .form-container {
    max-width: 725px;
  }
   .form-container h2 {
    font-size: 30px;
    gap: 8px;
    text-wrap: nowrap;
   } 
/* Individual Membership */
   .individual-bar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
    margin-left:20px;
    /* REMOVE margin-inline-start */
    /* margin-inline-start: 212px; */
  }

  .individual-bar li {
    color: white;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    /* ALLOW wrapping */
    white-space: normal;
    max-width: 100%; /* Ensure it doesn't overflow */
  }
/* Institutional Membership */
  .institutional-nav ul {
    flex-wrap: wrap; /* Allow items to break into next line */
    justify-content: center;
    gap: 15px;
  }

  .institutional-nav li {
    white-space: normal; /* Allow text wrapping */
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

   .institutional-members .input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  flex: 1 1 200px;
  min-width: 257px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
}



        .mobile-view {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-view.show {
            visibility: visible;
            opacity: 1;
        }

        /* Backdrop */
        .backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .backdrop.show {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Navigation Panel */
        .mobile-nav {
            position: absolute;
            top: 0;
            left: 0;
            width: 23%;
            max-width: 100%;
            height: 100%;
            background: #fff;
            z-index: 5;
            transition: all 500ms ease 0ms;
            overflow-y: auto;
            padding: 20px;
        }

        .mobile-view.show .mobile-nav {
            left: 0;
        }

        /* Close icon */
        .mobile-nav .close-icon {
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 50px;
            line-height: 40px;
            text-align: center;
            border: 1px solid #e4e7ee;
            text-align: center;
            display: block;
            margin-bottom: 20px;
            margin-left: auto;
            color: #84888f;
        }

        /* Navigation items */
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav ul li {
            border-bottom: 1px solid #ddd;
            position: relative;

        }

        .mobile-nav ul li:last-child {
            border-bottom: none;
        }

        .mobile-nav ul li a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #282f3b;
            font-size: 16px;

        }

        /* Dropdown styles */
        .mobile-nav .mobile-dropdown-content {
            display: none;
            flex-direction: column;
            background: #fff;
        }

        .mobile-nav .mobile-dropdown-content.show {
            display: flex;
        }

        .mobile-nav .mobile-dropdown-content li:last-child {
            border-bottom: none;
        }

        .mobile-nav .mobile-dropdown-content li a {
            /* padding: 12px 30px; */
            font-weight: 400;
            font-size: 15px;
            color: #444;
            margin-left: 7px;
            border-top: 1px solid #efe7ee;
        }

        /* Dropdown button */
        .mobile-nav .dropbtn {
            position: absolute;
            right: 15px;
            top: 10px;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-radius: 3px;
            cursor: pointer;
            border: 1px solid #e4e7ee;
            font-size: 24px;
        }

        /* iPad view: mobile nav 30% width with backdrop */
        @media (min-width: 768px) and (max-width: 991px) {
            .mobile-nav {
                width: 40%;
                max-width: 40%;
                left: -30%;

            }

            .mobile-view.show .mobile-nav {
                left: 0;
            }

            .backdrop {
                background: rgba(0, 0, 0, 0.5);
            }
        }

        /* Mobile view: full width nav without backdrop */
        @media (max-width: 768px) {
            .mobile-nav {
                width: 100%;
                max-width: 100%;
                left: -100%;
            }

            .mobile-view.show .mobile-nav {
                left: 0;
            }

            .backdrop {
                display: none;
            }
        }

        @media only screen and (min-width: 993px) and (max-width: 1200px) {

            .mobile-nav {
                width: 30%;
                max-width: 30%;
                left: -30%;
            }

            .mobile-view.show .mobile-nav {
                left: 0;
            }

            .backdrop {
                background: rgba(0, 0, 0, 0.5);
            }
        }

  