/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-dark: #7C3AED;
    --orange: #F59E0B;
    --orange-light: #FBBF24;
    --orange-dark: #D97706;
    --green: #10B981;
    --green-light: #34D399;
    --green-dark: #059669;
    --cream: #FEF3C7;
    --cream-light: #FFFBEB;
    --cream-dark: #FDE68A;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

/* Gradient Definitions */
.gradient-purple-orange {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 100%);
}

.gradient-orange-green {
    background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
}

.gradient-green-purple {
    background: linear-gradient(135deg, var(--green) 0%, var(--purple) 100%);
}

.gradient-cream-purple {
    background: linear-gradient(135deg, var(--cream) 0%, var(--purple-light) 100%);
}

.gradient-multi {
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 25%, var(--green) 50%, var(--cream) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.2));
}

.logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.4));
}

.nav-logo h2 {
    background: var(--gradient-multi);
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 25%, var(--green) 50%, var(--cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: block;
}

.nav-link:hover {
    color: var(--purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 70%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 25%, var(--green) 50%, var(--cream) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo-img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--purple);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}


/* DNA Animation */
.dna-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateZ(0deg);
}

@keyframes rotate {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.dna {
    position: relative;
    width: 1px;
    height: 200px;
    border: 1px dotted rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background: transparent;
    margin: 0px 12px;
    animation: rotate 3s linear infinite;
}

.dna::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--purple);
}

.dna::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange);
}

