@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    background-color: black;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
}

a {
    text-decoration: none;
}

header {
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

header a {
    color: #eee;
    margin-right: 40px;
}

/* carousel */
.carousel {
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
    border-radius: 0 0 5% 5%;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;

}

.carousel .list .item .author {
    font-weight: bold;
    letter-spacing: 2px;
    color: aqua;
}

.carousel .list .item .title {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.carousel .list .item .topic {
    font-size: 4em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #f1683a;
}

.carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons button {
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}

.carousel .list .item .buttons button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;

    }

    .carousel .list .item .topic {
        line-height: 1em;
    }

    .arrows {
        position: absolute;
        display: none;
    }

    .buttons {
        z-index: 9999;
    }

    .thumbnail .item {
        width: 100px;
        height: 150px;
    }

    .item-desk {
        display: none;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* about us */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: forwards 1s ease-out;
}

.image-container {
    position: relative;
    margin-bottom: 150px;
    display: inline-block;
}

@media screen and (max-width: 678px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-container {
        margin-left: 50px;
        margin-bottom: 2rem;
    }

    .content h2 {
        border-left: 5rem;

    }

}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    animation: floatImage 3s ease-in-out infinite;

}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.image-frame {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #dc2626;
    border-radius: 8px;
    z-index: 1;
    /*animation: framePulse 3s ease-in-out infinite;*/
}

@keyframes framePulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.content h5 {
    color: #dc2626;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-decoration: underline;
}

.content h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.content p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.2;
    word-spacing: 2px;
    border-spacing: 2px;
    text-align: center;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin: 0;
    font-weight: 500;
    color: white;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* New Cards Section Styles */
.cards-section {
    padding: 4rem 4rem;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 5rem;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background-color: rgba(220, 38, 38, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    color: #dc2626;
    width: 30px;
    height: 30px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.card p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: medium;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .card p {
        color: #9ca3af;
        line-height: 1.6;
        font-size: small;
    }
}

/* Footer Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer {
    background: linear-gradient(45deg, #0a0a2e, #1a1a3a);
    color: #ffffff;
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}



.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    flex-grow: 1;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background: #ffffff;
    color: #0a0a2e;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #cccccc;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: #ffffff;
    text-decoration: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cccccc;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Feature */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-section {
    background-color: black;
    min-height: 100vh;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    z-index: 7;
}

/* Background Effects */
.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 1;
}

.bg-gradient-1 {
    top: 5%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: #4a90e2;
}

.bg-gradient-2 {
    bottom: 5%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: #9b51e0;
}

/* Section Header */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}


.section-title {
    font-size: 48px;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title-about {
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #888;
    line-height: 1.6;
}

/* Features Grid */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.feature-content {
    padding: 25px;
    position: relative;
}

.feature-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #9b51e0);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-content::before {
    width: 100%;
}

