* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html, body {
   overflow-x: hidden;
    height: 100%;
}

nav {
 width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: rgb(61, 36, 151);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    width: 100px;
    cursor: pointer;
    border-radius: 50%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
}

.logo-container p {
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

/* Desktop Navigation */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 60px;
    margin: 0;
}

.nav-links ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-links ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: rgb(61, 36, 151);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links ul li {
        width: 100%;
    }
    
    .nav-links ul li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-links ul li a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }
}

/* About Us Section */
.about-section {
    padding: 80px 8% 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 158, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    padding-right: 40px;
}

.about-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-weight: 400;
    text-align: justify;
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Polaroid Gallery */
.polaroid-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.polaroid {
    position: absolute;
    width: 250px;
    height: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;
}

.polaroid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 10;
}

.polaroid-inner {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.polaroid-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    overflow: hidden;
}

.polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.polaroid-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Polaroid Positions */
.polaroid:nth-child(1) {
    transform: rotate(-15deg) translateX(-70px) translateY(-40px);
    z-index: 4;
}

.polaroid:nth-child(2) {
    transform: rotate(12deg) translateX(60px) translateY(-70px);
    z-index: 3;
}

.polaroid:nth-child(3) {
    transform: rotate(-8deg) translateX(-50px) translateY(60px);
    z-index: 2;
}

.polaroid:nth-child(4) {
    transform: rotate(18deg) translateX(80px) translateY(50px);
    z-index: 1;
}

