@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-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: 70vw;
    width: 70vw;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient */
    background-color: #2c3e50;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 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);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
    background-color: #ffffff;
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-link span {
        display: none;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-content {
        left: 30px;
        bottom: 50px;
        max-width: 90%;
        width: auto;
        right: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* On mobile, show full slide (no 70/30 preview) */
    .slide {
        min-width: 100vw;
        width: 100vw;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 24px;
    }

    .hero-content {
        left: 20px;
        bottom: 30px;
    }
}

/* 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%;
    background-color: rgba(0, 0, 0, 0.6);
    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: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    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 */
@media (max-width: 1200px) {
    .why-choose-tagline {
        font-size: 44px;
    }
    
    .why-choose-video-wrapper {
        height: 450px;
    }
    
    .why-choose-title {
        font-size: 11px;
    }
    
    .why-choose-header-divider {
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .why-choose-container {
        padding: 80px 40px;
    }

    .why-choose-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .why-choose-header-left {
        gap: 12px;
    }
    
    .why-choose-header-right {
        padding-bottom: 0;
    }
    
    .why-choose-header-divider {
        max-width: 250px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-video-wrapper {
        height: 400px;
    }
    
    .why-choose-tagline {
        font-size: 38px;
    }
    
    .why-choose-bg-image {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .why-choose-container {
        padding: 60px 30px;
    }

    .why-choose-header {
        margin-bottom: 50px;
        gap: 20px;
    }

    .why-choose-title {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .why-choose-tagline {
        font-size: 32px;
    }

    .why-choose-video-wrapper {
        height: 350px;
    }

    .why-choose-heading {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .why-choose-paragraph {
        font-size: 15px;
    }
    
    .why-choose-header-divider {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .why-choose-container {
        padding: 50px 20px;
    }

    .why-choose-header {
        gap: 15px;
    }

    .why-choose-title {
        font-size: 9px;
        letter-spacing: 2px;
        white-space: normal;
    }

    .why-choose-tagline {
        font-size: 26px;
    }

    .why-choose-video-wrapper {
        height: 280px;
    }
    
    .why-choose-heading {
        font-size: 14px;
    }
    
    .why-choose-paragraph {
        font-size: 14px;
    }
    
    .why-choose-header-divider {
        max-width: 150px;
    }
}

/* ============================================
           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: 24px;
            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: 70%;
            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;
        }

        /* Dark gradient overlay for text readability */
        .atelier-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.6) 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;
        }

        .atelier-slide-subtitle {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: 300;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        /* ============================================
           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(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        /* ============================================
           KNOW MORE BUTTON
           ============================================ */
        .atelier-know-more {
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            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;
        }

        .atelier-know-more:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1200px) {
            .atelier-heading {
                font-size: 44px;
            }

            .atelier-slide {
                height: 400px;
            }

            .atelier-slide-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .atelier-courses-section {
                padding: 60px 20px 80px;
            }

            .atelier-container {
                padding: 0 20px;
            }

            .atelier-header {
                margin-bottom: 40px;
            }

            .atelier-label {
                font-size: 10px;
                margin-bottom: 16px;
            }

            .atelier-heading {
                font-size: 32px;
                margin-bottom: 20px;
            }

            .atelier-description {
                font-size: 14px;
            }

            .atelier-slide {
                width: 85%;
                height: 350px;
            }

            .atelier-slider-track {
                gap: 16px;
            }

            .atelier-slide-content {
                padding: 30px;
            }

            .atelier-slide-title {
                font-size: 28px;
            }

            .atelier-slide-subtitle {
                font-size: 14px;
                margin-bottom: 16px;
            }

            .atelier-meta-badge {
                font-size: 11px;
                padding: 6px 14px;
            }

            .atelier-know-more {
                width: 80px;
                height: 80px;
                bottom: 30px;
                right: 30px;
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .atelier-heading {
                font-size: 26px;
            }

            .atelier-slide {
                width: 90%;
                height: 320px;
            }

            .atelier-slide-content {
                padding: 24px;
            }

            .atelier-slide-title {
                font-size: 24px;
            }

            .atelier-know-more {
                width: 70px;
                height: 70px;
                bottom: 24px;
                right: 24px;
                font-size: 9px;
            }
        }


        /* testimonial */


        .testimonial-section {
            position: relative;
            padding: 80px 0;
            background-image: url('../images/testimonial-bg.png');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        /* Overlay for the background image effect */
        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            color: white;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .section-header p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonial-slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .testimonial-slider-wrapper {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            flex: 0 0 calc((100% - 60px) / 2.5);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 40px 30px;
            color: white;
            position: relative;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-quote-icon {
            font-size: 60px;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1;
            margin-bottom: 20px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.95);
        }

        .testimonial-author {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            color: white;
            text-transform: uppercase;
        }

        .testimonial-slider-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-slider-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-slider-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
        }

        .testimonial-slider-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .testimonial-slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-slider-dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .testimonial-section .testimonial-card {
                flex: 0 0 calc((100% - 30px) / 1.5);
            }
        }

        @media (max-width: 640px) {
            .testimonial-section .testimonial-card {
                flex: 0 0 100%;
            }
            
            .testimonial-section .section-header h2 {
                font-size: 36px;
            }
            
            .testimonial-section {
                padding: 60px 0;
            }
        }


/* Reset for this section only */
.gallery-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gallery-section {
    all: initial;
    display: block;
    width: 100%;
    padding: 60px 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(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid layout matching the image structure */
.gallery-section .gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.gallery-section .gallery-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.gallery-section .gallery-item:nth-child(3) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.gallery-section .gallery-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.gallery-section .gallery-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-section .gallery-item:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.gallery-section .gallery-item:nth-child(7) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Responsive design */
@media (max-width: 1200px) {
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 300px);
    }

    .gallery-section .gallery-item:nth-child(3) {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .gallery-section .gallery-item:nth-child(7) {
        grid-column: 1 / 4;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
    }

    .gallery-section .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 250px;
    }

    .gallery-section .gallery-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .gallery-section .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section .gallery-item {
        height: 300px;
    }
}

/* Modal overlay for fullscreen view */
.gallery-section .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gallery-section .modal.active {
    display: flex;
}

.gallery-section .modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.gallery-section .modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.gallery-section .modal-close:hover {
    color: #ccc;
}   

/* 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 */
.sakp-footer::before {
    content: 'SAKP';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 425px;
    font-weight: 900;
    color: rgb(243 243 243);
    letter-spacing: 0px;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.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);
}

/* Responsive */
@media (max-width: 968px) {
    .sakp-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .sakp-footer::before {
        font-size: 180px;
    }
}

@media (max-width: 640px) {
    .sakp-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sakp-footer::before {
        font-size: 120px;
        letter-spacing: 10px;
    }

    .sakp-footer {
        padding: 40px 20px 30px;
    }
}

/* 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; */
}

@media (max-width: 768px) {
    .menu-overlay {
        right: 20px;
        width: 260px;
    }
}

@media (max-width: 480px) {
    .menu-overlay {
        right: 10px;
        top: 80px;
        width: calc(100% - 20px);
        max-width: 280px;
    }
}

/* ==============================
   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;
}
