
       
        


* {margin: 0;padding: 0;box-sizing: border-box;
}

body {font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;min-height: 200vh;background-color: #1a1a1a;
}


.hedaheader { background-color: rgba(28, 28, 28, 0.98);padding: 15px;position: fixed;width: calc(100% - 30px);top: 12px;left:15px;right: 20px;z-index: 1000;border-radius: 25px;backdrop-filter: blur(10px); transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); font-family: 'Ubuntu';

}


.hedaheader.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: rgba(25, 25, 25, 0.424);
}

.hedaheader.scrolled-down {
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
    width:100%;
}

.hedaheader.scrolled-up {
    top: 10px;
    left: 10px;
    right: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.224);
}

.hedanav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hedabrand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hedalogo-text {
    font-size: 1.5rem;
    font-weight: 650;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.hedadonate-button {
    background-color: #5a5a5a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
}

.hedadonate-button:hover {
    transform: translateY(-2px);
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
    color:rgb(255, 255, 255);
}

.hedanav-list {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.hedanav-list li {
    position: relative;
}

.hedanav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
}

.hedanav-list a:hover {
    color: #dbcd34;
}

.hedahas-submenu {
    position: relative;
}

.hedahas-submenu > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hedahas-submenu > a::after {
    content: '▾';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hedahas-submenu:hover > a::after {
    transform: rotate(180deg);
}

.hedasubmenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2d2d2d;
    min-width: 250px;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hedahas-submenu:hover .hedasubmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hedasubmenu li {
    margin: 0;
    padding: 0;
}

.hedasubmenu a {
    padding: 12px 16px;
    display: block;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.hedasubmenu a:hover {
    background-color: #3a3a3a;
    color: #ebe65a;
    padding-left: 20px;
}

.hedahamburger {
    margin-left: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    gap: 6px;
}

.hedahamburger span {
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

@media (max-width: 1200px) {
    .hedanav-list {
        gap: 1rem;
    }
    .hedanav-list a {
        padding: 8px 12px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .hedanav-list a {
        padding: 8px 8px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .hedanav {
        justify-content: space-between;
    }
    .hedabrand {
        margin-right: 0;
    }
    .hedahamburger {
        display: flex;
    }

    .hedahamburger.hedaactive span:nth-child(1) {
        transform: rotate(45deg) translate(1px, -3px);
    }
    .hedahamburger.hedaactive span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hedahamburger.hedaactive span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 3px);
    }

    .hedanav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        border-radius: 15px;
        overflow-y: scroll;
    }

    .hedanav-list.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list.hedaactive {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .hedanav-list.hedaactive li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .hedanav-list a {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .hedanav-list a:hover {
        background-color: #3a3a3a;
    }

    .hedasubmenu {
        position: static;
        background-color: #242424;
        box-shadow: none;
        padding-left: 20px;
        padding: 0.5rem;
        margin: 0.5rem 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hedahas-submenu.hedaactive .hedasubmenu {
        display: block;
        animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hedahas-submenu > a::after {
        float: right;
        transform: rotate(-90deg);
    }

    .hedahas-submenu.hedaactive > a::after {
        transform: rotate(0);
    }

    .hedadonate-button {
        align-items: center;
        width: 100%;
        height: 50px;
        margin-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-section {
        flex: 1 1 300px;
        margin: 0.5rem;
        animation: slideIn var(--animation-timing) ease-out forwards;
        opacity: 0;
    }

    @keyframes slideIn {
        from {
            transform: translateY(30px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .footer-section:nth-child(1) { animation-delay: 0.1s; }
    .footer-section:nth-child(2) { animation-delay: 0.2s; }
    .footer-section:nth-child(3) { animation-delay: 0.3s; }
    .footer-section:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.footer-content:hover .footer-section:not(:hover) {
    filter: brightness(0.95);
    transform: scale(0.98);
}

.footer-section {
    scrollbar-width: thin;
    scrollbar-color: var(--hover-color) transparent;
}

.footer-section::-webkit-scrollbar {
    width: 6px;
}

.footer-section::-webkit-scrollbar-track {
    background: transparent;
}

.footer-section::-webkit-scrollbar-thumb {
    background-color: var(--hover-color);
    border-radius: 3px;
}






/* Scoped custom properties */
.ddtb-section {
    --ddtb-primary: #2A3FFB;
    --ddtb-secondary: #FF3366;
    --ddtb-accent: #FFD700;
    --ddtb-dark: #1A1A2E;
    --ddtb-light: #F8F9FA;
    
    /* Reset styles for this component only */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    /* Component styles */
    background: var(--ddtb-dark);
    color: var(--ddtb-light);
    overflow-x: hidden;
}

/* Apply scoped reset to all children */
.ddtb-section * {
    /* margin: 0;
    padding: 0;
    box-sizing: border-box; */
    font-family: 'Arial', sans-serif;
}

.ddtb-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ddtb-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.ddtb-loader-content {
    width: 100px;
    height: 100px;
    border: 5px solid var(--ddtb-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: ddtb-spin 1s linear infinite;
}

@keyframes ddtb-spin {
    to { transform: rotate(360deg); }
}

.ddtb-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.ddtb-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ddtb-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.ddtb-hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--ddtb-primary), var(--ddtb-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.ddtb-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
}

.ddtb-cta-button {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--ddtb-primary);
    color: var(--ddtb-light);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.ddtb-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ddtb-primary);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.ddtb-cta-button:hover::before {
    transform: translateX(0);
}

.ddtb-book-preview {
    min-height: 100vh;
    padding: 5rem 2rem;
    position: relative;
    background: var(--ddtb-light);
    color: var(--ddtb-dark);
}

.ddtb-book-container {
    position: relative;
    width: 400px;
    height: 600px;
    margin: 0 auto;
    perspective: 2000px;
}

.why-this-book-main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
.why-this-book {
    padding: 5rem 2rem;
    background: white;
    color: #1A1A2E;
}

.why-this-book-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-this-book-info-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.why-this-book-info-card:hover {
    transform: translateY(-10px);
}


.bookzoom-outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f5f5e9;
    padding: 20px;
}



.bookzoom-book-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
    cursor: pointer;
}

.bookzoom-book-page, .bookzoom-bookrack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 5s ease-in-out, 
                filter 1s ease-in-out, 
                opacity 1s ease-in-out;
}


.bookzoom-book-page img, .bookzoom-bookrack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bookzoom-zoomed {
    transform: scale(2);
    z-index: 2;
}

.bookzoom-blur {
    filter: blur(1px);
}

.bookzoom-hidden {
    opacity: 0;
    pointer-events: none;
}

.bookzoom-visible {
    opacity: 1;
    pointer-events: auto;
}



/* E-STORY SECTION */
.e-story-pillar-container {
--pale-yak: #EFE6DD;
--text-primary: #2D3436;
--accent: #2a402f;
--transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
isolation: isolate;
overflow: hidden;
}

.e-story-pillar-background {
position: absolute;
inset: 0;
z-index: -1;
background: linear-gradient(135deg, var(--pale-yak), #FFFFFF);
overflow: hidden;
}

.e-story-pillar-particle {
position: absolute;
border-radius: 50%;
filter: blur(8px);
animation: float-around var(--duration) ease-in-out infinite;
opacity: 0.6;
background: linear-gradient(
    45deg,
    #004D40,  /* Dark Teal */
    #006064,  /* Dark Cyan */
    #01579B   /* Dark Blue */
);
}


@keyframes float-around {
0%, 100% {
    transform: translate(0, 0) rotate(0deg);
}
25% {
    transform: translate(var(--travel-x), var(--travel-y)) rotate(90deg);
}
50% {
    transform: translate(var(--travel-x-alt), var(--travel-y-alt)) rotate(180deg);
}
75% {
    transform: translate(calc(var(--travel-x) * -0.5), calc(var(--travel-y) * -0.5)) rotate(270deg);
}
}

.e-story-pillar-wave {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--accent), transparent);
opacity: 0.1;
animation: wave-motion 15s infinite linear;
transform-origin: center;
}

@keyframes wave-motion {
0% {
    transform: rotate(0deg) scale(1.5);
}
50% {
    transform: rotate(180deg) scale(2);
}
100% {
    transform: rotate(360deg) scale(1.5);
}
}

.e-story-pillar-wrapper * {
margin: 0;
padding: 0;
box-sizing: border-box;
}

.e-story-pillar-wrapper {
font-family: 'Inter', sans-serif;
color: var(--text-primary);
line-height: 1.6;
position: relative;
}

.e-story-pillar-section {
min-height: 100vh;
padding: 5rem 0;
position: relative;
overflow: hidden;
}

.e-story-pillar-container-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
position: relative;
}

/* Typography */
.e-story-pillar-h1, 
.e-story-pillar-h2, 
.e-story-pillar-h3, 
.e-story-pillar-quote {
font-family: 'Cormorant Garamond', serif;
font-weight: 700;
line-height: 1.2;
}

.e-story-pillar-h1 {
font-size: clamp(3.5rem, 8vw, 6rem);
margin-bottom: 2rem;
}

.e-story-pillar-h2 {
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1.5rem;
}

.e-story-pillar-h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

.e-story-pillar-hero-text {
font-size: clamp(1.2rem, 3vw, 1.8rem);
font-weight: 300;
max-width: 800px;
margin-bottom: 3rem;
opacity: 0;
}

/* Story Elements */
.e-story-pillar-card {
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
padding: 3rem;
border-radius: 20px;
margin: 4rem 0;
transform: translateY(50px);
opacity: 0;
}

.e-story-pillar-item {
display: flex;
align-items: flex-start;
gap: 2rem;
margin: 3rem 0;
opacity: 0;
transform: translateX(-50px);
}

.e-story-pillar-icon {
font-size: 3rem;
flex-shrink: 0;
background: var(--accent);
color: white;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
transform: rotate(-10deg);
transition: var(--transition);
}

.e-story-pillar-item:hover .e-story-pillar-icon {
transform: rotate(0deg) scale(1.1);
}

.e-story-pillar-quote {
font-size: 2rem;
font-style: italic;
color: var(--accent);
padding: 2rem;
position: relative;
opacity: 0;
}

.e-story-pillar-quote::before {
content: '"';
font-size: 6rem;
position: absolute;
top: -1rem;
left: -1rem;
opacity: 0.2;
}

/* Impact Counter */
.e-story-pillar-counter-wrapper {
font-size: 4rem;
font-weight: 700;
color: var(--accent);
text-align: center;
opacity: 0;
}

.e-story-pillar-counter {
display: inline-block;
}

.e-story-pillar-label {
font-size: 1.2rem;
text-align: center;
opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
.e-story-pillar-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.e-story-pillar-quote {
    font-size: 1.5rem;
}

.e-story-pillar-icon {
    margin-bottom: 1rem;
}
}



.ddtb-features {
    padding: 5rem 2rem;
    background: var(--ddtb-dark);
}

.ddtb-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ddtb-feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s ease;
}

.ddtb-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.ddtb-testimonials {
    padding: 5rem 2rem;
    background: var(--ddtb-light);
    color: var(--ddtb-dark);
}

.ddtb-testimonial-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.ddtb-testimonial-slide {
    min-width: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.ddtb-testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.ddtb-impact {
    padding: 5rem 2rem;
    background: var(--ddtb-dark);
    text-align: center;
}

.ddtb-counter-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.ddtb-counter {
    font-size: 4rem;
    font-weight: bold;
    color: var(--ddtb-accent);
    opacity: 0;
    transform: translateY(30px);
}

.ddtb-counter-label {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--ddtb-light);
}


.ddtb-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--ddtb-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.ddtb-cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(42, 63, 251, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .ddtb-hero-title {
        font-size: 4rem;
    }

    .ddtb-book-container {
        width: 300px;
        height: 450px;
    }

    .ddtb-counter-container {
        flex-direction: column;
        gap: 2rem;
    }
}

    .book-highlights-section {
        --gradient-start: #0a1f1c;
        --gradient-end: #183a62;
        --accent-color: #2ebf91;
        --card-shadow: 0 8px 32px rgba(46, 191, 145, 0.1);
        --card-hover-shadow: 0 16px 48px rgba(46, 191, 145, 0.2);
        --card-bg: rgba(18, 30, 26, 0.95);
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        min-height: 100vh;
        padding: 2rem 0;
    }

    .book-highlights-section .book-highlights-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        transform-style: preserve-3d;
    }

    .book-highlights-section .book-highlights-title {
        text-align: center;
        font-size: 3.5rem;
        background: linear-gradient(135deg, var(--accent-color), #34a892);
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 4rem;
        opacity: 0;
        transform: translateY(-20px) rotateX(30deg);
        animation: book-highlights-titleReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    .book-highlights-section .book-highlights-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 1rem;
        transform-style: preserve-3d;
    }

    .book-highlights-section .book-highlights-card {
        background: var(--card-bg);
        border-radius: 20px;
        padding: 2rem;
        position: relative;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(40px) rotateX(-15deg);
        box-shadow: var(--card-shadow);
        backdrop-filter: blur(10px);
        transform-style: preserve-3d;
        border: 1px solid rgba(46, 191, 145, 0.1);
    }

    .book-highlights-section .book-highlights-card.book-highlights-visible {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }

    .book-highlights-section .book-highlights-card:hover {
        transform: translateY(-10px) scale(1.02) rotateX(5deg);
        box-shadow: var(--card-hover-shadow);
        border-color: rgba(46, 191, 145, 0.3);
    }

    .book-highlights-section .book-highlights-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(46, 191, 145, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .book-highlights-section .book-highlights-card:hover::before {
        transform: translateX(0);
    }

    .book-highlights-section .book-highlights-icon-3d {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .book-highlights-section .book-highlights-card:hover .book-highlights-icon-3d {
        transform: rotateY(360deg) rotateX(45deg);
    }

    .book-highlights-section .book-highlights-icon-3d i {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        font-size: 2rem;
        backface-visibility: hidden;
    }

    .book-highlights-section .book-highlights-icon-3d::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--accent-color);
        border-radius: 12px;
        transform: translateZ(-20px);
        filter: blur(12px);
        opacity: 0.3;
        transition: all 0.6s ease;
    }

    .book-highlights-section .book-highlights-card:hover .book-highlights-icon-3d::after {
        transform: translateZ(-10px);
        opacity: 0.5;
    }

    .book-highlights-section .book-highlights-card h3 {
        font-size: 1.5rem;
        color: #e0f2f0;
        margin-bottom: 1rem;
        position: relative;
        transform: translateZ(20px);
    }

    .book-highlights-section .book-highlights-card p {
        color: #a3b5b3;
        line-height: 1.6;
        margin: 0;
        transform: translateZ(10px);
        transition: transform 0.3s ease;
    }

    .book-highlights-section .book-highlights-card:hover p {
        transform: translateZ(15px);
    }

    .book-highlights-section .book-highlights-progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(46, 191, 145, 0.1);
        z-index: 1000;
    }

    .book-highlights-section .book-highlights-progress-fill {
        height: 100%;
        width: 0;
        background: var(--accent-color);
        transition: width 0.1s ease;
    }

    .book-highlights-section .book-highlights-particle {
        position: fixed;
        pointer-events: none;
        background: var(--accent-color);
        border-radius: 50%;
        opacity: 0.3;
        transition: all 0.8s ease;
    }

    @keyframes book-highlights-titleReveal {
        0% { opacity: 0; transform: translateY(-20px) rotateX(30deg); }
        100% { opacity: 1; transform: translateY(0) rotateX(0); }
    }

    @keyframes book-highlights-cardReveal {
        0% { opacity: 0; transform: translateY(40px) rotateX(-15deg); }
        100% { opacity: 1; transform: translateY(0) rotateX(0); }
    }

    @media (max-width: 1024px) {
        .book-highlights-section .book-highlights-grid {
            grid-template-columns: 1fr; 
            gap: 1.5rem;
        }
        
        .book-highlights-section .book-highlights-title {
            font-size: 2.8rem;
        }

        .book-highlights-section .book-highlights-card {
            padding: 1.75rem;
        }
    }

    @media (max-width: 768px) {
        .book-highlights-section .book-highlights-container {
            padding: 1rem;
        }

        .book-highlights-section .book-highlights-grid {
            gap: 1.25rem;
            padding: 0.5rem;
        }
        
        .book-highlights-section .book-highlights-card {
            padding: 1.5rem;
            transform: translateY(20px);
        }

        .book-highlights-section .book-highlights-card:hover {
            transform: translateY(-5px) scale(1.01);
        }
        .book-highlights-section .book-highlights-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .book-highlights-section .book-highlights-icon-3d {
            width: 60px;
            height: 60px;
        }

        .book-highlights-section .book-highlights-card::before {
            display: none;
        }

        .book-highlights-section .book-highlights-particle {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .book-highlights-section .book-highlights-container {
            padding: 0.75rem;
        }
        .book-highlights-section .book-highlights-title {
            font-size: 1.8rem;
        }
        .book-highlights-section .book-highlights-container {
            padding: 0.75rem;
        }

        .book-highlights-section .book-highlights-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .book-highlights-section .book-highlights-card {
            padding: 1.25rem;
        }

        .book-highlights-section .book-highlights-card h3 {
            font-size: 1.3rem;
        }

        .book-highlights-section .book-highlights-card p {
            font-size: 0.95rem;
        }
    }



.participonts-section {
    --participonts-card-width: 280px;
    --participonts-card-height: 400px;
    --participonts-standard-card-height: 320px;
    --participonts-accent-primary: #04c9fa;
    --participonts-accent-secondary: #0f3678;
    --participonts-accent-tertiary: #0e6336;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.participonts-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.participonts-bg-base {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #070B34;
    z-index: -3;
}

.participonts-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.participonts-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(7, 11, 52, 0.1) 0%, 
        rgba(7, 11, 52, 0.6) 70%, 
        rgba(7, 11, 52, 0.9) 100%);
    z-index: -1;
    pointer-events: none;
}

.participonts-shape {
    position: fixed;
    opacity: 0.2;
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

.participonts-shape-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 43% 57% 74% 26% / 44% 63% 37% 56%;
    background: linear-gradient(45deg, var(--participonts-accent-primary), var(--participonts-accent-secondary));
    animation: participonts-float 25s ease-in-out infinite alternate;
}

.participonts-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    border-radius: 65% 35% 31% 69% / 41% 59% 41% 59%;
    background: linear-gradient(45deg, var(--participonts-accent-secondary), var(--participonts-accent-tertiary));
    animation: participonts-float 32s ease-in-out infinite alternate-reverse;
}

.participonts-shape-3 {
    top: 60%;
    left: 20%;
    width: 250px;
    height: 250px;
    border-radius: 33% 67% 70% 30% / 30% 43% 57% 70%;
    background: linear-gradient(45deg, var(--participonts-accent-tertiary), var(--participonts-accent-primary));
    animation: participonts-float 28s ease-in-out infinite alternate;
}

@keyframes participonts-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 3%) rotate(5deg); }
    66% { transform: translate(-2%, -2%) rotate(-3deg); }
    100% { transform: translate(1%, 1%) rotate(8deg); }
}

