* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'montextralight_demo';
    scroll-behavior: smooth;
}

body{
    background-color:#191919;
    overflow-x: hidden; 
}

/* section one */
.one {
    background-image: url('../images/background-shadow.svg');
    display: flex;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 0 15px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
    padding-top: 90px;
    width: 100%;
}

.content h1 {
    color: white;
    font-weight: 300;
    font-size: 3.8rem;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.content h1 .dimensions {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.title-button {
    background: rgb(136, 136, 136);
    color: white;
    padding: 10px 50px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0px -4px 52px 0px #ded5e61f inset;
    backdrop-filter: blur(12px);
    z-index: 1;
    width: 210px;
    white-space: nowrap;
}

.content p {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
    font-weight: 400;
}

.get-start-btn {
    background: #FFFFFF;
    color: #000000;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.get-start-btn:hover {
    transform: translateY(-1px);
}

.connector{
    margin-top: 50px;
    max-width: 100%;
    height: auto;
}

.content > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.content > *:nth-child(1) { animation-delay: 0.2s; }
.content > *:nth-child(2) { animation-delay: 0.4s; }
.content > *:nth-child(3) { animation-delay: 0.6s; }
.content > *:nth-child(4) { animation-delay: 0.8s; }
.content > *:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.dimensions {
    background: linear-gradient(135deg, #1EE0E1, #D49EFF, #1EE0E1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Title button hover animation */
.title-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.title-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(119, 133, 133, 0.1), transparent);
    transition: left 0.6s ease;
}

.title-button:hover::before {
    left: 100%;
}

.title-button:hover {
    transform: translateY(-2px);
}  

.get-start-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    color: #333;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #666, #999);
    transition: left 0.3s ease;
    z-index: -1;
}

.get-start-btn:hover::before {
    left: 0;
}

.get-start-btn:hover {
    color: white;
    border-color: #333;
}

/* Section Two Animations */
.content-two.animate > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.content-two.animate > *:nth-child(1) { animation-delay: 0.1s; }
.content-two.animate > *:nth-child(2) { animation-delay: 0.3s; }
.content-two.animate > *:nth-child(3) { animation-delay: 0.5s; }
.content-two.animate > *:nth-child(4) { animation-delay: 0.7s; }
.content-two.animate > *:nth-child(5) { animation-delay: 0.9s; }

/* section two */
.two{
    display: flex;
    justify-content: center;
    margin: 20px 0px;
    padding: 0 15px;
}

.content-two{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
    padding-top: 80px;
    position: relative;
    width: 100%;
}

.content-two p{
    color: #CCCCCC;
    font-size: 20px;
    line-height: 1.6;
    margin-top: 30px;
    z-index: 1;
}

.content-two .section2-img1{
    width: 600px;
    max-width: 100%;
    position: absolute;
    top: 20%;
    z-index: 0;
}

.content-two .section2-img2{
    position: absolute;
    top: 25%;
    width: 200px;
    max-width: 40%;
}

.connector:nth-child(2){
    margin-top: 60px;
}

.section2-img2 {
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* section three */
.three{
    margin-top: 20px;       
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/section3-back.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    margin-bottom: 100px;
    padding: 0 15px;
}

.three-content{
    padding: 50px 0px;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.three-content img{
    width: 900px;
    max-width: 100%;
    height: auto;
    margin-top: 65px;
}


.floating-p {
            position: absolute;
            top: 55%;
            left: 49%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .decorated-text {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 25%, #b0b0b0 50%, #808080 75%, #404040 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

        .decoratd-span {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 25%, #b0b0b0 50%, #808080 75%, #404040 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .decorated-text,
            .decoratd-span {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .decorated-text,
            .decoratd-span {
                font-size: 1.2rem;
            }
        }

       
.three-content.animate img {
    animation: scaleIn 1s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-p.animate p {
    animation: fadeIn 1.2s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* section four */
.four{
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 15px;
}

.four-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    padding: 200px 20px;
    width: 100%;
}

.four-content img{
    position: absolute;
    top: 0px;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.four-content p{
    color: #CCCCCC;
    font-size: 20px;
    line-height: 1.6;
    z-index: 1;
}

/* section five */
.five {
    display: flex;
    justify-content: center;
    margin: 20px 0px;
    padding: 0 15px;
}

.five-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    padding-top: 80px;
    position: relative;
    width: 100%;
}

.five-content p {
    color: #CCCCCC;
    font-size: 20px;
    line-height: 1.6;
    margin-top: 30px;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.teams-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.team-member {
    width: 200px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Staggered animation for team members */
.team-member:nth-child(1) { animation: slideInScale 0.6s ease-out 1.0s forwards; }
.team-member:nth-child(2) { animation: slideInScale 0.6s ease-out 1.2s forwards; }
.team-member:nth-child(3) { animation: slideInScale 0.6s ease-out 1.4s forwards; }
.team-member:nth-child(4) { animation: slideInScale 0.6s ease-out 1.6s forwards; }
.team-member:nth-child(5) { animation: slideInScale 0.6s ease-out 1.8s forwards; }
.team-member:nth-child(6) { animation: slideInScale 0.6s ease-out 2.0s forwards; }

/* Hover effects */
.team-member:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes slideInScale {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* RESPONSIVE MEDIA QUERIES */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .content h1 {
        font-size: 3.2rem;
    }
    
    .content-two .section2-img1 {
        width: 500px;
    }
    
    .content-two .section2-img2 {
        width: 160px;
    }
    
    
    
    .teams-container {
        gap: 40px;
    }
    
    .team-member {
        width: 180px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .content {
        padding-top: 60px;
        gap: 24px;
    }
    
    .content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .title-button {
        width: 180px;
        padding: 8px 40px;
        font-size: 11px;
    }
    
    .get-start-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .ContactUs {
        margin-top: 15px;
        display: inline-block;
    }
    
    /* Section two responsive */
    .content-two {
        padding-top: 60px;
    }
    
    .content-two p {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .content-two .section2-img1 {
        width: 400px;
        top: 15%;
    }
    
    .content-two .section2-img2 {
        width: 120px;
        top: 20%;
    }
    
    /* Section three responsive */
    .three {
        margin-bottom: 60px;
    }
    
    .three-content {
        padding: 30px 0px;
    }
    
    .three-content img {
        width: 500px;
        margin-top: 40px;
    }
    
    .floating-p p {
        font-size: 1rem;
    }
    
    /* Section four responsive */
    .four-content {
        padding: 150px 20px;
    }
    
    .four-content p {
        font-size: 18px;
    }
    
    /* Section five responsive */
    .five-content {
        padding-top: 40px;
    }
    
    .five-content p {
        font-size: 18px;
    }
    
    .team-member {
        width: 150px;
    }
    
    .teams-container {
        gap: 30px;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .content {
        padding: 40px 15px 0;
        gap: 20px;
    }
    
    .content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .title-button {
        width: 160px;
        padding: 8px 30px;
        font-size: 10px;
    }
    
    .get-start-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .connector {
        margin-top: 30px;
    }
    
    /* Section two mobile */
    .content-two {
        padding-top: 40px;
        gap: 20px;
    }
    
    .content-two p {
        font-size: 16px;
        margin-top: 15px;
    }
    
    .content-two .section2-img1 {
        width: 300px;
        top: 10%;
    }
    
    .content-two .section2-img2 {
        width: 100px;
        top: 15%;
    }
    
    /* Section three mobile */
    .three {
        margin-bottom: 40px;
    }
    
    .three-content {
        padding: 20px 0px;
    }
    
    .three-content img {
        margin-top: 30px;
    }
    
    .floating-p p {
        font-size: 0.9rem;
    }
    
    /* Section four mobile */
    .four-content {
        padding: 100px 15px;
    }
    
    .four-content p {
        font-size: 16px;
    }
    
    /* Section five mobile */
    .five-content {
        padding-top: 30px;
        gap: 20px;
    }
    
    .five-content p {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .team-member {
        width: 120px;
    }
    
    .teams-container {
        gap: 20px;
        justify-content: space-around;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .content h1 {
        font-size: 1.8rem;
    }
    
    .content p {
        font-size: 0.9rem;
    }
    
    .title-button {
        width: 140px;
        padding: 6px 20px;
        font-size: 9px;
    }
    
    .get-start-btn {
        padding: 6px 12px;
        font-size: 9px;
    }
    
    .content-two p,
    .four-content p,
    .five-content p {
        font-size: 14px;
    }
    
    .content-two .section2-img1 {
        width: 250px;
    }
    
    .content-two .section2-img2 {
        width: 80px;
    }
    
    
    .team-member {
        width: 100px;
    }
    
    .teams-container {
        gap: 15px;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .content {
        padding-top: 30px;
        gap: 15px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .connector {
        margin-top: 20px;
    }
    
    .three-content {
        padding: 15px 0px;
    }
    
    .three-content img {
        margin-top: 20px;
    }
    
    .four-content {
        padding: 80px 15px;
    }
}