.feature-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-description {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Smooth Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Performance Optimizations */
.parallax-element {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .parallax-wrapper {
        perspective: 1px;
    }

    .carousel .list .item img,
    .about-us .image-container,
    .card,
    .feature-card {
        transform: none !important;
    }

    .bg-gradient-1,
    .bg-gradient-2 {
        display: none;
    }
}

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

.gradient-text {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rgb-border {
    border: 5px solid transparent;
    border-image: linear-gradient(45deg, red, green, blue) 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-section {
    background: linear-gradient(135deg, #0a0a1a, #1a1a2a);
    min-height: 100vh;
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

/* Enhanced Background Effects */
.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    animation: pulse 8s infinite;
}

.bg-gradient-1 {
    top: 5%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: #4a90e2;
    animation-delay: 0s;
}

.bg-gradient-2 {
    bottom: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: #9b51e0;
    animation-delay: -4s;
}

.bg-gradient-3 {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: #00ff9d;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

/* Enhanced Section Header */
.section-header {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 56px;
    background: linear-gradient(45deg, #fff, #4a90e2, #9b51e0, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #9b51e0);
    border-radius: 2px;
}

.section-title-about {
    font-size: 56px;
    background: linear-gradient(45deg, #fff, #4a90e2, #9b51e0, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title-about::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #9b51e0);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: #aaa;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Features Grid */
.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-image {
    transform: scale(1.15);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .image-overlay {
    opacity: 1;
}

.feature-content {
    padding: 35px;
    position: relative;
}

.feature-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #9b51e0, #00ff9d);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-content::before {
    width: 100%;
}

.feature-icon {
    font-size: 24px;
    color: #fff;
    background: linear-gradient(45deg, #4a90e2, #9b51e0);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.feature-description {
    font-size: 17px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    transform: translateX(8px);
}

.feature-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.feature-link:hover::after {
    transform: translateX(5px);
}

/* Tag Pills */
.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-tag {
    background: rgba(74, 144, 226, 0.2);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 42px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Brand Name Styles */
.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    flex: 1;
}

/* Logo Container Styles */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo-container a{
    margin-right: 0rem;
}


.logo {
    height: 70px;
    width: auto;
}

/* Navigation Links Styles */
.nav-links {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #f1683a;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        align-self: right;
        margin-left: 95%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .logo {
        height: 50px;

    }

    .brand-name {
        display: none;
    }
    .logo-container a{
        height: 50px;
        margin-right: 0rem;
    }
}

/* svg stling */
#floatingSVG {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Below content, above background */
}

@media (max-width: 768px) {
    #floatingSVG {
        display: none;
    }

}

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
    /* Ensures text appears above floating SVGs */
    color: white;
}


.buutons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 2rem;
    gap: 15px;
    z-index: 10;
    /* Adds spacing between buttons */

    /* Modern Styling */
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);

    /* Floating Animation */
    animation: floatButtons 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatButtons {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}


/* Modern Button Styling */
.buutons button {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 242, 254, 0.4);
    position: relative;
    z-index: 7;
}

.buutons a {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 5px 15px rgba(0, 242, 254, 0.4);
    position: relative;
    z-index: 7;
}

/* Button Hover Effect */
.buutons button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    box-shadow: 0px 8px 20px rgba(0, 242, 254, 0.6);
}

.buutons a:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    box-shadow: 0px 8px 20px rgba(0, 242, 254, 0.6);
}



.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 7;
}

.leader-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #a5b4fc, #818cf8) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.leader-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.leader-role {
    color: #a5b4fc;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 7;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(165, 180, 252, 0.3);
}

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

    .header h1 {
        font-size: 2rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}



.success-stories {
    min-height: 100vh;
    position: relative;

}

.success-bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    animation: pulse 8s infinite;
}

.success-bg-1 {
    top: 5%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: #4a90e2;
}

.success-bg-2 {
    bottom: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: #9b51e0;
}

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

.success-title {
    font-size: 56px;
    background: linear-gradient(45deg, #fff, #4a90e2, #9b51e0, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-weight: 800;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.success-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-details h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.client-details p {
    color: #888;
    margin: 5px 0 0;
    font-size: 14px;
}

.success-quote {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.success-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    color: #4a90e2;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.metric-value a {
    color: #4a90e2;
}

.metric-value-ins {
    color: #4a90e2;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;

}

.metric-label {
    color: #888;
    font-size: 14px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .success-title {
        font-size: 36px;
    }

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

/* CSS for the board results section */
.board-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    position: relative;
    cursor: pointer;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 7;
}

.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.result-card:hover img {
    transform: scale(1.1);
}

.result-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-card:hover .result-info {
    transform: translateY(0);
}

.expanded-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expanded-view.active {
    display: flex;
    opacity: 1;
}

.expanded-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.expanded-view.active .expanded-content {
    transform: scale(1);
}

.expanded-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: black;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Brand Section Styles */
.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    display: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: none;
}

.brand-name:hover {
    transform: translateX(5px);
}

/* Logo Container Styles */
.logo-container {
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-divider {
    height: 40px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Navigation Links Styles */
.nav-links {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a5b4fc, #818cf8);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .logo {
        height: 40px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .logo-container {
        transform: translateX(-50%) scale(0.9);
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }

    .brand-name,
    .logo-divider {
        display: none;
    }

    .logo-container {
        left: 70px;
        transform: translateX(0) scale(0.8);
    }
}