.participonts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.participonts-section-title {
    font-size: 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    animation: participonts-titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: linear-gradient(135deg, var(--participonts-accent-primary), var(--participonts-accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.participonts-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--participonts-accent-primary), var(--participonts-accent-secondary));
    border-radius: 10px;
}

.participonts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--participonts-card-width), 1fr));
    gap: 2rem;
    padding: 1rem;
}

.participonts-standard-card {
    position: relative;
    width: 100%;
    height: var(--participonts-standard-card-height);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05),
              0 0 20px 0px rgba(4, 201, 250, 0.1);
}

.participonts-standard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2),
              0 0 30px rgba(4, 201, 250, 0.3);
}

.participonts-featured-card {
    position: relative;
    width: 100%;
    height: var(--participonts-card-height);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2),
              0 0 30px rgba(4, 201, 250, 0.2);
}

.participonts-featured-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.participonts-featured-card:hover .participonts-featured-content {
    transform: translateZ(100px) rotateX(180deg);
}

.participonts-card-front,
.participonts-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 20px;
}

.participonts-card-back {
    transform: rotateX(180deg);
    background: linear-gradient(145deg, var(--participonts-accent-primary), var(--participonts-accent-secondary));
    color: white;
}

.participonts-image-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 1.5rem;
    transform-style: preserve-3d;
}