.dna:nth-child(1) { animation-delay: -0.15s; }
.dna:nth-child(2) { animation-delay: -0.3s; }
.dna:nth-child(3) { animation-delay: -0.45s; }
.dna:nth-child(4) { animation-delay: -0.6s; }
.dna:nth-child(5) { animation-delay: -0.75s; }
.dna:nth-child(6) { animation-delay: -0.9s; }
.dna:nth-child(7) { animation-delay: -1.05s; }
.dna:nth-child(8) { animation-delay: -1.2s; }
.dna:nth-child(9) { animation-delay: -1.35s; }
.dna:nth-child(10) { animation-delay: -1.5s; }
.dna:nth-child(11) { animation-delay: -1.65s; }
.dna:nth-child(12) { animation-delay: -1.8s; }
.dna:nth-child(13) { animation-delay: -1.95s; }
.dna:nth-child(14) { animation-delay: -2.1s; }
.dna:nth-child(15) { animation-delay: -2.25s; }
.dna:nth-child(16) { animation-delay: -2.4s; }
.dna:nth-child(17) { animation-delay: -2.55s; }
.dna:nth-child(18) { animation-delay: -2.7s; }
.dna:nth-child(19) { animation-delay: -2.85s; }
.dna:nth-child(20) { animation-delay: -3s; }
.dna:nth-child(21) { animation-delay: -3.15s; }
.dna:nth-child(22) { animation-delay: -3.3s; }
.dna:nth-child(23) { animation-delay: -3.45s; }
.dna:nth-child(24) { animation-delay: -3.6s; }
.dna:nth-child(25) { animation-delay: -3.75s; }
.dna:nth-child(26) { animation-delay: -3.9s; }
.dna:nth-child(27) { animation-delay: -4.05s; }
.dna:nth-child(28) { animation-delay: -4.2s; }
.dna:nth-child(29) { animation-delay: -4.35s; }
.dna:nth-child(30) { animation-delay: -4.5s; }
.dna:nth-child(31) { animation-delay: -4.65s; }
.dna:nth-child(32) { animation-delay: -4.8s; }
.dna:nth-child(33) { animation-delay: -4.95s; }
.dna:nth-child(34) { animation-delay: -5.1s; }
.dna:nth-child(35) { animation-delay: -5.25s; }
.dna:nth-child(36) { animation-delay: -5.4s; }
.dna:nth-child(37) { animation-delay: -5.55s; }
.dna:nth-child(38) { animation-delay: -5.7s; }
.dna:nth-child(39) { animation-delay: -5.85s; }
.dna:nth-child(40) { animation-delay: -6s; }
.dna:nth-child(41) { animation-delay: -6.15s; }
.dna:nth-child(42) { animation-delay: -6.3s; }
.dna:nth-child(43) { animation-delay: -6.45s; }
.dna:nth-child(44) { animation-delay: -6.6s; }
.dna:nth-child(45) { animation-delay: -6.75s; }
.dna:nth-child(46) { animation-delay: -6.9s; }
.dna:nth-child(47) { animation-delay: -7.05s; }
.dna:nth-child(48) { animation-delay: -7.2s; }
.dna:nth-child(49) { animation-delay: -7.35s; }
.dna:nth-child(50) { animation-delay: -7.5s; }
.dna:nth-child(51) { animation-delay: -7.65s; }
.dna:nth-child(52) { animation-delay: -7.8s; }
.dna:nth-child(53) { animation-delay: -7.95s; }
.dna:nth-child(54) { animation-delay: -8.1s; }
.dna:nth-child(55) { animation-delay: -8.25s; }
.dna:nth-child(56) { animation-delay: -8.4s; }
.dna:nth-child(57) { animation-delay: -8.55s; }
.dna:nth-child(58) { animation-delay: -8.7s; }
.dna:nth-child(59) { animation-delay: -8.85s; }
.dna:nth-child(60) { animation-delay: -9s; }
.dna:nth-child(61) { animation-delay: -9.15s; }
.dna:nth-child(62) { animation-delay: -9.3s; }
.dna:nth-child(63) { animation-delay: -9.45s; }
.dna:nth-child(64) { animation-delay: -9.6s; }
.dna:nth-child(65) { animation-delay: -9.75s; }
.dna:nth-child(66) { animation-delay: -9.9s; }
.dna:nth-child(67) { animation-delay: -10.05s; }
.dna:nth-child(68) { animation-delay: -10.20s; }
.dna:nth-child(69) { animation-delay: -10.35s; }
.dna:nth-child(70) { animation-delay: -10.5s; }
.dna:nth-child(71) { animation-delay: -10.65s; }
.dna:nth-child(72) { animation-delay: -10.8s; }
.dna:nth-child(73) { animation-delay: -10.95s; }
.dna:nth-child(74) { animation-delay: -11.1s; }
.dna:nth-child(75) { animation-delay: -11.25s; }
.dna:nth-child(76) { animation-delay: -11.4s; }
.dna:nth-child(77) { animation-delay: -11.55s; }
.dna:nth-child(78) { animation-delay: -11.7s; }
.dna:nth-child(79) { animation-delay: -11.85s; }
.dna:nth-child(80) { animation-delay: -12s; }
.dna:nth-child(81) { animation-delay: -12.15s; }
.dna:nth-child(82) { animation-delay: -12.3s; }
.dna:nth-child(83) { animation-delay: -12.45s; }
.dna:nth-child(84) { animation-delay: -12.6s; }
.dna:nth-child(85) { animation-delay: -12.75s; }
.dna:nth-child(86) { animation-delay: -12.9s; }
.dna:nth-child(87) { animation-delay: -13.05s; }
.dna:nth-child(88) { animation-delay: -13.2s; }
.dna:nth-child(89) { animation-delay: -13.35s; }
.dna:nth-child(90) { animation-delay: -13.5s; }
.dna:nth-child(91) { animation-delay: -13.65s; }
.dna:nth-child(92) { animation-delay: -13.8s; }
.dna:nth-child(93) { animation-delay: -13.95s; }
.dna:nth-child(94) { animation-delay: -14.1s; }
.dna:nth-child(95) { animation-delay: -14.25s; }
.dna:nth-child(96) { animation-delay: -14.4s; }
.dna:nth-child(97) { animation-delay: -14.55s; }
.dna:nth-child(98) { animation-delay: -14.7s; }
.dna:nth-child(99) { animation-delay: -14.85s; }
.dna:nth-child(100) { animation-delay: -15s; }
.dna:nth-child(101) { animation-delay: -15.15s; }
.dna:nth-child(102) { animation-delay: -15.3s; }
.dna:nth-child(103) { animation-delay: -15.45s; }
.dna:nth-child(104) { animation-delay: -15.6s; }
.dna:nth-child(105) { animation-delay: -15.75s; }
.dna:nth-child(106) { animation-delay: -15.9s; }
.dna:nth-child(107) { animation-delay: -16.05s; }
.dna:nth-child(108) { animation-delay: -16.2s; }
.dna:nth-child(109) { animation-delay: -16.35s; }
.dna:nth-child(110) { animation-delay: -16.5s; }
.dna:nth-child(111) { animation-delay: -16.65s; }
.dna:nth-child(112) { animation-delay: -16.8s; }
.dna:nth-child(113) { animation-delay: -16.95s; }
.dna:nth-child(114) { animation-delay: -17.1s; }
.dna:nth-child(115) { animation-delay: -17.25s; }
.dna:nth-child(116) { animation-delay: -17.4s; }
.dna:nth-child(117) { animation-delay: -17.55s; }
.dna:nth-child(118) { animation-delay: -17.7s; }
.dna:nth-child(119) { animation-delay: -17.85s; }
.dna:nth-child(120) { animation-delay: -18s; }
.dna:nth-child(121) { animation-delay: -18.15s; }
.dna:nth-child(122) { animation-delay: -18.3s; }
.dna:nth-child(123) { animation-delay: -18.45s; }
.dna:nth-child(124) { animation-delay: -18.6s; }
.dna:nth-child(125) { animation-delay: -18.75s; }
.dna:nth-child(126) { animation-delay: -18.9s; }
.dna:nth-child(127) { animation-delay: -19.05s; }
.dna:nth-child(128) { animation-delay: -19.2s; }
.dna:nth-child(129) { animation-delay: -19.35s; }
.dna:nth-child(130) { animation-delay: -19.5s; }
.dna:nth-child(131) { animation-delay: -19.65s; }
.dna:nth-child(132) { animation-delay: -19.8s; }
.dna:nth-child(133) { animation-delay: -19.95s; }
.dna:nth-child(134) { animation-delay: -20.1s; }
.dna:nth-child(135) { animation-delay: -20.25s; }
.dna:nth-child(136) { animation-delay: -20.4s; }
.dna:nth-child(137) { animation-delay: -20.55s; }
.dna:nth-child(138) { animation-delay: -20.7s; }
.dna:nth-child(139) { animation-delay: -20.85s; }
.dna:nth-child(140) { animation-delay: -21s; }
.dna:nth-child(141) { animation-delay: -21.15s; }
.dna:nth-child(142) { animation-delay: -21.3s; }
.dna:nth-child(143) { animation-delay: -21.45s; }
.dna:nth-child(144) { animation-delay: -21.6s; }
.dna:nth-child(145) { animation-delay: -21.75s; }
.dna:nth-child(146) { animation-delay: -21.9s; }
.dna:nth-child(147) { animation-delay: -22.05s; }
.dna:nth-child(148) { animation-delay: -22.2s; }
.dna:nth-child(149) { animation-delay: -22.35s; }
.dna:nth-child(150) { animation-delay: -22.5s; }
.dna:nth-child(151) { animation-delay: -22.65s; }
.dna:nth-child(152) { animation-delay: -22.8s; }
.dna:nth-child(153) { animation-delay: -22.95s; }
.dna:nth-child(154) { animation-delay: -23.1s; }
.dna:nth-child(155) { animation-delay: -23.25s; }
.dna:nth-child(156) { animation-delay: -23.4s; }
.dna:nth-child(157) { animation-delay: -23.55s; }
.dna:nth-child(158) { animation-delay: -23.7s; }
.dna:nth-child(159) { animation-delay: -23.85s; }
.dna:nth-child(160) { animation-delay: -24s; }
.dna:nth-child(161) { animation-delay: -24.15s; }
.dna:nth-child(162) { animation-delay: -24.3s; }
.dna:nth-child(163) { animation-delay: -24.45s; }
.dna:nth-child(164) { animation-delay: -24.6s; }
.dna:nth-child(165) { animation-delay: -24.75s; }
.dna:nth-child(166) { animation-delay: -24.9s; }
.dna:nth-child(167) { animation-delay: -25.05s; }
.dna:nth-child(168) { animation-delay: -25.2s; }
.dna:nth-child(169) { animation-delay: -25.35s; }
.dna:nth-child(170) { animation-delay: -25.5s; }
.dna:nth-child(171) { animation-delay: -25.65s; }
.dna:nth-child(172) { animation-delay: -25.8s; }
.dna:nth-child(173) { animation-delay: -25.95s; }
.dna:nth-child(174) { animation-delay: -26.1s; }
.dna:nth-child(175) { animation-delay: -26.25s; }
.dna:nth-child(176) { animation-delay: -26.4s; }
.dna:nth-child(177) { animation-delay: -26.55s; }
.dna:nth-child(178) { animation-delay: -26.7s; }
.dna:nth-child(179) { animation-delay: -26.85s; }
.dna:nth-child(180) { animation-delay: -27s; }
.dna:nth-child(181) { animation-delay: -27.15s; }
.dna:nth-child(182) { animation-delay: -27.3s; }
.dna:nth-child(183) { animation-delay: -27.45s; }
.dna:nth-child(184) { animation-delay: -27.6s; }
.dna:nth-child(185) { animation-delay: -27.75s; }
.dna:nth-child(186) { animation-delay: -27.9s; }
.dna:nth-child(187) { animation-delay: -28.05s; }
.dna:nth-child(188) { animation-delay: -28.2s; }
.dna:nth-child(189) { animation-delay: -28.35s; }
.dna:nth-child(190) { animation-delay: -28.5s; }
.dna:nth-child(191) { animation-delay: -28.65s; }
.dna:nth-child(192) { animation-delay: -28.8s; }
.dna:nth-child(193) { animation-delay: -28.95s; }
.dna:nth-child(194) { animation-delay: -29.1s; }
.dna:nth-child(195) { animation-delay: -29.25s; }
.dna:nth-child(196) { animation-delay: -29.4s; }
.dna:nth-child(197) { animation-delay: -29.55s; }
.dna:nth-child(198) { animation-delay: -29.7s; }
.dna:nth-child(199) { animation-delay: -29.85s; }
.dna:nth-child(200) { animation-delay: -30s; }
.dna:nth-child(201) { animation-delay: -30.15s; }
.dna:nth-child(202) { animation-delay: -30.3s; }
.dna:nth-child(203) { animation-delay: -30.45s; }

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--purple) 0%, var(--orange) 50%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--cream-light);
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--purple-light);
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.about-card:hover h3 {
    color: var(--purple);
    transform: translateX(5px);
}

