/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #000;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.main-nav .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 1rem 0 1rem;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-with {
    text-transform: none;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-logo {
    height: 1.5rem;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.main-header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 810px;
    margin-top: 5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
    border-radius: 16px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.50) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0) 100%
    );
}

.hero-section {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    padding: 0 0 4rem 4rem;
    margin-bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeIn 1s ease-out;
    margin-bottom: 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1.3rem;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.cta-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: none;
    margin: 0;
}

.cta-btn.primary {
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    color: #000;
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Panel Styles */
.panel {
    width: 100%;
    padding: 8rem 0;
    position: relative;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
}

.panel.alt {
    background: #000;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(80, 80, 120, 0.10);
    padding: 6rem 0;
    margin: 4rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.panel-content {
    width: 100%;
    max-width: 100%;
    padding: 0 8rem;
    box-sizing: border-box;
}

.panel h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.panel h2.visible {
    opacity: 1;
    transform: translateY(0);
}

.panel.alt h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff 0%, #b13b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: left;
}

.panel.alt p {
    font-size: 1.6rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: left;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

/* Service List Styles */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    width: 100%;
}

.service {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.service h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    text-transform: uppercase;
}

.service h3 a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease;
    background: linear-gradient(90deg, #ffffff 0%, #ffcd82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.service h3 a:hover {
    transform: translateY(-2px);
}

.service p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.service-buttons {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.service-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-btn.primary {
    background: linear-gradient(90deg, #fff 0%, #b13b7a 100%);
    color: #000;
}

.service-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#contact {
    background: #000;
    padding: 8rem 0 4rem 0;
    color: #fff;
    scroll-margin-top: 2rem;
}

#contact h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

#contact p {
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

#contact p:last-of-type {
    margin-bottom: 3rem;
}

#contact form {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#contact input,
#contact textarea {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact textarea {
    min-height: 180px;
    resize: vertical;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#contact input:focus,
#contact textarea:focus {
    border-color: #7dddd5;
    box-shadow: 0 0 0 3px rgba(125, 221, 213, 0.1);
    outline: none;
}

#contact button {
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    color: #000;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contact button:hover {
    background: linear-gradient(90deg, #ff9283 0%, #fff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    color: #888;
    font-size: 0.95rem;
    background: #f3f6fd;
    margin-top: 2rem;
}

section p {
    color: #222;
}

.testimonial-slider {
    width: 100%;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-slides {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial {
    text-align: center;
    padding: 1rem;
    max-width: 800px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
}

.testimonial.active {
    opacity: 1;
    position: relative;
}

.slider-dots {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #7dddd5;
}

.video-placeholder {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    width: 320px;
    height: 180px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #000;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.session-details {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.session-benefits,
.session-process,
.session-format,
.cta-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
}

.session-benefits ul,
.session-format ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.session-benefits li,
.session-format li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.session-benefits li:before,
.session-format li:before {
    content: "•";
    color: #b13b7a;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
    background: #f3f6fd;
}

.cta-section .cta-btn {
    margin-top: 1rem;
    display: inline-block;
}

.course-details {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.course-modules,
.course-benefits,
.course-format,
.course-commitment,
.cta-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
}

.course-modules ul,
.course-benefits ul,
.course-format ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.course-modules li,
.course-benefits li,
.course-format li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-modules li:before,
.course-benefits li:before,
.course-format li:before {
    content: "•";
    color: #b13b7a;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.course-commitment {
    background: #f3f6fd;
}

/* Footer Styles */
footer.panel {
    padding: 4rem 0;
    background: #000;
    color: #fff;
    text-align: center;
    margin: 0;
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7dddd5;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #7dddd5;
    transform: translateY(-3px);
}

footer p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}

.about {
    width: 100%;
    background: #000;
    padding: 4rem 0 4rem 0;
    margin: 0;
}

.about .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 0 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #ffffff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: left;
}