.participonts-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(145deg, var(--participonts-accent-primary), var(--participonts-accent-secondary)) border-box;
    mask: linear-gradient(#ffffff12 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    box-shadow: 0 0 30px rgba(4, 201, 250, 0.3);
}

.participonts-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--participonts-accent-primary), var(--participonts-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.participonts-role {
    position: relative;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--participonts-accent-tertiary), var(--participonts-accent-secondary));
    color: white;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.participonts-about-author-button {
    position: relative;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 1.5rem;
    backdrop-filter: blur(5px);
}

.participonts-about-author-button:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.participonts-about-author-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 25%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 75%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.participonts-about-author-button:hover::before {
    transform: translateX(100%);
}

.participonts-back-content {
    text-align: center;
    transform: translateZ(50px);
}

.participonts-back-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.participonts-back-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.participonts-icon-3d {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2),
              0 0 15px rgba(4, 201, 250, 0.4);
    animation: participonts-iconFloat 3s ease-in-out infinite;
}

.participonts-standard-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2),
              0 0 15px rgba(4, 201, 250, 0.3);
    z-index: 1;
}

@keyframes participonts-iconFloat {
    0%, 100% { transform: translateY(0) translateZ(30px); }
    50% { transform: translateY(-15px) translateZ(50px); }
}