.about-card:hover p {
    transform: translateX(5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--purple-light), var(--orange-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.7;
}

/* Who We Are Section */
.who-we-are {
    background: white;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--purple-light);
}

.team-card:hover h3 {
    color: var(--purple);
    transform: scale(1.05);
}

.team-card:hover .team-role {
    color: var(--orange);
    transform: translateX(5px);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-image i {
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
}

/* Management Icon - Koyu Mavi */
.management-icon {
    background: linear-gradient(135deg, #1E3A8A, #1E40AF);
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
}

.management-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.5);
}

.management-icon:hover i {
    animation: leadership 0.6s ease-in-out;
}

@keyframes leadership {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

/* Coordinator Icon - Yeşil */
.coordinator-icon {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.3);
}

.coordinator-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.5);
}

.coordinator-icon:hover i {
    animation: coordination 0.8s ease-in-out;
}

@keyframes coordination {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Social Media Icon - Pembe */
.social-media-icon {
    background: linear-gradient(135deg, #EC4899, #BE185D);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.social-media-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.social-media-icon:hover i {
    animation: socialShare 0.7s ease-in-out;
}

@keyframes socialShare {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Communication Icon - Turuncu */
.communication-icon {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.3);
}

.communication-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(234, 88, 12, 0.5);
}

.communication-icon:hover i {
    animation: handshake 0.6s ease-in-out;
}

@keyframes handshake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Logistics Icon - Mor */
.logistics-icon {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.logistics-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.logistics-icon:hover i {
    animation: mapPulse 0.8s ease-in-out;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Program Icon - Kırmızı */
.program-icon {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.program-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.program-icon:hover i {
    animation: calendarFlip 0.6s ease-in-out;
}

@keyframes calendarFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

.team-role {
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-description {
    color: var(--gray-600);
    line-height: 1.6;
}


/* Blog Section */
.blog {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--purple-light) 100%);
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--purple-light);
}

.blog-card:hover .blog-title {
    color: var(--purple);
    transform: translateX(5px);
}

.blog-card:hover .read-more {
    transform: translateX(10px);
    gap: 1rem;
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 3rem;
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Etkinlik kartları için özel animasyonlar */
.blog-card:nth-child(1) .blog-image i {
    animation: dnaFloat 3s ease-in-out infinite;
}

.blog-card:nth-child(2) .blog-image .deri-icon {
    animation: deriPulse 2.5s ease-in-out infinite;
}

.deri-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

@keyframes dnaFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        opacity: 1;
    }
}

@keyframes deriPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-date {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.blog-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.blog-category {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--purple);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--orange);
    gap: 1rem;
}