/* Hover Effects */
.polaroid:hover {
    transform: rotate(0deg) translateX(0) translateY(0) scale(1.1) translateZ(50px);
    z-index: 100 !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Polaroid Hover Glow */
.polaroid:hover::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

/* Mission Section */
.mission-section {
    padding: 80px 8% 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(120, 158, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 159, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-text {
    padding-left: 40px;
    opacity: 1;
    transform: translateY(0);
}

.mission-text.animate {
    animation: fadeInUp 1s ease-out forwards;
}

.mission-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-weight: 400;
    text-align: justify;
}

/* Mission Polaroid Gallery */
.mission-polaroid-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.mission-polaroid {
    position: absolute;
    width: 380px;
    height: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.mission-polaroid.deal-in {
    animation: dealCard 0.8s ease-out forwards;
}

.mission-polaroid:nth-child(1).deal-in {
    animation-delay: 0.2s;
}

.mission-polaroid:nth-child(2).deal-in {
    animation-delay: 0.4s;
}

.mission-polaroid:nth-child(3).deal-in {
    animation-delay: 0.6s;
}

.mission-polaroid:nth-child(4).deal-in {
    animation-delay: 0.8s;
}

@keyframes dealCard {
    0% {
        opacity: 0;
        transform: translateY(100px) translateX(0) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(50px) translateX(0) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

.mission-polaroid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 10;
}

.mission-polaroid-inner {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.mission-polaroid-image {
    width: 100%;
    height: 170px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    overflow: hidden;
}

.mission-polaroid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Mission Polaroid Stacked Positions */
.mission-polaroid:nth-child(1) {
    z-index: 4;
    top: 100px;
}

.mission-polaroid:nth-child(2) {
    z-index: 3;
    top: 140px;
}

.mission-polaroid:nth-child(3) {
    z-index: 2;
    top: 180px;
}

.mission-polaroid:nth-child(4) {
    z-index: 1;
    top: 220px;
}

/* Mission Polaroid Hover Effects */
.mission-polaroid:hover {
    transform: translateY(-20px) scale(1.05) translateZ(50px);
    z-index: 100 !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mission-polaroid:hover::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(15px);
}

/* Services Section */
.services-section {
    padding: 80px 8% 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 159, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 158, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-text {
    padding-right: 40px;
}

.services-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-text h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

.services-text ul {
    list-style: none;
    padding: 0;
}

.services-text ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    animation: fadeInUp 1s ease-out forwards;
}

.services-text ul li:nth-child(1) { animation-delay: 0.1s; }
.services-text ul li:nth-child(2) { animation-delay: 0.2s; }
.services-text ul li:nth-child(3) { animation-delay: 0.3s; }
.services-text ul li:nth-child(4) { animation-delay: 0.4s; }
.services-text ul li:nth-child(5) { animation-delay: 0.5s; }
.services-text ul li:nth-child(6) { animation-delay: 0.6s; }
.services-text ul li:nth-child(7) { animation-delay: 0.7s; }
.services-text ul li:nth-child(8) { animation-delay: 0.8s; }
.services-text ul li:nth-child(9) { animation-delay: 0.9s; }

.services-text ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b6b;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.services-text ul li:hover::before {
    color: #ff8e53;
    transform: translateX(5px);
}

/* 3D Photo Wheel */
.photo-wheel-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.photo-wheel {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotateWheel 20s linear infinite;
    cursor: pointer;
}

.photo-wheel:hover {
    animation-play-state: paused;
}

@keyframes rotateWheel {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.photo-item {
    position: absolute;
    width: 200px;
    height: 250px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    backface-visibility: hidden;
    transition: all 0.3s ease;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Position each photo item around the circle */
.photo-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(200px);
}

.photo-item:nth-child(2) {
    transform: rotateY(72deg) translateZ(200px);
}

.photo-item:nth-child(3) {
    transform: rotateY(144deg) translateZ(200px);
}

.photo-item:nth-child(4) {
    transform: rotateY(216deg) translateZ(200px);
}

.photo-item:nth-child(5) {
    transform: rotateY(288deg) translateZ(200px);
}

/* Wheel Shadow */
.wheel-shadow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowRotate 20s linear infinite;
    z-index: -1;
}

.photo-wheel:hover + .wheel-shadow {
    animation-play-state: paused;
}

@keyframes shadowRotate {
    0% { transform: translateX(-50%) scaleX(1); }
    25% { transform: translateX(-50%) scaleX(0.8); }
    50% { transform: translateX(-50%) scaleX(1); }
    75% { transform: translateX(-50%) scaleX(1.2); }
    100% { transform: translateX(-50%) scaleX(1); }
}

/* Hover effect on individual photos */
.photo-item:hover {
    transform: rotateY(var(--rotation)) translateZ(250px) scale(1.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Set CSS custom properties for hover states */
.photo-item:nth-child(1) { --rotation: 0deg; }
.photo-item:nth-child(2) { --rotation: 72deg; }
.photo-item:nth-child(3) { --rotation: 144deg; }
.photo-item:nth-child(4) { --rotation: 216deg; }
.photo-item:nth-child(5) { --rotation: 288deg; }

/* Board Members Section */
.board-section {
    padding: 100px 8% 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 158, 244, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.board-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.board-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.board-content h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    border-radius: 2px;
    animation: expandLineCenter 1.2s ease-out 0.5s both;
}

@keyframes fadeInDown {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLineCenter {
    from { width: 0; }
    to { width: 120px; }
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    justify-items: center;
}

.board-member {
    text-align: center;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.board-member:nth-child(1) { animation-delay: 0.3s; }
.board-member:nth-child(2) { animation-delay: 0.5s; }
.board-member:nth-child(3) { animation-delay: 0.7s; }

.member-portrait {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.member-portrait::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    z-index: 2;
    pointer-events: none;
}

.member-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portrait-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.member-portrait:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.member-portrait:hover img {
    transform: scale(1.1);
}

.member-portrait:hover .portrait-overlay {
    opacity: 1;
}

.board-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.board-member:hover h3 {
    color: #ffa726;
    transform: translateY(-5px);
}

.board-member h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffa726;
    transition: width 0.3s ease;
}

.board-member:hover h3::after {
    width: 100%;
}

/* Professional accent elements */
.board-section::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffa726;
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.7;
}

.board-grid::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
    top: 15%;
    left: 15%;
    animation: float 10s ease-in-out infinite 2s;
    opacity: 0.6;
}

.board-grid::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
    animation: float 7s ease-in-out infinite 4s;
    opacity: 0.5;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ff6b6b;
    border-radius: 50%;
    top: 15%;
    left: 15%;
    animation: float 8s ease-in-out infinite 1s;
    opacity: 0.6;
}

.photo-wheel-container::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff8e53;
    border-radius: 50%;
    top: 20%;
    right: 20%;
    animation: float 9s ease-in-out infinite 3s;
    opacity: 0.4;
}

.photo-wheel-container::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffa726;
    border-radius: 50%;
    bottom: 30%;
    left: 25%;
    animation: float 7s ease-in-out infinite 2s;
    opacity: 0.5;
}

/* Add floating particles effect */
.about-section::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Add more floating particles with different positions and delays */
.polaroid-gallery::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #764ba2;
    border-radius: 50%;
    top: 30%;
    right: 20%;
    animation: float 8s ease-in-out infinite 2s;
    opacity: 0.4;
}

.polaroid-gallery::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #ff6b6b;
    border-radius: 50%;
    bottom: 25%;
    left: 15%;
    animation: float 7s ease-in-out infinite 4s;
    opacity: 0.5;
}

.mission-section::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #4facfe;
    border-radius: 50%;
    top: 25%;
    right: 15%;
    animation: float 7s ease-in-out infinite 1s;
    opacity: 0.6;
}

