 enabled@font-face {
    font-family: 'Satoshi Variable';
    src: url('../font/Satoshi-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi Variable';
    src: url('../font/Satoshi-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Force font loading */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* Global Typography Rules - All headings use Satoshi Variable */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi Variable', sans-serif;
}

/* All paragraphs and body text use Helvetica */
p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
}

/* Navigation links use Satoshi Variable */
.nav-link {
    font-family: 'Satoshi Variable', sans-serif;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    color: inherit;
    opacity: 0.9;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000000;
    font-family: 'Satoshi Variable', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d32f2f;
}

.nav-link i {
    font-size: 16px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 90px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.slide {
    position: relative;
    min-width: 100vw;
    width: 70vw;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000002e;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 3;
    max-width: 600px;
    width: min(600px, calc(70vw - 120px));
}

.hero-headline {
    font-family: 'Satoshi', sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    /* background-color: rgba(255, 255, 255, 0.2); */
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    /* backdrop-filter: blur(10px); */
}

.btn-primary:hover {
    /* background-color: rgba(255, 255, 255, 0.3); */   
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    /* background-color: rgba(255, 255, 255, 0.2); */
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    /* backdrop-filter: blur(10px); */
}

.btn-secondary:hover {
    /* background-color: rgba(255, 255, 255, 0.3); */   
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    font-size: 18px;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

 /* ============================================
           TESTIMONIAL SECTION - COMPLETELY FIXED
           ============================================ */
        .testimonial-section {
    padding: 100px 20px;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('/images/testimonial-bg.png');
    background-size: cover;
}

        .testimonial-section .container {
            max-width: 1400px;
            margin: 0 auto;
           
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 18px;
            line-height: 1.6;
            color: white;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Slider Container */
        .testimonial-slider-container {
            position: relative;
            margin: 0 auto;
            max-width: 1200px;
            overflow: hidden;
            padding: 0 60px;
        }

        .testimonial-slider-wrapper {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Individual Card */
        .testimonial-card {
            flex: 0 0 calc(100% - 15px);
            min-width: calc(100% - 15px);
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            padding: 50px 40px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

       

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 80px;
            color: #f0f0f0;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 17px;
            line-height: 1.8;
            color: white;
            margin-bottom: 35px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f0f0f0;
            padding-top: 25px;
        }

        .reviewer-name {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #1a1a1a;
            text-transform: uppercase;
        }

        .reviewer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #f5f5f5;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Controls */
        .testimonial-slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            left: 0;
            padding: 0 10px;
        }

        .testimonial-slider-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #333;
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: all;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .testimonial-slider-btn:hover:not(:disabled) {
            background: #000;
            transform: scale(1.08);
        }

        .testimonial-slider-btn:disabled {
            background: #ddd;
            cursor: not-allowed;
            opacity: 0.4;
        }

        /* Dots */
        .testimonial-slider-dots {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 50px;
        }

        .testimonial-slider-dots .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-slider-dots .dot:hover {
            background: #999;
        }

        .testimonial-slider-dots .dot.active {
            background: #333;
            width: 40px;
            border-radius: 6px;
        }

        /* Responsive */
       
/* About Our Mentor Section */
.about-mentor-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 2;
}

.about-mentor-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 100px;
    margin-bottom: -135px;
}

.section-subtitle {
    font-family: 'Satoshi Variable', sans-serif;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 0px;
    color: #ffffff80;
}

.section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 44px;
    font-weight: 100;
    font-style: normal;
    line-height: 1.3;
    margin-bottom: -3px;
    color: #ffffff;
}

.section-divider {
    width: 2px;
    height: 40px;
    background-color: #ffffff;
    margin-bottom: 4px;
}

.section-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: -106px;
}


/* Why Choose Section */
.why-choose-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    overflow: hidden;
}

.why-choose-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/why-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    
    z-index: 1;
}

.why-choose-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.why-choose-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
}

.why-choose-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 60px;
}

.why-choose-header-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-header-divider {
    width: 114%;
    max-width: 441px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);

}

.why-choose-header-right {
    flex: 1;
    text-align: left;
    margin-bottom: -24px;
}

