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

html{
    scroll-behavior: smooth;
    background-color: #195cc7;
    background: radial-gradient(circle, #407ce1 0%, #195cc7 40%, #041b3d 100%);
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle, #407ce1 0%, #195cc7 40%, #041b3d 100%);
    color: white;
    animation: backgroundGradientAnimation 10s infinite;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}
@keyframes backgroundGradientAnimation {

    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }

}


.container {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    z-index: 10;
    width: 100%;
}

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

@font-face 
{
    font-family: 'findel';
    src: url('Findel-Display-Regular.otf');
}
.logo-text {
    font-family: 'findel';
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}


.hide{
    animation: smoothlyHide;
    animation-timeline: view();
}

@keyframes smoothlyHide {
    60% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
}


.tagline {
    font-family: 'findel';
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.45em;
    opacity: 0.9;
    width: 140px;
    height: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.text-wrapper {
    display: block;
    animation: dropText 8s infinite;
}

.text-wrapper span {
    display: block;
    height: 20px; 
}

/* Smooth drop with easing */
@keyframes dropText {
    0%   { transform: translate3d(0, 0, 0); }
    20%  { transform: translate3d(0, 0, 0); }       /* pause on first text */
    25%  { transform: translate3d(0, -20px, 0); }   /* drop to next */
    45%  { transform: translate3d(0, -20px, 0); }   /* pause */
    50%  { transform: translate3d(0, -40px, 0); }   /* next drop */
    70%  { transform: translate3d(0, -40px, 0); }   /* pause */
    75%  { transform: translate3d(0, -60px, 0); }   /* next drop */
    95%  { transform: translate3d(0, -60px, 0); }   /* pause */
    100% { transform: translate3d(0, 0, 0); }       /* loop back */
}



.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16rem;
    position: relative;
    min-height: 70vh;
    margin-top: 100px; 
}

.content-left {
    z-index: 10;
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    opacity: 1;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.main-heading {
    font-size: 3.7rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-wrap: nowrap;
    font-family: 'findel';
}



.world-defining {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    opacity: 0.7;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 400px;
    height: 400px;
}

.floating-elements img{
    filter: brightness(1.2) contrast(1.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(var(--rotation, 0deg));
        filter: brightness(1.2) contrast(1.1);
    }
    50% {
        transform: translate3d(0, -10px, 0) rotate(var(--rotation, 0deg));
        filter: brightness(1) contrast(1.1);
    }
}




.bottom-nav {
    padding: 2rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top:-05%;
    z-index: 10;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 12px 24px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    border-radius: 40px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}


.nav-menu li .active a {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-elements {
        right: 5%;
        width: 300px;
        height: 300px;
    }
    
    .cube {
        width: 60px;
        height: 60px;
    }
    
    .cube-2, .cube-5 {
        width: 40px;
        height: 40px;
    }
    
    .cube-3 {
        width: 50px;
        height: 50px;
    }
    
    .cube-4 {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
        top:0;
        left:0;
        right: 0;
    }
    
    .main-content {
        padding: 0 2rem;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .floating-elements {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 2rem;
        width: 250px;
        height: 200px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 25px;
        padding: 6px;
    }
    
    .nav-menu a {
        padding: 10px 16px;
        font-size: 0.45rem;
    }
    
    .bottom-nav {
        padding: 1.5rem 2rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text{
        font-size: 1.2rem;
    }
    .header {
        gap: 1.5rem;
        text-align: center;
    }
    .nav-menu{
        flex-wrap: nowrap;
    }
    
    .bottom-nav{
        position: fixed;
        top: 2%;
        left: 0;
        right: 0;
    }
    .main-heading {
        font-size: 1.5rem;
    }
    .main-content{
        text-align: center;
        justify-content: center;
    }
    
}

.mission-section{
    height: 600px;
}

/* About Section Styles */
.about-section {
    min-height: 100vh;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

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

.about-header {
    text-align: center;
    margin-bottom: 6rem;
}

.about-title {
    font-family: 'findel';
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-main {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
}

.about-description:last-child {
    margin-bottom: 0;
}

.about-stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translate3d(0, -5px, 0);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: 'findel';
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-services {
    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

.services-title {
    font-family: 'findel';
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.about-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'findel';
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Floating Elements */
.about-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation: floatSlow 8s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate3d(10px, -20px, 0);
        opacity: 0.6;
    }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-container {
        padding: 0 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-header {
        margin-bottom: 3rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-main,
    .about-stats,
    .about-services,
    .about-cta {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .floating-circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-menu{
        backdrop-filter: blur(2px);
    }
    .about-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        gap: 0.5rem;
    }
    
    .service-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}
.popinside{
    animation: popIn both;
    animation-timeline: view();
}


@keyframes popIn {
   from{
       transform: translate3d(0, -200px, 0) scale(0.3);
       opacity: 0;
   }
   to{
       transform: scale(1) translate3d(0, 0, 0);
       opacity: 1;
   }
}