.mission-polaroid-gallery::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f2fe;
    border-radius: 50%;
    bottom: 20%;
    right: 25%;
    animation: float 9s ease-in-out infinite 3s;
    opacity: 0.4;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgb(61, 36, 151) 0%, #4a2c8a 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(61, 36, 151);
    font-weight: bold;
    font-size: 1.2rem;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.footer-description {
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-link.linkedin:hover { background: #0077b5; }
.footer-social-link.twitter:hover { background: #1da1f2; }
.footer-social-link.facebook:hover { background: #1877f2; }
.footer-social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c); }
.footer-social-link.telegram:hover { background: #0088cc; }
.footer-social-link.email:hover { background: #ea4335; }

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▶';
    font-size: 0.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content, .mission-content, .services-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .about-text, .mission-text, .services-text {
        padding-right: 0;
        padding-left: 0;
    }
    
    .about-text h1, .mission-text h1, .services-text h1 {
        font-size: 3rem;
    }
    
    .polaroid-gallery, .mission-polaroid-gallery {
        height: 400px;
    }
    
    .polaroid {
        width: 200px;
        height: 260px;
    }
    
    .polaroid-image {
        height: 170px;
    }

    .mission-polaroid {
        width: 320px;
        height: 180px;
    }

    .mission-polaroid-image {
        height: 150px;
    }
    
    .photo-wheel-container {
        height: 400px;
    }
    
    .photo-wheel {
        width: 250px;
        height: 250px;
    }
    
    .photo-item {
        width: 160px;
        height: 200px;
    }
    
    .photo-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(160px);
    }
    
    .photo-item:nth-child(2) {
        transform: rotateY(72deg) translateZ(160px);
    }
    
    .photo-item:nth-child(3) {
        transform: rotateY(144deg) translateZ(160px);
    }
    
    .photo-item:nth-child(4) {
        transform: rotateY(216deg) translateZ(160px);
    }
    
    .photo-item:nth-child(5) {
        transform: rotateY(288deg) translateZ(160px);
    }

    .board-content h1 {
        font-size: 3.5rem;
        margin-bottom: 60px;
    }
    
    .board-grid {
        gap: 50px;
    }
    
    .member-portrait {
        width: 240px;
        height: 300px;
    }
    
    .board-member h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-section, .mission-section, .services-section {
        padding: 60px 5% 80px;
    }
    
    .about-text h1, .mission-text h1, .services-text h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .about-text p, .mission-text p {
        font-size: 1.1rem;
    }
    
    .services-text ul li {
        font-size: 1rem;
    }
    
    .polaroid-gallery, .mission-polaroid-gallery {
        height: 350px;
    }
    
    .polaroid {
        width: 180px;
        height: 230px;
    }
    
    .polaroid-image {
        height: 140px;
        font-size: 1rem;
    }

    .mission-polaroid {
        width: 280px;
        height: 160px;
    }

    .mission-polaroid-image {
        height: 130px;
    }
    
    .photo-wheel-container {
        height: 350px;
    }
    
    .photo-wheel {
        width: 200px;
        height: 200px;
    }
    
    .photo-item {
        width: 140px;
        height: 180px;
        padding: 10px;
    }
    
    .photo-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(130px);
    }
    
    .photo-item:nth-child(2) {
        transform: rotateY(72deg) translateZ(130px);
    }
    
    .photo-item:nth-child(3) {
        transform: rotateY(144deg) translateZ(130px);
    }
    
    .photo-item:nth-child(4) {
        transform: rotateY(216deg) translateZ(130px);
    }
    
    .photo-item:nth-child(5) {
        transform: rotateY(288deg) translateZ(130px);
    }
    
    .wheel-shadow {
        width: 300px;
        height: 60px;
    }

    .board-section {
        padding: 80px 5% 100px;
    }
    
    .board-content h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
        margin-bottom: 50px;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .member-portrait {
        width: 260px;
        height: 320px;
    }
    
    .board-member h3 {
        font-size: 1.1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo-container {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .board-content h1 {
        font-size: 2.2rem;
    }
    
    .member-portrait {
        width: 220px;
        height: 280px;
    }
    
    .board-member h3 {
        font-size: 1rem;
    }
}



/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgb(61, 36, 151) 0%, #4a2c8a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.wrapper {
    position: relative;
    left: 0;
    top: 0;
    margin: 0;
    width: 200px;
    height: 200px;
    background-color: transparent;
    border: none;
    -webkit-user-select: none;
    margin-bottom: 30px;
}

/* ... (rest of the keyframe animations from the artifact) ... */

.loading-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Hide main content while loading */
body.loading {
    overflow: hidden;
}

body.loading main {
    visibility: hidden;
}

.box-wrap {
    width: 70%;
    height: 70%;
    margin: calc((100% - 70%)/2) calc((100% - 70%)/2);
    position: relative;
    transform: rotate(-45deg);
}

.box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(135, 0, 0, .6);
    background: linear-gradient(to right, #141562, #486FBC, #EAB5A1, #8DD6FF, #4973C9, #D07CA7, #F4915E, #F5919E, #B46F89, #141562, #486FBC);
    background-position: 0% 50%;
    background-size: 1000% 1000%;
    visibility: hidden;
}

.box.one {
    animation:
        moveGradient 15s infinite,
        oneMove 3.5s infinite;
}

.box.two {
    animation:
        moveGradient 15s infinite,
        twoMove 3.5s .15s infinite;
}

.box.three {
    animation:
        moveGradient 15s infinite,
        threeMove 3.5s .3s infinite;
}

.box.four {
    animation:
        moveGradient 15s infinite,
        fourMove 3.5s .575s infinite;
}

.box.five {
    animation:
        moveGradient 15s infinite,
        fiveMove 3.5s .725s infinite;
}

.box.six {
    animation:
        moveGradient 15s infinite,
        sixMove 3.5s .875s infinite;
}

@keyframes moveGradient {
    to {
        background-position: 100% 50%
    }
}

@keyframes oneMove {
    0% {
        visibility: visible;
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    14.2857% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    28.5714% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    42.8571% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    57.1428% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    71.4285% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    85.7142% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    100% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
}

@keyframes twoMove {
    0% {
        visibility: visible;
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    14.2857% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    28.5714% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    42.8571% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    57.1428% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    71.4285% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    85.7142% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    100% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
}

@keyframes threeMove {
    0% {
        visibility: visible;
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    14.2857% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    28.5714% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    42.8571% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    57.1428% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    71.4285% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    85.7142% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    100% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
}

@keyframes fourMove {
    0% {
        visibility: visible;
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    14.2857% {
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    28.5714% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    42.8571% {
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    57.1428% {
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    71.4285% {
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    85.7142% {
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    100% {
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
}

@keyframes fiveMove {
    0% {
        visibility: visible;
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    14.2857% {
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    28.5714% {
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    42.8571% {
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    57.1428% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    71.4285% {
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    85.7142% {
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    100% {
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
}

@keyframes sixMove {
    0% {
        visibility: visible;
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    14.2857% {
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    28.5714% {
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    42.8571% {
        clip-path: inset(70% 0 0 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    57.1428% {
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    71.4285% {
        clip-path: inset(35% 0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    85.7142% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
    100% {
        clip-path: inset(70% 35% 0% 35% round 5%);
        animation-timing-function: cubic-bezier(0.86,  0,  0.07,  1);
    }
}