/* Contact Section */
.contact {
    background: white;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 3;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
    z-index: 0;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    transform: translateX(10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--purple);
    width: 50px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.contact-item:hover i {
    color: var(--orange);
    transform: scale(1.2) rotate(5deg);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--gray-800);
}

.contact-item p {
    color: var(--gray-600);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.contact-link:hover {
    color: inherit;
}

.clickable-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.clickable-item:active {
    transform: translateX(5px) scale(0.98);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: none !important;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-dark), var(--orange-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    z-index: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
    font-family: inherit;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 0.5rem 0 0.25rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.25rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer-center {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0;
}

.footer-center h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0 0 0;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.footer-section p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--purple-light);
}


.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 0.5rem;
    text-align: center;
    color: var(--gray-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-center h3 {
        font-size: 2rem;
    }
    
    .hero-logo-img {
        height: 150px;
    }
    
    .footer-logo {
        height: 150px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .dna {
        height: 150px;
        margin: 0px 10px;
    }
    
    .dna::before,
    .dna::after {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
    
    .hero-logo-img {
        height: 130px;
    }
    
    .footer-logo {
        height: 130px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .dna {
        height: 120px;
        margin: 0px 8px;
    }
    
    .dna::before,
    .dna::after {
        width: 8px;
        height: 8px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Design */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--purple-light) 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple) 0%, var(--orange) 50%, var(--green) 100%);
    border-radius: 10px;
    border: 2px solid var(--cream-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--orange-dark) 50%, var(--green-dark) 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--orange-dark) 50%, var(--green-dark) 100%);
    transform: scale(1.05);
}

