@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #ffffff;
    --goldish-orange: #f28d1f;
    --dark-bg: #1a1a1a;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --black: #1a1a1a;
    --glass-bg: rgba(242, 141, 31, 0.15);
    --glass-border: rgba(242, 141, 31, 0.3);
    --gradient-1: linear-gradient(135deg, #f28d1f 0%, #d47a1b 100%);
    --gradient-2: linear-gradient(135deg, #f28d1f 0%, #b8661a 100%);
    --gradient-3: linear-gradient(135deg, #d47a1b 0%, #f28d1f 100%);
    --gradient-4: linear-gradient(135deg, #b8661a 0%, #d47a1b 100%);
    --gradient-5: linear-gradient(135deg, #f28d1f 0%, #9e5318 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
}

/* Hero Section with Image Slider */
.hero-section1 {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5%;
    color: var(--white);
    overflow: hidden;
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-bg-image.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Creative geometric overlay elements */
.geometric-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    opacity: 0.15;
    border: 2px solid var(--goldish-orange);
    box-shadow: 0 0 20px rgba(242, 141, 31, 0.3);
}

.shape-1 {
    top: 10%;
    right: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 40%;
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite reverse, rotateShape 12s linear infinite;
}

.shape-3 {
    top: 30%;
    right: 10%;
    width: 100px;
    height: 200px;
    border-radius: 50px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

/* Navigation Bar - More Creative Style */
.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 141, 31, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.hero-nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Creative Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(34, 34, 34, 0.8);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(242, 141, 31, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(242, 141, 31, 0.1), rgba(26, 20, 6, 0.1));
    border-radius: 30px;
    z-index: -1;
}

.nav-menu a {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-menu a:hover {
    color: var(--goldish-orange);
    background: rgba(242, 141, 31, 0.1);
    transform: translateY(-2px);
}

/* Dropdown Styles - Keep your existing functionality */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.8rem;
    margin-left: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: rgba(242, 141, 31, 0.2);
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    border: 1px solid rgba(242, 141, 31, 0.3);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
}

.dropdown-menu a {
    color: white;
    padding: 1rem 1.5rem;
    display: block;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(45deg, rgba(242, 141, 31, 0.2), rgba(26, 20, 6, 0.2));
    color: var(--goldish-orange);
    transform: translateX(5px);
}

.dropdown:hover .dropdown-menu {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Content - More Creative Layout */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-top: 100px;
}

.hero-content .welcome-text {
    font-size: 1.2rem;
    color: var(--goldish-orange);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    text-align: left;
}

.hero-content .hero-logo-main {
    max-width: 100%;
    width: 500px;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: linear-gradient(135deg, var(--goldish-orange) 0%, #e67e22 100%);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(242, 141, 31, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 141, 31, 0.5);
}

.hero-btn:hover::before {
    left: 100%;
}

/* Hero Background Controls */
.hero-bg-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.hero-bg-btn {
    background: rgba(242, 141, 31, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-bg-btn:hover {
    opacity: 1;
    background: rgba(242, 141, 31, 1);
    transform: scale(1.1);
}

/* Hero Background Indicators */
.hero-bg-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.hero-bg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-bg-dot.active,
.hero-bg-dot:hover {
    background: var(--goldish-orange);
    transform: scale(1.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--goldish-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--goldish-orange) 0%, #e67e22 100%);
}

.hero-btn.secondary {
    background: transparent;
    border: 2px solid var(--goldish-orange);
    color: var(--goldish-orange);
    box-shadow: none;
}

.hero-btn.secondary:hover {
    background: var(--goldish-orange);
    color: white;
    box-shadow: 0 10px 30px rgba(242, 141, 31, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu - Keep your existing styles but enhance */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(242, 141, 31, 0.1);
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--goldish-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section1 {
        height: 100vh;
        min-height: 720px;
        padding-bottom: 3rem;
        padding-top: 1rem;
    }

    .hero-nav {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.visible {
        transform: translateX(0);
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(34, 34, 34, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 15px;
        padding: 1.5rem;
        gap: 1rem;
        width: 250px;
        border: 1px solid rgba(242, 141, 31, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-logo {
        width: 160px;
    }

    .hero-content {
        padding: 0 2rem 3rem 2rem;
        margin-top: 100px;
        max-width: 100%;
        position: relative;
        z-index: 10;

    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;

    }

    .hero-content .welcome-text {
        margin-bottom: 1rem;
        font-size: 1rem;
         padding-top: 200px;
    }

    .hero-content .hero-logo-main {
        width: 350px;
        max-width: 90%;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 1rem 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-bg-controls {
        padding: 0 1rem;
    }
    
    .hero-bg-btn {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }

    .geometric-elements {
        width: 80%;
    }

    .dropdown-menu {
        min-width: 180px;
        left: -50px;
    }
}

@media (max-width: 480px) {
    .hero-section1 {
        height: 100vh;
        min-height: 700px;
        padding-bottom: 4rem;
        padding-top: 1rem;
    }

    .hero-content {
        padding: 0 1rem 4rem 1rem;
        margin-top: 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-content .welcome-text {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
    }

    .hero-content .hero-logo-main {
        width: 280px;
        max-width: 95%;
    }

    .hero-content .subtitle {
        margin-bottom: 3rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-cta-group {
        margin-top: 2rem;
        margin-bottom: 3rem;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-bg-controls {
        display: none; /* Hide controls on very small screens */
    }
    
    .hero-bg-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .hero-bg-dot {
        width: 8px;
        height: 8px;
    }
}


/* Slider Section */
.slider-section {
    position: relative;
    height: 80vh;
    width: 100%;
    background: linear-gradient(45deg, var(--dark-bg), #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 70vh;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.slider {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 20%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    z-index: 1;
}

.slide:nth-child(1)::before {
    background-image: url('/assets/images/filmandtv.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2)::before {
    background-image: url('/assets/images/newsletter/dimpho.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3)::before {
    background-image: url('/assets/images/adult6.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(4)::before {
    background-image: url('/assets/images/academy5.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(5)::before {
    background-image: url('/assets/images/graphic_design.png');
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem;
    backdrop-filter: blur(20px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin: 2rem;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.slide h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-primary {
    background: var(--goldish-orange);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(242, 141, 31, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(242, 141, 31, 0.6);
    background: #d47a1b;
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: var(--goldish-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(242, 141, 31, 0.4);
    border-color: var(--goldish-orange);
}

/* Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.nav-btn:hover {
    background: var(--goldish-orange);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--goldish-orange);
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--goldish-orange);
    width: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-section {
        height: 65vh;
        padding: 1.5rem 0;
        margin-top: 1rem;
    }

    .slider-container {
        height: 55vh;
        border-radius: 16px;
        margin: 1rem;
    }

    .slide-content {
        margin: 0.5rem;
        padding: 1.5rem;
        max-width: calc(100% - 1rem);
    }

    .slide h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .slide p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .slider-navigation {
        padding: 0 1rem;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .slider-section {
        height: 65vh;
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .slider-container {
        height: 55vh;
        margin: 0.5rem;
    }

    .slide-content {
        margin: 0.3rem;
        padding: 1rem;
        max-width: calc(100% - 0.6rem);
    }

    .slide h2 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .slide p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        max-width: 250px;
    }

    .slide-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

/* Background Animation */
.slide::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Services Section */
.services-section {
    background: var(--dark-bg);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0%, 100% 0%, 90% 100%, 10% 100%);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(242, 141, 31, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 141, 31, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--goldish-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 430px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(242, 141, 31, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(242, 141, 31, 0.3);
}

/* Card Image */
.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
    opacity: 0.3;
    object-fit: cover;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card:hover .card-image {
    opacity: 0.1;
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-icon {
    font-size: 3rem;
    color: var(--goldish-orange);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--white);
}

/* Button container */
.arrow-btn {
    width: 50px;
    height: 50px;
    background: rgba(242, 141, 31, 0.2);
    border: 2px solid var(--goldish-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Icon inside */
.arrow-btn i {
    display: inline-block;
    /* makes transform behave consistently */
    font-size: 1.2rem;
    color: var(--goldish-orange);
    transform: rotate(45deg);
    /* 🔼 rotate arrow */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover state */
.service-card:hover .arrow-btn {
    background: var(--goldish-orange);
    box-shadow: 0 5px 20px rgba(242, 141, 31, 0.4);
    transform: scale(1.1);
}

.service-card:hover .arrow-btn i {
    color: var(--white);
    transform: rotate(45deg) translateY(-2px);
    /* tilt + slight lift */
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Service Details - Contains both description and list */
.service-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.service-card:hover .service-details {
    opacity: 1;
    transform: translateY(0);
}

.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.service-list li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--goldish-orange);
    font-size: 0.8rem;
}

/* Individual Card Backgrounds */
.card-filmtv .card-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('/assets/images/filandtv.jpeg');
}

.card-music .card-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('/assets/images/newsletter/dimpho.jpg');
}

.card-photography .card-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('/assets/images/family4.jpg');
}

.card-academy .card-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('/assets/images/academy10.png');
}

.card-design .card-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('/assets/images/graphic-design.png');
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 1rem;
        clip-path: none;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        height: 400px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
    }

    .arrow-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 350px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .arrow-btn {
        margin-top: 1rem;
        align-self: flex-end;
    }

    .service-details {
        opacity: 1;
        transform: translateY(0);
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

/* value proposition */
.value-proposition {
    background-color: var(--dark-bg);
    padding: 4rem 1rem 6rem 1rem;
    text-align: center;
    clip-path: polygon(0 0%, 100% 0%, 100% 92%, 66% 100%, 33% 92%, 0 100%);
}


.value-proposition h2 {
    font-size: 2.5rem;
    color: var(--goldish-orange);
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.proposition-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.proposition-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: calc(25% - 2rem);
    /* 4 cards per row */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proposition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.proposition-card .icon {
    margin-bottom: 1rem;
}

.proposition-card .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.proposition-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f28d1f;
}

.proposition-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .proposition-card {
        width: calc(50% - 2rem);
        /* 2 cards per row on tablets */
    }
    
    .value-proposition {
        clip-path: polygon(0 0%, 100% 0%, 100% 94%, 75% 100%, 50% 94%, 25% 100%, 0 94%);
    }
}

@media (max-width: 480px) {
    .proposition-card {
        width: 100%;
        /* Full-width on smaller screens */
    }
    
    .value-proposition {
        clip-path: polygon(0 0%, 100% 0%, 100% 95%, 50% 100%, 0 95%);
        padding: 3rem 1rem 4rem 1rem;
    }
}


/* End value proposition*/






/* Client Testimonials Section */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: var(--white);
    color: var(--black);
    text-align: center;
    clip-path: polygon(0 12%, 25% 0%, 50% 8%, 75% 0%, 100% 12%, 100% 100%, 0 100%);
    position: relative;
}

.testimonials.sharp-v {
    padding: 5rem 2rem 2rem 2rem;
    background: #fff;
    clip-path: polygon(0 20%, 20% 0%, 40% 15%, 60% 0%, 80% 15%, 100% 0%, 100% 100%, 0 100%);
    position: relative;
}

.testimonials.gentle-v {
    padding: 3rem 2rem 2rem 2rem;
    background: #fff;
    clip-path: polygon(0 8%, 33% 0%, 66% 8%, 100% 0%, 100% 100%, 0 100%);
    position: relative;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--goldish-orange);
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.testimonial {
    background-color: var(--black);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    width: 320px;
    height: 420px;
    /* Set a fixed height */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensures equal spacing between elements */
    overflow: hidden;
    /* Prevents overflow */
    position: relative;
}

.testimonial-content h4,
p {
    color: var(--white);
}



.profile {
    margin-bottom: 1.5rem;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--goldish-orange);
}

.testimonial-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial:hover {
    transform: scale(1.1);
    /* Slight zoom on hover */
}

.testimonial-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.testimonial-content p:last-child {
    font-size: 1rem;
    color: var(--goldish-orange);
}

/* Star Rating Styles */
.star-rating {
    margin-top: 10px;
    margin-bottom: 10px;
}

.star {
    color: #f28d1f;
    /* Gold color for stars */
    font-size: 1.5rem;
}





/* Footer Styling */
.footer {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    padding: 3rem 1rem;
    z-index: 1;
    padding: 3rem 1rem 6rem;
    overflow: hidden;
    
    border-radius: 4px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo,
.footer-contact,
.footer-links,
.footer-social {
    flex: 1;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--goldish-orange);
}

.footer-logo p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

#copyright {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--goldish-orange);
    text-align: left;
    margin-top: 1rem;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    font-weight: bold;
    font-size: 1.5rem;
    /* Consistent font size for all headings */
    color: #f28d1f;
    margin-bottom: 1rem;
}

.footer-contact p,
.footer-links ul,
.footer-social ul {
    margin: 0;
    padding: 0;
}

.footer-contact a {
    color: #f28d1f;
    text-decoration: none;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    text-decoration: none;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-social ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    color: var(--goldish-orange);
}

.footer-social ul li a {
    font-size: 1.5rem;
    margin-right: 1rem;
    padding-top:2rem;
}

/* Align headings and content on the same vertical line */
.footer-content>div {
    display: flex;
    flex-direction: column;
}

.footer-skew {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    text-align: center;
    border-top: 2px solid rgba(242, 141, 31, 0.3);
    background-color: var(--goldish-orange);
    z-index: 0;

    /* Double mountain peak - content-safe */
    clip-path: polygon(0 60%, 50% 20%, 100% 50%, 100% 100%, 0% 100%);
}




/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding-bottom: 5rem; /* Extra padding to ensure no cutoff */
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-contact,
    .footer-links,
    .footer-social {
        align-items: center;
        text-align: center;
    }
    
    /* Adjust footer skew for mobile - gentler peaks */
    .footer-skew {
        height: 80px;
        clip-path: polygon(0 70%, 50% 40%, 100% 60%, 100% 100%, 0% 100%);
    }
}

.testimonials-section h2,
.value-proposition h2 {
    font-size: 1.4rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 16px;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    width: 50px;
    height: 50px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}




/* Photography Section - Bolo Studios */
.photography-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.photography-section h2 {
    font-size: 2.5rem;
    color: #f28d1f;
    margin-bottom: 1rem;
    z-index: 10;
}

.photography-section .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #333;
    z-index: 10;
}

.stacked-cards {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.stacked-cards .card {
    position: absolute;
    width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    background: white;
}

.stacked-cards .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stacked-cards .card:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Card Shuffling Animation */
.stacked-cards .card:nth-child(1) {
    z-index: 13;
    animation: shuffle1 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(2) {
    z-index: 12;
    animation: shuffle2 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(3) {
    z-index: 11;
    animation: shuffle3 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(4) {
    z-index: 10;
    animation: shuffle4 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(5) {
    z-index: 9;
    animation: shuffle5 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(6) {
    z-index: 8;
    animation: shuffle6 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(7) {
    z-index: 7;
    animation: shuffle7 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(8) {
    z-index: 6;
    animation: shuffle8 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(9) {
    z-index: 5;
    animation: shuffle9 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(10) {
    z-index: 4;
    animation: shuffle10 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(11) {
    z-index: 3;
    animation: shuffle11 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(12) {
    z-index: 2;
    animation: shuffle12 12s infinite ease-in-out;
}

.stacked-cards .card:nth-child(13) {
    z-index: 1;
    animation: shuffle13 12s infinite ease-in-out;
}

/* Shuffling Keyframes */
@keyframes shuffle1 {
    0%, 8% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
    16%, 24% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
    32%, 40% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
    48%, 56% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
    64%, 72% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
    80%, 88% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
    96%, 100% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
}

@keyframes shuffle2 {
    0%, 8% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
    16%, 24% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
    32%, 40% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
    48%, 56% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
    64%, 72% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
    80%, 88% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
    96%, 100% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
}

@keyframes shuffle3 {
    0%, 8% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
    16%, 24% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
    32%, 40% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
    48%, 56% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
    64%, 72% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
    80%, 88% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
    96%, 100% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
}

@keyframes shuffle4 {
    0%, 8% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
    16%, 24% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
    32%, 40% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
    48%, 56% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
    64%, 72% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
    80%, 88% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
    96%, 100% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
}

@keyframes shuffle5 {
    0%, 8% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
    16%, 24% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
    32%, 40% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
    48%, 56% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
    64%, 72% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
    80%, 88% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
    96%, 100% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
}

@keyframes shuffle6 {
    0%, 8% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
    16%, 24% { transform: translateX(0) translateY(0) rotate(0deg); z-index: 13; }
    32%, 40% { transform: translateX(-20px) translateY(-5px) rotate(-3deg); z-index: 12; }
    48%, 56% { transform: translateX(-15px) translateY(10px) rotate(2deg); z-index: 11; }
    64%, 72% { transform: translateX(25px) translateY(-8px) rotate(-1deg); z-index: 10; }
    80%, 88% { transform: translateX(10px) translateY(15px) rotate(4deg); z-index: 9; }
    96%, 100% { transform: translateX(-10px) translateY(-10px) rotate(-2deg); z-index: 8; }
}

@keyframes shuffle7 {
    0%, 8% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
    16%, 24% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
    32%, 40% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
    48%, 56% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
    64%, 72% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
    80%, 88% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
    96%, 100% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
}

@keyframes shuffle8 {
    0%, 8% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
    16%, 24% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
    32%, 40% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
    48%, 56% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
    64%, 72% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
    80%, 88% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
    96%, 100% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
}

@keyframes shuffle9 {
    0%, 8% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
    16%, 24% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
    32%, 40% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
    48%, 56% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
    64%, 72% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
    80%, 88% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
    96%, 100% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
}

@keyframes shuffle10 {
    0%, 8% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
    16%, 24% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
    32%, 40% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
    48%, 56% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
    64%, 72% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
    80%, 88% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
    96%, 100% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
}

@keyframes shuffle11 {
    0%, 8% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
    16%, 24% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
    32%, 40% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
    48%, 56% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
    64%, 72% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
    80%, 88% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
    96%, 100% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
}

@keyframes shuffle12 {
    0%, 8% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
    16%, 24% { transform: translateX(5px) translateY(5px) rotate(1deg); z-index: 7; }
    32%, 40% { transform: translateX(-8px) translateY(-3px) rotate(-1deg); z-index: 6; }
    48%, 56% { transform: translateX(12px) translateY(8px) rotate(2deg); z-index: 5; }
    64%, 72% { transform: translateX(-5px) translateY(-8px) rotate(-2deg); z-index: 4; }
    80%, 88% { transform: translateX(8px) translateY(3px) rotate(1deg); z-index: 3; }
    96%, 100% { transform: translateX(-12px) translateY(-5px) rotate(-1deg); z-index: 2; }
}

@keyframes shuffle13 {
    0%, 8% { transform: translateX(3px) translateY(2px) rotate(0.5deg); z-index: 1; }
    16%, 24% { transform: translateX(-3px) translateY(-2px) rotate(-0.5deg); z-index: 1; }
    32%, 40% { transform: translateX(2px) translateY(3px) rotate(0.5deg); z-index: 1; }
    48%, 56% { transform: translateX(-2px) translateY(-3px) rotate(-0.5deg); z-index: 1; }
    64%, 72% { transform: translateX(3px) translateY(1px) rotate(0.5deg); z-index: 1; }
    80%, 88% { transform: translateX(-3px) translateY(-1px) rotate(-0.5deg); z-index: 1; }
    96%, 100% { transform: translateX(3px) translateY(2px) rotate(0.5deg); z-index: 1; }
}

/* Book Now Button */
.book-now {
    margin-top: 2rem;
}

.book-now .btn-book {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #f28d1f;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.book-now .btn-book:hover {
    background: #d97718;
}

/* Responsive Design for Photography Section */
@media (max-width: 768px) {
    .photography-section h2 {
        font-size: 2rem;
    }

    .photography-section .description {
        font-size: 1rem;
    }

    .stacked-cards {
        height: 280px;
    }

    .stacked-cards .card {
        width: 160px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .photography-section h2 {
        font-size: 1.8rem;
    }

    .stacked-cards {
        height: 250px;
    }

    .stacked-cards .card {
        width: 140px;
        height: 210px;
    }
}