.about-text p {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 0.9;
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-credentials-card {
    background: linear-gradient(135deg, #7b5fd3 0%, #5e7ce2 100%);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(80, 80, 120, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    text-align: center;
    color: #fff;
}

.credentials-content {
    width: 100%;
    padding: 3rem 2rem;
}

.credentials-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #fff;
}

.credentials-content p {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.about-image {
    background-image: url('preetasession2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    border-radius: 16px;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.0) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

@media (max-width: 900px) {
    .about-panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-credentials-card {
        min-height: 220px;
    }
    .hero-section {
        padding: 0 0 2rem 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    .main-header {
        border-radius: 0;
        max-width: 100%;
    }
    .hero-overlay {
        border-radius: 0;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-header {
        max-width: calc(100% - 4rem);
        margin-left: 2rem;
        margin-right: 2rem;
        height: 55vh;
        min-height: 350px;
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 45vh;
        min-height: 250px;
        max-height: 400px;
        margin: 1rem;
        margin-top: 4rem;
        border-radius: 16px;
        max-width: calc(100% - 2rem);
    }
    
    .hero-img,
    .hero-overlay {
        border-radius: 16px;
    }

    .main-nav {
        padding: 0.8rem 0;
    }

    .main-nav .nav-content {
        padding: 0 1.5rem;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
    }

    .hero-content {
        top: 65%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .video-placeholder {
        right: 2rem;
        bottom: 2rem;
        width: 280px;
        height: 157.5px;
    }

    .panel-content {
        padding: 0 2rem;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service {
        padding: 2rem;
    }
}

@media (max-height: 600px) {
    .main-header {
        height: auto;
        min-height: 200px;
        max-height: none;
    }
}

@media (min-width: 2000px) {
    .main-header {
        max-height: 800px;
    }
}

.panel:nth-of-type(2) {
    background: #000;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(80, 80, 120, 0.10);
    padding: 6rem 0 6rem 0;
    margin: 4rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.panel:nth-of-type(2) h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff 0%, #b13b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
}

.panel:nth-of-type(2) p {
    font-size: 1.6rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .panel:nth-of-type(2) {
        padding: 3rem 0;
        border-radius: 20px;
    }
    .panel:nth-of-type(2) h2 {
        font-size: 2.1rem;
    }
    .panel:nth-of-type(2) p {
        font-size: 1.1rem;
    }
}

#testimonials.panel {
    background: #000;
    padding: 8rem 0 4rem 0;
    margin: 1rem auto;
    border-radius: 32px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 2rem;
}

#testimonials h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: none;
    background: linear-gradient(90deg, #ffffff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-slider {
    width: 100%;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial {
    text-align: center;
    padding: 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.testimonial blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
    text-align: center;
}

.testimonial-author .name {
    font-weight: 600;
    color: #7dddd5;
    margin: 0;
    font-size: 1.3rem;
}

.testimonial-author .role {
    color: #fff;
    margin: 0.5rem 0 0 0;
    font-size: 1.1rem;
    opacity: 0.8;
}

.slider-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #7dddd5;
}

.panel:nth-of-type(3) {
    background: #000;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(80, 80, 120, 0.10);
    padding: 6rem 0 6rem 0;
    margin: 4rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.panel:nth-of-type(3) h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff 0%, #b13b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
}

.panel:nth-of-type(3) p {
    font-size: 1.6rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .panel:nth-of-type(3) {
        padding: 3rem 0;
        border-radius: 20px;
    }
    .panel:nth-of-type(3) h2 {
        font-size: 2.1rem;
    }
    .panel:nth-of-type(3) p {
        font-size: 1.1rem;
    }
}

#services.panel {
    background: #000;
    padding: 1rem 0 6rem 0;
    margin: 0;
    border-radius: 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

#services.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('riverview.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 0;
}

#services .panel-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#services h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff 0%, #b13b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.services-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.05;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    width: 100%;
}

.service {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.service h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    text-transform: uppercase;
}

.service h3 a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease;
    background: linear-gradient(90deg, #ffffff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.service h3 a:hover {
    transform: translateY(-2px);
}

.service p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.service-buttons {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.service-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-btn.primary {
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    color: #000;
}

.service-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.session-details.panel {
    background: #000;
    padding: 6rem 0;
    margin: 4rem auto;
    border-radius: 32px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.session-details h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.session-benefits,
.session-process,
.session-format,
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.session-benefits ul,
.session-format ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.session-benefits li,
.session-format li {
    color: #fff;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.6;
}

.session-benefits li:before,
.session-format li:before {
    content: "•";
    color: #7dddd5;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.session-process p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1rem 0;
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .session-details.panel {
        padding: 3rem 0;
        margin: 2rem auto;
        border-radius: 20px;
    }

    .session-benefits,
    .session-process,
    .session-format,
    .cta-section {
        padding: 1.5rem;
    }

    .session-details h3 {
        font-size: 1.8rem;
    }

    .session-benefits li,
    .session-format li {
        font-size: 1.1rem;
    }

    .cta-section h3 {
        font-size: 2rem;
    }
}

.course-details.panel {
    background: #000;
    padding: 6rem 0;
    margin: 4rem auto;
    border-radius: 32px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.course-details h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.course-modules,
.course-benefits,
.course-format,
.course-commitment,
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.course-modules ul,
.course-benefits ul,
.course-format ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.course-modules li,
.course-benefits li,
.course-format li {
    color: #fff;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.6;
}

.course-modules li:before,
.course-benefits li:before,
.course-format li:before {
    content: "•";
    color: #7dddd5;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.course-commitment p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1rem 0;
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .course-details.panel {
        padding: 3rem 0;
        margin: 2rem auto;
        border-radius: 20px;
    }

    .course-modules,
    .course-benefits,
    .course-format,
    .course-commitment,
    .cta-section {
        padding: 1.5rem;
    }

    .course-details h3 {
        font-size: 1.8rem;
    }

    .course-modules li,
    .course-benefits li,
    .course-format li {
        font-size: 1.1rem;
    }

    .cta-section h3 {
        font-size: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 3rem;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}

#music.panel {
    background: #000;
    padding: 8rem 0 4rem 0;
    margin: 1rem auto;
    border-radius: 32px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 2rem;
}

#music h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.music-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.music-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.music-text p {
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.music-text p:first-child {
    font-size: 1.6rem;
    font-weight: 400;
}

.music-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.music-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #fff 0%, #ff9283 100%);
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.music-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.music-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    #music h2 {
        font-size: 2.5rem;
    }
    
    .music-text p {
        font-size: 1.2rem;
    }
    
    .music-text p:first-child {
        font-size: 1.3rem;
    }
    
    .music-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .music-btn {
        width: 100%;
        justify-content: center;
    }
}

.music-headline {
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    transform: none;
    background: linear-gradient(90deg, #ffffff 0%, #ff9283 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cd-covers {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 1.5rem;
    width: 100%;
    padding: 0 1rem;
}

.cd-cover {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.cd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cd-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cd-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9283 0%, #b13b7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .cd-covers {
        gap: 1rem;
        overflow-x: auto;
        padding: 0.5rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .cd-covers::-webkit-scrollbar {
        display: none;
    }
    
    .cd-cover {
        width: 140px;
        height: 140px;
    }
}