::-webkit-scrollbar-corner {
    background: var(--cream-light);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--purple) var(--cream-light);
}

/* Scrollbar Animation */
@keyframes scrollbarGlow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(139, 92, 246, 0.6), 0 0 30px rgba(245, 158, 11, 0.3);
    }
}

::-webkit-scrollbar-thumb {
    animation: scrollbarGlow 3s ease-in-out infinite;
}

/* Custom Scrollbar for specific sections */
.hero::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

/* Scrollbar for blog section */
.blog::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple-light) 0%, var(--orange-light) 100%);
}

/* Scrollbar for contact section */
.contact::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green) 0%, var(--purple) 100%);
}

/* Mobile scrollbar adjustments */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 1px solid var(--cream-light);
    }
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

/* Ensure all content is always visible */
.about-card,
.team-card,
.blog-card,
.contact-item,
.section-header {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out;
}

.bounce-in {
    animation: bounceIn 1s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.wiggle-animation {
    animation: wiggle 1s ease-in-out;
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Background floating elements for all sections */
.about::before,
.who-we-are::before,
.blog::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.about-shapes,
.who-we-are-shapes,
.blog-shapes,
.contact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--purple), var(--orange));
    opacity: 0.1;
    animation: floatAround 8s ease-in-out infinite;
}

.floating-shape:nth-child(odd) {
    background: linear-gradient(45deg, var(--green), var(--purple));
}

.floating-shape:nth-child(3n) {
    background: linear-gradient(45deg, var(--orange), var(--green));
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--purple), var(--orange));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    animation-delay: 3s;
}

.shape-6 {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 60%;
    animation-delay: 5s;
}

.shape-7 {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 30%;
    animation-delay: 1.5s;
}

.shape-8 {
    width: 30px;
    height: 30px;
    top: 90%;
    left: 90%;
    animation-delay: 3.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