.why-choose-title {
    font-family: 'Satoshi-Light', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    white-space: nowrap;
}

.why-choose-tagline {
    font-family: 'Satoshi', 'Georgia', serif;
    font-size: 44px;
    font-weight: 300;
    font-style: normal;
    color: rgb(147 146 146);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.tagline-emphasis {
    font-style: normal;
    font-weight: 400;
    color: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-video-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background-color: #000;
}

.why-choose-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-text-wrapper {
    position: relative;
    padding: 0;
    background: transparent;
}

.why-choose-text-content {
    position: relative;
    z-index: 3;
}

.why-choose-heading {
    font-family: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 35px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.why-choose-paragraph {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.why-choose-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design */


/* ============================================
           ATELIER SECTION - MAIN CONTAINER
           ============================================ */
           .atelier-courses-section {
            background: #F5F5F5;
            padding: 80px 20px 100px;
            width: 100%;
        }

        .atelier-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ============================================
           HEADER CONTENT
           ============================================ */
        .atelier-header {
            margin-bottom: 60px;
        }

        .atelier-label {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 11px;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: #999999;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .atelier-heading {
            font-family: 'Satoshi Variable', sans-serif;
            font-size: 36px;
            line-height: 1.3;
            font-weight: 300;
            color: #C3C3C3;
            margin-bottom: 24px;
        }

        .atelier-heading .emphasis {
            font-weight: 700;
            color: #000000;
        }

        .atelier-description {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 12px;
            line-height: 1.7;
            color: #000000;
            /* max-width: 850px; */
            font-weight: 400;
        }

        /* ============================================
           SLIDER WRAPPER & TRACK
           ============================================ */
        .atelier-slider-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
        }

        .atelier-slider-wrapper.atelier-dragging {
            cursor: grabbing;
        }

        .atelier-slider-track {
            display: flex;
            gap: 0;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .atelier-slider-wrapper.atelier-dragging .atelier-slider-track {
            transition: none;
        }

        /* ============================================
           INDIVIDUAL SLIDES
           ============================================ */
        .atelier-slide {
            position: relative;
            flex-shrink: 0;
            width: 100% !important;
            height: 450px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            background: #2a2a2a;
        }

        .atelier-slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
            object-position: center center !important;
        }

        /* Dark gradient overlay for text readability over sketch/collage images */
        .atelier-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
            z-index: 1;
        }

        /* ============================================
           SLIDE CONTENT OVERLAY
           ============================================ */
        .atelier-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            z-index: 2;
            color: #ffffff;
        }

        .atelier-slide-title {
            font-family: 'Satoshi Variable', sans-serif;
            font-size: 38px;
            font-weight: 400;
            margin-bottom: 8px;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
        }

        .atelier-slide-subtitle {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: 300;
            margin-bottom: 20px;
            opacity: 0.95;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
        }

        /* ============================================
           META INFO BADGES
           ============================================ */
        .atelier-slide-meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .atelier-meta-badge {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 12px;
            padding: 8px 16px;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            font-weight: 400;
            letter-spacing: 0.3px;
            color: #ffffff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
            white-space: nowrap;
        }

        /* ============================================
           KNOW MORE BUTTON
           ============================================ */
        .atelier-know-more {
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            text-decoration: none;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
        }

        .atelier-know-more:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        


/* ============================================
   GALLERY SECTION - FIXED VERSION
   Small images, no modal popup on click
   ============================================ */

/* REPLACE THE EXISTING GALLERY CSS IN YOUR style.css WITH THIS */

/* Reset for this section only */
.gallery-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gallery-section {
    all: initial;
    display: block;
    width: 100%;
    padding: 80px 0px;
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.gallery-section .gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .gallery-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.gallery-section .gallery-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
    height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Disable click on images */
}

/* Responsive design */


/* REMOVE MODAL - No longer needed */
/* Delete the .modal, .modal-content, and .modal-close styles */
/* footer */

/* Reset styles for this footer only */
.sakp-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sakp-footer {
    position: relative;
    width: 100%;
    background: white;
    padding: 60px 20px 40px;
    font-family: 'Helvetica', sans-serif;
    overflow: hidden;
}