@keyframes participonts-titleReveal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.participonts-particle {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

@keyframes participonts-particleAnimation {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
    .participonts-grid { grid-template-columns: repeat(1, 1fr); }
    .participonts-section-title { font-size: 2.5rem; }
    .participonts-section-title::after { width: 80px; height: 4px; }
}

@media (max-width: 480px) {
    .participonts-featured-card { --participonts-card-height: 350px; }
    .participonts-standard-card { --participonts-standard-card-height: 300px; }
    .participonts-image-container { width: 150px; height: 150px; }
    .participonts-section-title { font-size: 2rem; }
    .participonts-section-title::after { width: 60px; height: 3px; }
}


/* SEHEMU YA LEARNMORE NA ORDER NA DONATE */


.popup-up-section {
--primary-gradient: linear-gradient(135deg, #fcf4ad 0%, #fff3bf 100%);
--hover-color: #3498db;
--text-primary: #2d3436;
--animation-timing: 0.3s;
}

.social-medio-section {
background: linear-gradient(-45deg, #0e6336, #0f3678, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
min-height: 100vh;
padding: 0;
margin: 0;
}

@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}


.book-3d {
transition: transform 0.5s ease;
transform-style: preserve-3d;
position: relative;
}

.book-3d:hover {
transform: rotateY(10deg) rotateX(5deg);
}

.order-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 2000;
}

.order-container {
background: white;
padding: 2rem;
border-radius: 20px;
max-width: 500px;
width: 90%;
position: relative;
animation: bounceIn 0.8s;
}

.order-option {
background: linear-gradient(135deg, #0e6336, #0f3678);
color: white;
padding: 1rem;
margin: 1rem 0;
border-radius: 10px;
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: slideInRight 0.5s forwards;
opacity: 0;
}

.order-option:hover {
transform: translateX(10px) scale(1.02);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes bounceIn {
0% { transform: scale(0.3); opacity: 0; }
50% { transform: scale(1.05); opacity: 0.8; }
70% { transform: scale(0.9); opacity: 0.9; }
100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInRight {
0% { transform: translateX(-50px); opacity: 0; }
100% { transform: translateX(0); opacity: 1; }
}

.book-title {
font-size: 1.5rem;
color: white;
margin-top: 1rem;
text-align: center;
}

.book-description {
color: white;
text-align: center;
margin: 1rem 0;
font-size: 1.1rem;
line-height: 1.6;
}

.close-popup {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 1.5rem;
cursor: pointer;
color: #666;
transition: color 0.3s ease;
}

.close-popup:hover {
color: #000;
}


.popup-up-section .popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
overflow-y: auto;
padding: 2rem 0;
}

.popup-up-section .popup-container {
max-height: 90vh;
height: auto;
overflow-y: auto;
box-sizing: border-box;
background: linear-gradient(135deg, #0e6336 0%, #0f3678 100%);
box-shadow: 0 15px 50px rgba(0,0,0,0.2);
border-radius: 20px;
max-width: 800px;
width: 90%;
color: white;
position: relative;
padding: 30px;
}

.popup.active .popup-container {
transform: scale(1);
}

.problems-section {
position: relative;
margin-bottom: 30px;
}

.problem-slides {
position: relative;
height: 300px;
overflow: hidden;
}

.problem-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
display: flex;
flex-direction: column;
justify-content: center;
}

.problem-slide.active {
opacity: 1;
}

.problem-slide-content {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 15px;
padding: 30px;
backdrop-filter: blur(10px);
}
.problem-slide h3 {
font-size: 24px;
margin-bottom: 15px;
}
.problem-slide p {
font-size: 18px;
line-height: 1.6;
}

.icon-container i {
font-size: 3rem;
color: white;
}


.impact-banner {
background: rgba(207, 47, 47, 0.1);
backdrop-filter: blur(10px);
border-radius: 10px;
padding: 1.5rem;
margin: 2rem 0;
border: 1px solid rgba(255, 255, 255, 0.2);
animation: pulse 12s infinite;
padding-left: 20px;
padding-right: 20px;
}

/* @keyframes pulse {
0% {
transform: scale(1);
opacity: 0.7;
}

50% {
transform: scale(1.02);
opacity: 0.1;
}
100% {
transform: scale(1);
opacity: 0.6;
}
} */

.donate-button {
background: linear-gradient(45deg, #0b451c, #1655c2);
border: none;
padding: 1rem 2rem;
border-radius: 50px;
color: white;
font-weight: bold;
cursor: pointer;
transition: transform 0.3s ease;
animation: glow 2s infinite;
}

@keyframes glow {
0% { box-shadow: 0 0 5px rgba(107, 243, 255, 0.5); }
50% { box-shadow: 0 0 20px rgba(254, 202, 87, 0.8); }
100% { box-shadow: 0 0 5px rgba(114, 255, 107, 0.5); }
}

.donate-button:hover {
transform: scale(1.05);
}

.author-card {
background: rgba(255,255,255,0.1);
border-radius: 20px;
overflow: hidden;
}

.author-card .author-image-container {
width: 30%;
margin-right: 2rem;
}

.author-card .author-content {
width: 70%;
}

.author-card img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
border: 4px solid white;
}

.skuku {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: rgba(255,255,255,0.1);
}

/* .school-list-section {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: rgba(255,255,255,0.1);
} */

.school-list {
width: 100%;
display: flex;
flex-direction: column;
gap: 20px;
}

.school {
background: rgba(255,255,255,0.1);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
position: relative;
transition: all 0.4s ease;
}

.school .slider {
background: rgba(60,130,246,1.0);
color: white;
padding: 15px;
border-radius: 15px 15px 0 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: width 0.5s ease;
width: 150px;
}

.school:hover .slider,
.school.expanded .slider {
width: 300px;
}

.school .content {
background: #f9f9f9de;
padding: 15px;
opacity: 0;
max-height: 0;
overflow: hidden;
transition: opacity 0.4s ease, max-height 0.4s ease;
}

.school:hover .content,
.school.expanded .content {
opacity: 1;
max-height: 200px;
}

.school h2 {
margin: 0;
font-size: 1rem;
color: #333;
}
.school p {
margin: 10px 0 0;
font-size: 0.9rem;
color: rgba(60,130,246,1.0);
}

.author-profile-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.95);
padding: 2rem;
border-radius: 15px;
max-width: 600px;
width: 90%;
display: none;
z-index: 2000;
animation: slideIn 0.5s ease;
}

@keyframes slideIn {
from {
transform: translate(-50%, -60%);
opacity: 0;
}
to {
transform: translate(-50%, -50%);
opacity: 1;
}
}



@media (max-width: 768px) {
.popup-container {
padding: 1rem;
margin: 1rem;
}

.problem-slide {
flex-direction: column;
text-align: center;
}

.author-card {
flex-direction: column;
text-align: center;
padding: 1.5rem;
}

.author-card .author-image-container {
width: 100%;
margin: 0;
display: flex;
justify-content: center;
margin-bottom: 1.5rem;
}

.author-card .author-content {
width: 100%;
margin: 0;
}

.school .slider {
width: 100px;
}

.school:hover .slider,
.school.expanded .slider {
width: 250px;
}
.author-card img {
width: 200px;
height: 200px;
margin: 0;
flex-shrink: 0;
}
.school-list {
gap: 15px;
}
.school .slider {
width: 100px;
}
.school:hover .slider,
.school.expanded .slider {
width: 250px;
}
.school .content {
padding: 10px;
}
.school:hover .content,
.school.expanded .content {
max-height: 150px;
}
}


/* New styles for the features list */
.features-list {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 0.5rem;
margin: 1rem 0;
border: 2px solid rgba(255, 255, 255, 0.2);
}
.feature-item {
cursor: pointer;
overflow: hidden;
margin: 0.5rem 0;
border-radius: 15px;
background: rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.feature-header {
padding: 1rem;
display: flex;
align-items: center;
color: white;
background: linear-gradient(135deg, rgba(14, 99, 54, 0.3), rgba(15, 54, 120, 0.3));
border-radius: 15px;
transition: all 0.3s ease;
}
.feature-icon {
margin-right: 1rem;
font-size: 1.5rem;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: all 0.3s ease;
}
.feature-content {
max-height: 0;
opacity: 0;
padding: 0 1rem;
color: white;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.05);
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
.feature-item.active .feature-content {
max-height: 200px;
opacity: 1;
padding: 1rem;
}
.feature-item.active .feature-header {
background: linear-gradient(135deg, rgba(14, 99, 54, 0.6), rgba(15, 54, 120, 0.6));
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.feature-item.active .feature-icon {
transform: rotate(360deg);
background: rgba(255, 255, 255, 0.2);
}
.feature-item:hover .feature-header {
transform: translateX(5px);
}
/* Add styles for hover state */
.feature-item:hover:not(.active) .feature-content {
max-height: 200px;
opacity: 1;
padding: 1rem;
}
.feature-item:hover:not(.active) .feature-header {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}


/*❌❌❌❌❌BEWARE OF SOSHOO❌❌❌❌*/


        /* Responsive Base Styles */
        .pu-social-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .pu-social-container {
            --pu-animation-timing: 0.3s;
            --pu-fb-color: #3b5998;
            --pu-twitter-color: #1da1f2;
            --pu-linkedin-color: #0077b5;
            --pu-discord-color: #7289da;
            --pu-whatsapp-color: #25D366;
            --pu-email-color: #864842;
            --pu-youtube-color: #ea4335;
            --pu-background: #2d2d2d;
            --pu-text-color: #ffffff;
            
            /* Responsive Variables */
            --pu-icon-size-desktop: 50px;
            --pu-icon-size-tablet: 40px;
            --pu-icon-size-mobile: 35px;
            --pu-icon-font-size-desktop: 1.5rem;
            --pu-icon-font-size-mobile: 1.2rem;
        }

        .pu-social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            max-width: 100%;
            padding: 1rem;
        }

        .pu-social-links a {
            width: var(--pu-icon-size-desktop);
            height: var(--pu-icon-size-desktop);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--pu-background);
            color: var(--pu-text-color);
            font-size: var(--pu-icon-font-size-desktop);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all var(--pu-animation-timing) cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            text-decoration: none !important;
            border-bottom: none !important;
        }

        .pu-social-links a::after {
            content: attr(data-profile);
            position: absolute;
            bottom: -35px;
            font-size: 0.8rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: all var(--pu-animation-timing) ease;
            font-family: Arial, sans-serif;
            white-space: nowrap;
            pointer-events: none;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            letter-spacing: 0.5px;
            /* background: rgba(0,0,0,0.7); */
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            z-index: 10;
        }

        /* Hover Effects */
        .pu-social-links a:hover::after {
            opacity: 1;
            transform: translateY(0);
            animation: pu-shimmer 2s infinite;
        }

        @keyframes pu-shimmer {
            0% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
            100% { filter: brightness(1); }
        }

        .pu-social-links a:hover {
            transform: translateY(-10px) scale(1.2);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .pu-social-links a i {
            transition: transform var(--pu-animation-timing) ease;
            position: relative;
            z-index: 1;
        }

        .pu-social-links a:hover i {
            transform: scale(1.2);
        }

        .pu-social-links.pu-has-hovered a:not(:hover) {
            opacity: 0.5;
            transform: scale(0.95);
            color: #837d4a;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
            }

            .footer-section {
                flex: 1 1 300px;
                margin: 0.5rem;
                animation: slideIn var(--animation-timing) ease-out forwards;
                opacity: 0;
            }

            @keyframes slideIn {
                from {
                    transform: translateY(30px);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .footer-section:nth-child(1) { animation-delay: 0.1s; }
            .footer-section:nth-child(2) { animation-delay: 0.2s; }
            .footer-section:nth-child(3) { animation-delay: 0.3s; }
            .footer-section:nth-child(4) { animation-delay: 0.4s; }
        }
        
        @media screen and (max-width: 768px) {

            .pu-social-links {
                gap: 0.75rem;
            }

            .pu-social-links a {
                width: var(--pu-icon-size-tablet);
                height: var(--pu-icon-size-tablet);
                font-size: 1.3rem;
            }

            .pu-social-links a::after {
                font-size: 0.7rem;
                bottom: -30px;
                padding: 2px 6px;
            }
        }

        @media screen and (max-width: 480px) {
            .pu-social-links {
                gap: 0.5rem;
            }

            .pu-social-links a {
                width: var(--pu-icon-size-mobile);
                height: var(--pu-icon-size-mobile);
                font-size: var(--pu-icon-font-size-mobile);
            }

            .pu-social-links a::after {
                font-size: 0.6rem;
                bottom: -25px;
                padding: 2px 5px;
            }

            /* On very small screens, adjust hover behavior */
            .pu-social-links a:hover {
                transform: translateY(-5px) scale(1.1);
            }
        }

        /* Colored Icons */
        .pu-social-links a:hover .fa-facebook, 
        .pu-social-links a:hover[data-profile*="facebook"]::after { 
            color: var(--pu-fb-color); 
        }

        .pu-social-links a:hover .fa-twitter,
        .pu-social-links a:hover[data-profile*="twitter"]::after { 
            color: var(--pu-twitter-color); 
        }

        .pu-social-links a:hover .fa-instagram,
        .pu-social-links a:hover[data-profile*="instagram"]::after { 
            background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
        }

        .pu-social-links a:hover .fa-linkedin,
        .pu-social-links a:hover[data-profile*="linkedin"]::after { 
            color: var(--pu-linkedin-color); 
        }

        .pu-social-links a:hover .fa-discord,
        .pu-social-links a:hover[data-profile*="discord"]::after { 
            color: var(--pu-discord-color); 
        }

        .pu-social-links a:hover .fa-whatsapp,
        .pu-social-links a:hover[data-profile*="whatsapp"]::after { 
            color: var(--pu-whatsapp-color); 
        }

        .pu-social-links a:hover .fa-envelope,
        .pu-social-links a:hover[data-profile*="gmail"]::after { 
            color: var(--pu-email-color); 
        }

        .pu-social-links a:hover .fa-youtube,
        .pu-social-links a:hover[data-profile*="youtube"]::after { 
            color: var(--pu-youtube-color); 
        }



/* SPONSA ANAZINGUA */




