﻿/* ============================================
   KATWALK ACADEMY - MAIN STYLESHEET (Default.css)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ----- Banner Image ----- */
.banner-image {
    width: 100%;
    display: block;
}

/* Top background */
.top-bar {
    background: grey;
    padding: 0;
    margin: 0;
}

.Hero {
    display: flex;
    width: 100%;
    gap: 0;
    flex-wrap: wrap;
}

.hero2 {
    position: relative;
    width: 25%;
    height: 500px;
    overflow: hidden;
    border:1px solid white;
}

    .hero2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Overlay for text - centered on image */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-title {
    color: #fcdd4e;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Hover effect */
.hero2:hover .hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.hero2:hover .hero-title {
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero2 {
        width: 50%;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero2 {
        width: 100%;
        height: 400px;
    }

    .hero-title {
        font-size: 12px;
    }

    .hero-name {
        font-size: 16px;
    }

    .hero-overlay {
        padding: 15px 12px;
    }
}

@media (max-width: 480px) {
    .hero2 {
        height: 350px;
    }

    .hero-title {
        font-size: 11px;
    }

    .hero-name {
        font-size: 14px;
    }

    .hero-overlay {
        padding: 12px 10px;
    }
}





.marquee-container {
    width: 100%;
    margin: 0;
}

/* static button container - centered */
.static-btn-container {
    background: black;
    text-align: center;
    overflow: hidden;
    height: 50px; /* ✅ SAME HEIGHT ALL DEVICES */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* static button text */
.static-registration-btn {
    color: #fcdd4e;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding: 0 20px;
    transition: all 0.3s ease;
}

    .static-registration-btn:hover {
        color: #ff416c;
        transform: scale(1.02);
    }

/* ===== Mobile adjustment ===== */
@media (max-width: 768px) {
    .static-registration-btn {
        font-size: 14px;
        padding: 0 10px;
        white-space: normal;
        text-align: center;
    }
}

/* ----- Gradient Text (unchanged) ----- */
.gradient-text {
    background: linear-gradient(white, white, white);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fcdd4e;
}

/* ----- Buttons (unchanged) ----- */
.btn-primary {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(45deg, #e63e62, #e6452a);
        transform: scale(1.02);
    }

.btn-outline-primary {
    border-color: #ff416c;
    color: #ff416c;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background: #ff416c;
        color: white;
        transform: scale(1.02);
    }

/* ----- Hero Section ----- */
.hero-section {
    padding: 0px 0;
}

.hero-model-img {
    max-height: 500px;
    width: auto;
    object-fit: cover;
}

/* ----- Collaborations Slider Section - Full Color, Mobile Height 250px ----- */
.collaborations-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.slider-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Logo Images - Original Colors (No Grayscale) */
.partner-logo-img {
    max-height: 85px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    filter: none !important;
    opacity: 1;
}

    .partner-logo-img:hover {
        transform: scale(1.05);
    }

/* Slider Buttons */
.slider-btn {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

    .slider-btn:hover {
        transform: scale(1.1);
        background: linear-gradient(45deg, #e63e62, #e6452a);
    }

/* Pagination Dots */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pagination-dot.active {
        background: linear-gradient(45deg, #ff416c, #ff4b2b);
        width: 25px;
        border-radius: 10px;
    }

    .pagination-dot:hover {
        background: #ff416c;
    }

/* Mobile Responsive - 1 slide, image height 250px */
@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .partner-logo-img {
        height: 250px;
        max-height: 250px;
        width: auto;
        object-fit: contain;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .slider-item {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .partner-logo-img {
        max-height: 70px;
    }
}

/* ===== COMMON SECTION ===== */
.ff-offer-section,
.ff-founder-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FLEX WRAPPER */
.ff-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch; /* 🔥 equal height */
}

/* ===== 50% WIDTH FOR BOTH ===== */
.ff-offer-text,
.ff-founder-text,
.ff-offer-image,
.ff-founder-image {
    width: 50%;
}

/* ===== TEXT SIDE ===== */
.ff-offer-text,
.ff-founder-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== IMAGE SIDE ===== */
.ff-offer-image img,
.ff-founder-image img {
    width: 100%;
    height: 100%;
  
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== HEADINGS ===== */
.ff-offer-text h2,
.ff-founder-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color:black;
}

.ff-founder-text h3 {
    font-size: 1.6rem;
    color: #ff416c;
    margin-bottom: 15px;
}

/* ===== PARAGRAPH ===== */
.ff-offer-text p,
.ff-founder-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ===== OPTIONAL: SAME HEIGHT LOOK ===== */
.ff-wrapper {
    min-height: 450px; /* 🔥 premium equal look */
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .ff-wrapper {
        flex-direction: column;
    }

    .ff-offer-text,
    .ff-founder-text,
    .ff-offer-image,
    .ff-founder-image {
        width: 100%;
    }

       

    .ff-offer-text,
    .ff-founder-text {
        padding: 20px;
        text-align: center;
    }
}

/* DEFAULT (Desktop - keep cover for design) */
.ff-founder-image img {
    width: 100%;
    height: 100%;
    
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .ff-founder-image img {
        height: auto; /* 🔥 full image visible */
        object-fit: contain; /* 🔥 no crop */
        border-radius: 10px;
    }
}





.founder-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

/* Image Section - 50% */
.founder-image {
    flex: 1;
    width: 50%;
}

    .founder-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        display: block;
    }

/* Content Section - 50% with smaller text */
.founder-content {
    flex: 1;
    width: 50%;
}

    .founder-content h2 {
        font-size: 28px;
        color: black;
        margin-bottom: 10px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .founder-content h3 {
        font-size: 25px;
        color: black;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .founder-content p {
        font-size: 14px;
        line-height: 1.6;
        color: #444;
        margin-bottom: 12px;
        text-align: justify;
    }

        .founder-content p strong {
            color: black;
            font-size: 15px;
        }

/* Responsive - Mobile & Tablet */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        gap: 30px;
    }

    .founder-image,
    .founder-content {
        width: 100%;
        flex: auto;
    }

        .founder-image img {
            max-height: 500px;
            width: 100%;
            object-fit: cover;
        }

        .founder-content h2 {
            font-size: 24px;
            text-align: center;
        }

        .founder-content h3 {
            font-size: 26px;
            text-align: center;
        }

        .founder-content p {
            font-size: 13px;
            text-align: left;
        }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 40px 0;
    }

    .founder-container {
        padding: 0 15px;
        gap: 20px;
    }

    .founder-content h2 {
        font-size: 22px;
    }

    .founder-content h3 {
        font-size: 24px;
    }

    .founder-content p {
        font-size: 12px;
        line-height: 1.5;
    }

        .founder-content p strong {
            font-size: 13px;
        }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 30px 0;
    }

    .founder-content h2 {
        font-size: 20px;
    }

    .founder-content h3 {
        font-size: 22px;
    }

    .founder-content p {
        font-size: 11px;
        line-height: 1.5;
    }
}










/* ----- Testimonials Section ----- */
.testimonials-section {
    padding: 60px 0;
}

.testimonial-card {
    transition: transform 0.2s ease;
    border: none;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

.testimonial-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

/* ----- Gallery Section ----- */
.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.gallery-overlay {
    text-align: center;
    padding: 20px;
    background: #fff;
}

.gallery-text {
    color: #000 !important;
    font-size: 1rem;
    line-height: 1.5;
}

    .gallery-text strong {
        display: block;
        font-size: 1.1rem;
        margin-top: 5px;
    }

.programs-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Flex Grid Container */
.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

/* Program Link - removes default underline */
.program-link {
    text-decoration: none;
    flex: 1 1 calc(25% - 24px);
    min-width: 250px;
    max-width: 100%;
    transition: transform 0.3s ease;
}

    .program-link:hover {
        transform: translateY(-5px);
    }

/* Program Card */
.program-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .program-card:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        background: linear-gradient(135deg, #fff, #fff0f3);
    }

/* Program Icon - Dark Pink */
.program-icon {
    margin-bottom: 20px;
}

    .program-icon i {
        color: #c2185b !important; /* Dark Pink */
        transition: transform 0.3s ease;
    }

.program-card:hover .program-icon i {
    transform: scale(1.1);
    color: #ad1457 !important;
}

/* Card Text */
.program-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.program-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Badge - Dark Pink */
.program-card .badge {
    background: #c2185b !important; /* Dark Pink */
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    color: white;
}

.program-card:hover .badge {
    background: #ad1457 !important;
}

/* Section Heading with Dark Pink accent */
.programs-section .display-5 {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

    .programs-section .display-5:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: #c2185b;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.programs-section .lead {
    color: #c2185b !important;
    font-weight: 500;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .program-link {
        flex: 1 1 calc(33.333% - 24px);
    }
}

@media (max-width: 992px) {
    .program-link {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 576px) {
    .programs-grid {
        gap: 20px;
    }

    .program-link {
        flex: 1 1 100%;
        min-width: auto;
    }

    .program-card {
        padding: 25px 15px;
    }

        .program-card h4 {
            font-size: 1.2rem;
        }

        .program-card p {
            font-size: 0.85rem;
        }
}

/* ----- Events Section ----- */
.events-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.event-card {
    transition: transform 0.2s ease;
    border: none;
}

    .event-card:hover {
        transform: translateY(-3px);
    }

.event-date {
    min-width: 70px;
}

/* ----- Stats Section ----- */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: bold;
}

/* ----- CTA Section ----- */
.cta-section {
    padding: 60px 0;
}

/* ----- Additional Responsive Styles ----- */
@media (max-width: 768px) {
    .hero-model-img {
        max-height: 350px;
    }

    .gallery-section {
        padding: 30px 15px;
    }

    .gallery-img {
        height: auto;
        max-height: 350px;
        object-fit: contain;
        background-color: #f8f9fa;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-img {
        max-height: 280px;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-text {
        font-size: 0.9rem;
    }

        .gallery-text strong {
            font-size: 1rem;
        }
}

/* ----- Utility Classes ----- */
.text-primary {
    color: #ff416c !important;
}

.bg-primary {
    background: linear-gradient(45deg, #ff416c, #ff4b2b) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.rounded-4 {
    border-radius: 1rem;
}

.text-warning {
    color: #ffc107;
}

.text-muted {
    color: #6c757d !important;
}

.fw-bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}
