@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
}

/* GLOBAL CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    height: 100px;
}

/* NAV ITEMS GROUP */
.nav-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* CONTACT BLOCK */
.nav-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

/* ICON */
.nav-icon {
    width: 50px;
    height: 50px;
    background: #193459;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* TEXT */
.nav-num {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #193459;
}

/* BUTTON */
.enquire-btn {
    padding: 10px 22px;
    background: #193459;
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.enquire-btn:hover {
    background: #12263f;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 80vh;
    background: url("hero-bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-announcement {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-highlight {
    display: inline-block;
    background: white;
    color: #193459;
    padding: 10px 22px;
    font-size: 38px;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 25px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-btn {
    background: white;
    color: #193459;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #193459;
    color: white;
}

/* ================= REGISTRATION FORM SECTION ================= */
.registration-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf5 100%);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.registration-content {
    padding: 35px 30px;
    background: linear-gradient(145deg, #193459, #1f4270);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registration-badge {
    display: inline-block;
    background: #FFD700;
    color: #193459;
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.registration-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.registration-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.benefit-item i {
    color: #FFD700;
    font-size: 14px;
}

.registration-form-container {
    padding: 25px;
    background: white;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: #193459;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #193459;
}

.registration-form .form-group {
    margin-bottom: 12px;
}

.registration-form label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: #444;
    font-size: 12px;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.2s;
    background: #ffffff;
    height: 34px;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: #193459;
    box-shadow: 0 0 0 2px rgba(25, 52, 89, 0.1);
}

.registration-form input::placeholder {
    color: #aaa;
    font-size: 11px;
}

.registration-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0;
}

.registration-form .form-checkbox input {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    cursor: pointer;
}

.registration-form .form-checkbox label {
    font-size: 10px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    background: #193459;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #12263f;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 20px 15px;
}

.success-message i {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 12px;
}

.success-message h3 {
    color: #193459;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-details {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    text-align: left;
    border-left: 3px solid #193459;
}

.success-details p {
    margin-bottom: 5px;
    color: #333;
    font-size: 12px;
}

.success-details p:last-child {
    margin-bottom: 0;
}

.success-message .small-text {
    font-size: 11px;
    color: #666;
    margin: 10px 0;
}

/* ================= PGDM PROGRAMS ================= */
.programs {
    background: #f3f4f6;
    padding: 20px 0;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #193459;
    margin-bottom: 25px;
}

.program-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.program-tags span {
    background: #dfe3ea;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    color: #193459;
}

.program-tags span strong {
    color: #193459;
    font-weight: 800;
}

.scholarship-box {
    max-width: 800px;
    margin: auto;
}

.scholarship-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #193459;
    margin-bottom: 10px;
}

.tagline {
    font-size: 21px;
    margin-bottom: 20px;
    color: #444;
}

.tagline strong {
    color: #193459;
    font-weight: 800;
}

.description {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.description strong {
    color: #193459;
    font-weight: 800;
}

.scholarship-list {
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    line-height: 1.6;
}

.scholarship-list span {
    display: inline-block;
    padding: 5px 0;
}

.scholarship-list span strong {
    color: #193459;
    font-weight: 800;
    font-size: 16px;
}

/* Add dots between items */
.scholarship-list span:not(:last-child)::after {
    content: "•";
    color: #193459;
    margin-left: 15px;
    font-weight: bold;
    display: inline-block;
}

.conditions {
    font-size: 12px;
    color: #666;
    margin: 15px 0;
}

.conditions em {
    color: #193459;
    font-style: italic;
    font-weight: 600;
}

.eligibility-btn {
    background: #193459;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.eligibility-btn strong {
    color: white;
    font-weight: 700;
}

.eligibility-btn:hover {
    background: #12263f;
}

/* ================= WHY BSB SECTION ================= */
.why-bsb {
    position: relative;
    background: url("bsbimg.png") center/cover no-repeat;
    padding: 50px 0;
    color: #fff;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 52, 89, 0.85);
}

.why-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-content h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 40px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: left;
    flex-wrap: wrap;
}

.why-grid ul {
    list-style: none;
}

.why-grid li {
    margin-bottom: 15px;
    font-size: 20px;
    padding-left: 18px;
    position: relative;
}

.why-grid li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* ================= MENTORS ================= */
.mentors {
    padding: 30px 0 30px 0;
    text-align: center;
    overflow: hidden;
}

.mentorSwiper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 50px 0;
}

.swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FLIP CARD */
.flip-card {
    width: 100%;
    height: 100%;
    max-width: 280px;
    margin: 0 auto;
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT */
.flip-front {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    backface-visibility: hidden;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.flip-front img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* TEXT OVER IMAGE - Only name shows on front */
.mentor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.mentor-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.mentor-info p {
    font-size: 13px;
    display: none; /* Hide all paragraphs on front */
}

/* BACK - Full details show on flip */
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #193459;
    color: white;
    border-radius: 12px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.flip-back h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.flip-back p {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* ================= PAGINATION STYLES ================= */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #193459 !important;
    width: 25px !important;
    border-radius: 5px;
}

.swiper-pagination-bullet:hover {
    background: #193459;
}

/* ================= PARTNERS ================= */
.partners {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.partners-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.partners-grid img {
    max-width: 140px;
    margin: auto;
    transition: transform 0.3s ease;
}

.partners-grid img:hover {
    transform: scale(1.05);
}

/* ================= NEXT STEP SECTION ================= */
.next-step {
    padding: 30px 0 0;
    background: #fff;
    text-align: center;
}

.next-title {
    font-size: 30px;
    font-weight: 800;
    color: #193459;
    margin-bottom: 20px;
    line-height: 1.3;
}

.next-desc {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.next-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.next-btn {
    background: #193459;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}

.next-btn:hover {
    background: #0f2742;
}

.next-image img {
    width: 100%;
    display: block;
}

/* ================= FOOTER ================= */
.footer {
    background: #193459;
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-top: 15px;
}

.footer-logo {
    height: 100px;
    filter: brightness(1) invert(0);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col p i {
    width: 25px;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #12263f;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-highlight {
        font-size: 28px;
    }
    
    .registration-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .registration-form-container {
        max-width: 100%;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Hide all nav items except logo on mobile */
    .nav-items {
        display: none;
    }
    
    .nav-wrapper {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-highlight {
        font-size: 24px;
    }
    
    .registration-content {
        padding: 30px 25px;
    }
    
    .registration-title {
        font-size: 24px;
    }
    
    .registration-form-container {
        padding: 20px;
    }
    
    .why-grid {
        gap: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mentorSwiper {
        width: 95%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .next-title {
        font-size: 24px;
    }
    
    .next-desc {
        font-size: 16px;
    }
    
    .scholarship-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .scholarship-list span:not(:last-child)::after {
        content: "";
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-highlight {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .program-tags span {
        width: 100%;
    }
    
    .registration-content {
        padding: 25px 20px;
    }
    
    .registration-title {
        font-size: 22px;
    }
    
    .registration-form-container {
        padding: 20px 15px;
    }
    
    .why-grid {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .why-grid ul {
        text-align: left;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mentorSwiper {
        width: 100%;
        padding: 10px;
    }
    
    .swiper-pagination-bullet-active {
        width: 20px !important;
    }
    
    .next-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .next-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-grid {
        gap: 20px;
    }
}