/* Large background text - full width on desktop, scales on smaller screens */
.sakp-footer::before {
    content: 'SAKP';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    font-size: clamp(72px, 27vw, 520px);
    font-weight: 900;
    color: rgb(243 243 243);
    letter-spacing: 0.2em;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.sakp-footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 60px;
    z-index: 1;
}

/* Logo section */
.sakp-footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sakp-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
}

.sakp-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sakp-social-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sakp-social-links a:hover {
    color: #c41e3a;
}

/* Footer columns */
.sakp-footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.sakp-footer-column ul {
    list-style: none;
}

.sakp-footer-column ul li {
    margin-bottom: 12px;
}

.sakp-footer-column ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sakp-footer-column ul li a:hover {
    color: #c41e3a;
}

/* Newsletter section */
.sakp-newsletter {
    display: flex;
    flex-direction: column;
}

.sakp-newsletter h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.sakp-newsletter p {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.sakp-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sakp-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sakp-input-group input {
    padding: 12px 15px;
    border-bottom: 1px solid #ffffff00;
    background: rgb(255 255 255 / 0%);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.sakp-input-group input:focus {
    border-color: #c41e3a;
    background: #fff;
}

.sakp-input-group input::placeholder {
    color: #999;
}

.sakp-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 5px;
}

.sakp-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sakp-checkbox-group label {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.sakp-subscribe-btn {
    padding: 12px 30px;
    
    /* border: 2px solid #333; */
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.sakp-subscribe-btn:hover {
    background: #333;
    color: #fff;
}

/* Social icons at bottom */
.sakp-social-icons {
    position: relative;
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    z-index: 1;
}

.sakp-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #555;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sakp-social-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #c41e3a;
    transform: translateY(-3px);
}

/* X (Twitter) icon SVG - matches other social icons size/color */
.sakp-social-icon-x svg {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

/* Responsive */

/* Square Menu Popup */
.menu-overlay {
    position: fixed;
    top: 90px; /* Below navbar */
    right: 0px;
    width: 280px;
    background: #ffffff;
    z-index: 9999;
   
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.active {
    /* opacity: 1; */
    visibility: visible;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-header img {
    height: 35px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.menu-close:hover {
    color: #d32f2f;
}

.menu-nav {
    padding: 10px 0;
}

.menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-nav ul li {
    margin: 0;
}

.menu-nav ul li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Satoshi Variable', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-nav ul li a:hover,
.menu-nav ul li a.active {
    /* background: #f5f5f5;
    border-left-color: #d32f2f; */
    color: #b40000;
}

/* Arrow pointer at top */
.menu-overlay::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    /* border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0; */
}



/* ==============================
   NEWSLETTER – CLEAN MINIMAL STYLE
   ============================== */

   .sakp-newsletter h3 {
    font-family: 'Satoshi Variable', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #111;
    margin-bottom: 5px;
}

.sakp-newsletter p {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #111;
    margin-bottom: 40px;
}

/* Input fields */
.sakp-input-group input {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border: none;
    border-bottom: 1px solid #111;
    background: transparent;
    outline: none;
}

.sakp-input-group input::placeholder {
    color: #111;
    opacity: 0.8;
}

/* Checkbox alignment */
.sakp-checkbox-group {
    margin-top: 20px;
    margin-bottom: 40px;
}

.sakp-checkbox-group label {
    font-size: 14px;
    color: #111;
}

/* Subscribe text button style */
.sakp-subscribe-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Satoshi Variable', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    border-bottom: 2px solid #111;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sakp-subscribe-btn:hover {
    opacity: 0.6;
}



/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ============================================ */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
    .nav-container { padding: 0 30px; }
    .logo-img { height: 50px; }
    .hero-section { margin-top: 85px; }
    .hero-content { left: 40px; bottom: 60px; max-width: 550px; }
    .hero-headline { font-size: 30px; line-height: 1.3; }
    .btn { padding: 12px 28px; font-size: 15px; }
    .about-mentor-content { padding: 80px 40px; }
    .section-title { font-size: 38px; }
    .why-choose-content { grid-template-columns: 1fr; gap: 40px; }
    .why-choose-video-wrapper { height: 400px; }
    .atelier-heading { font-size: 32px; }
    .atelier-slide { height: 420px; }

    /* Footer - tablet */
    .sakp-footer { padding: 50px 30px 40px; }
    .sakp-footer::before { font-size: clamp(100px, 28vw, 320px); }
    .sakp-footer-container { gap: 40px; }
    .sakp-footer-column h3 { font-size: 15px; margin-bottom: 16px; }
    .sakp-footer-column ul li a { font-size: 13px; }
    .sakp-newsletter h3 { font-size: 14px; }
    .sakp-newsletter p { font-size: 12px; }
    .sakp-social-icons { margin-top: 32px; padding-top: 24px; gap: 12px; }
    .sakp-social-icon { width: 38px; height: 38px; font-size: 16px; }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .navbar { padding: 12px 0; }
    .nav-container { padding: 0 20px; }
    .logo-img { height: 45px; }
    .logo-title { font-size: 9px; letter-spacing: 1.5px; }
    .nav-link span { font-size: 12px; }
    
    /* Hero Section */
    .hero-section { margin-top: 75px; height: 80vh; min-height: 600px; }
    .hero-content { left: 20px; right: 20px; bottom: 40px; max-width: 100%; width: calc(100% - 40px); }
    .hero-headline { font-size: 24px; margin-bottom: 20px; line-height: 1.4; }
    .hero-buttons { flex-direction: row; gap: 12px; }
    .btn { padding: 10px 20px; font-size: 13px; flex: 1; }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
    .slider-dots { bottom: 15px; gap: 8px; }
    .dot { width: 10px; height: 10px; }
    
    /* About Mentor */
    .about-mentor-section { min-height: auto; padding: 60px 20px; }
    .about-mentor-content { padding: 40px 20px; max-width: 100%; }
    .section-subtitle { font-size: 20px; letter-spacing: 2px; }
    .section-title { font-size: 32px; margin-bottom: 15px; }
    .section-text { font-size: 13px; line-height: 1.7; }
    
    /* Why Choose */
    .why-choose-container { padding: 60px 20px; }
    .why-choose-header { flex-direction: column; gap: 20px; margin-bottom: 50px; }
    .why-choose-title { font-size: 7px; letter-spacing: 3px; }
    .why-choose-tagline { font-size: 28px; line-height: 1.3; }
    .why-choose-header-divider { max-width: 100%; width: 100%; }
    .why-choose-video-wrapper { height: 300px; }
    .why-choose-paragraph { font-size: 14px; }
    
    /* Atelier Courses */
    .atelier-courses-section { padding: 60px 15px 80px; }
    .atelier-heading { font-size: 26px; line-height: 1.4; }
    .atelier-slide { height: 380px; }
    .atelier-slide-content { padding: 28px 104px 78px 24px; }
    .atelier-slide-title { font-size: 28px; }
    .atelier-slide-meta { gap: 8px; padding-right: 4px; }
    .atelier-meta-badge { font-size: 11px; padding: 6px 12px; }
    .atelier-know-more { width: 75px; height: 75px; font-size: 9px; bottom: 20px; right: 20px; }
    .atelier-slider-wrapper .slider-btn { width: 45px; height: 45px; }
    
    /* Testimonials */
    .testimonial-section { padding: 60px 20px; }
    .section-header h2 { font-size: 32px; }
    .testimonial-card { padding: 35px 25px; }
    .testimonial-text { font-size: 15px; }
    
    /* Gallery */
    .gallery-section { padding: 60px 15px; }
    .gallery-title { font-size: 32px; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
    .gallery-item { height: 240px; }
    
    /* Footer */
    .sakp-footer { padding: 45px 20px 35px; }
    .sakp-footer::before { font-size: clamp(80px, 35vw, 200px); }
    .sakp-footer-container { grid-template-columns: 1fr 1fr; gap: 28px; }
    .sakp-footer-logo .sakp-logo-img { width: 100px; margin-bottom: 20px; }
    .sakp-footer-column h3 { font-size: 14px; margin-bottom: 14px; }
    .sakp-footer-column ul li { margin-bottom: 10px; }
    .sakp-footer-column ul li a { font-size: 13px; }
    .sakp-newsletter h3 { font-size: 14px; }
    .sakp-newsletter p { font-size: 12px; margin-bottom: 16px; }
    .sakp-newsletter-form { gap: 12px; }
    .sakp-input-group input { padding: 10px 12px; font-size: 13px; }
    .sakp-subscribe-btn { padding: 10px 24px; font-size: 13px; }
    .sakp-social-icons { margin-top: 28px; padding-top: 22px; gap: 10px; }
    .sakp-social-icon { width: 36px; height: 36px; font-size: 15px; }

    /* WhatsApp */
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    /* Navigation */
    .logo-title, .logo-text-wrapper { display: none; }
    .logo-img { height: 40px; }
    .nav-right { gap: 15px; }
    
    /* Hero */
    .hero-section { height: 70vh; min-height: 500px; margin-top: 70px; }
    .hero-content { left: 15px; right: 15px; bottom: 30px; }
    .hero-headline { font-size: 20px; margin-bottom: 15px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; }
    .slider-btn { width: 35px; height: 35px; }
    
    /* Sections */
    .about-mentor-content { padding: 60px 16px 40px; }
    .section-subtitle { font-size: 16px; }
    .section-title { font-size: 26px; }
    .section-text { font-size: 12px; }
    
    /* Why Choose */
    .why-choose-container { padding: 50px 15px; }
    .why-choose-tagline { font-size: 22px; }
    .why-choose-video-wrapper { height: 250px; }
    .why-choose-paragraph { font-size: 13px; }
    
    /* Atelier */
    .atelier-heading { font-size: 22px; }
    .atelier-slide { height: 340px; }
    .atelier-slide-content { padding: 22px 92px 72px 18px; }
    .atelier-slide-title { font-size: 24px; }
    .atelier-slide-subtitle { font-size: 14px; margin-bottom: 12px; }
    .atelier-meta-badge { font-size: 10px; padding: 6px 10px; }
    .atelier-know-more { width: 58px; height: 58px; font-size: 7px; bottom: 16px; right: 16px; }
    
    /* Testimonials */
    .section-header h2 { font-size: 26px; }
    .testimonial-card { padding: 30px 20px; }
    .testimonial-text { font-size: 14px; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-item { height: 180px; }
    
    /* Footer - single column */
    .sakp-footer { padding: 40px 16px 30px; }
    .sakp-footer::before { font-size: clamp(72px, 28vw, 140px); }
    .sakp-footer-container { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    .sakp-footer-logo .sakp-logo-img { width: 90px; margin-bottom: 18px; }
    .sakp-footer-column h3 { font-size: 14px; margin-bottom: 12px; }
    .sakp-footer-column ul li { margin-bottom: 8px; }
    .sakp-footer-column ul li a { font-size: 13px; }
    .sakp-newsletter { max-width: 100%; }
    .sakp-newsletter h3 { font-size: 13px; }
    .sakp-newsletter p { font-size: 12px; margin-bottom: 12px; }
    .sakp-newsletter-form { gap: 10px; }
    .sakp-checkbox-group label { font-size: 11px; }
    .sakp-social-icons { justify-content: flex-start; margin-top: 24px; padding-top: 20px; gap: 10px; }
    .sakp-social-icon { width: 34px; height: 34px; font-size: 14px; }
}

/* EXTRA SMALL (375px and below) */
@media (max-width: 375px) {
    .hero-headline { font-size: 18px; }
    .section-title { font-size: 24px; }
    .why-choose-tagline { font-size: 20px; }
    .atelier-heading { font-size: 20px; }
    .gallery-title { font-size: 24px; }

    /* Footer */
    .sakp-footer { padding: 36px 12px 28px; }
    .sakp-footer::before { font-size: 72px; }
    .sakp-footer-container { gap: 20px; }
    .sakp-footer-logo .sakp-logo-img { width: 80px; }
    .sakp-footer-column h3 { font-size: 13px; }
    .sakp-footer-column ul li a { font-size: 12px; }
    .sakp-social-icons { margin-top: 20px; padding-top: 18px; }
}

/* LANDSCAPE MODE FIX */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section { height: 100vh; min-height: auto; }
    .hero-headline { font-size: 22px; }
}
