* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: white;
    overflow-x: hidden;
}

.navbar {
    position: fixed; /* Make it fixed so it stays on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(128, 0, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
    z-index: 1000;
}

.logo img {
    width: 150px;
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}
        
.link:hover,
.link.active,
.search-icon:hover {
    color: #d800d8;
}
        
.search-icon {
    color: white;
    font-size: 15px;
    cursor: pointer;
}

/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1; /* Behind navbar */
    overflow: hidden;
    box-shadow:  0px 60px 250px #800080;
}
        
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind hero content */
}
        
.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
}
        
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
}
 
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 9s ease-in-out infinite;
}

.slide1 {
    animation-delay: 0s;
}

.slide2 {
    animation-delay: 3s;
}

.slide3 {
    animation-delay: 6s;
}

@keyframes fade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    30%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-content {
    position: absolute;
    z-index: 2; /* In front of background */
    max-width: 1159px;
    top: 200px;
    left: 120px;
}
        
.hero-titles {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 90px;
    line-height: 1.1;
}
        
.hero-title-white {
    color: white;
    display: block;
    white-space: nowrap;
}
        
.hero-title-purple {
    color: #d800d8;
    display: block;
    white-space: nowrap;
}



/* Main Content */
.main-content {
    padding-bottom: 20px;
}
        
/* Services Section */
.services {
    position: relative;
    width: 100%;
}
        
.services-container {
    max-width: 1700px;
    margin: 0 auto;
}

.section-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 45px;
    text-align: center;
    padding: 10px;
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 30px;
    padding-bottom: 10px;
    text-align: center;
}
        
.services-scroll {
    overflow-x: auto;
    padding-bottom: 20px;
    padding-top: 30px;
    margin-bottom: 20px;
    padding-left: 95px;
    padding-right: 95px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.services-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.services-row {
    display: flex;
    gap: 20px;
    min-width: fit-content;
}
        
.service-card {
    position: relative;
    width: 350px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    background-color: #d800d8;
    z-index: 2;
}

.service-content {
    position: absolute;
    left: 15px;
    bottom: 90px;
    width: 350px;
}
        
.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 5px;
}
        
.service-discover {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 20px;
    text-decoration: underline;
    cursor: pointer;
} 



/* Process Section */
.process {
    width: 100%;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
        
.process-steps {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding: 0 90px;
}
        
.process-step {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 135px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
    
.process-icon {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
}

.fa-user, 
.fa-comment, 
.fa-pencil-ruler,
.fa-code, 
.fa-vial,
.fa-rocket,
.fa-handshake{
    font-size: 35px;
    color: #ffffff;
}


.process-step:hover .process-icon, .process-title {
    transform: scale(1.1);
}

.process-step:hover .process-title {
    color: #d800d8;
}

.process-step:hover .fa-user {
    color: #d800d8;
}

.process-step:hover .fa-comment {
    color: #d800d8;
}

.process-step:hover .fa-pencil-ruler {
    color: #d800d8;
}

.process-step:hover .fa-code {
    color: #d800d8;
}

.process-step:hover .fa-vial {
    color: #d800d8;
}

.process-step:hover .fa-rocket{
    color: #d800d8;
}

.process-step:hover .fa-handshake{
    color: #d800d8;
}




/* CTA Section */
.cta-section {
    text-align: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.3), rgba(216, 0, 216, 0.3));
}
        
.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 35px;
    color: white;
    margin-bottom: 20px;
}
        
.cta-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
        
.cta-btn {
    background: linear-gradient(150deg, #800080, #d800d8);
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
        
.cta-btn:hover {
    transform: scale(1.05);
}



/* Footer */
.footer {
    background: rgb(128, 0, 128, 0.2);
    padding: 12px 0;
    text-align: center;
}
        
.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #cccccc;
}



/* ------------------------
   KEYFRAMES
------------------------- */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeftTop {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideInRightTop {
    0% {
        opacity: 0;
        transform: translate(100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* ------------------------
   ANIMATION CLASSES
------------------------- */

/* For text line stagger effect */
.animate-line {
    opacity: 0;
    animation: fadeSlideUp 1s ease-in forwards;
}
.delay-0 { animation-delay: 0.2s; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 0.8s; }

/* Scroll animation base */
.scroll-animate {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: transform, opacity;
}

/* Animate from LEFT */
.animate-left { transform: translateX(-100px, -100px); }
.animate-left.in-view {
    opacity: 1;
    transform: translate(0 0);
}

/* Animate from RIGHT */
.animate-right { transform: translateX(100px, -100px); }
.animate-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animate from TOP */
.animate-top { transform: translateY(-100px); }
.animate-top.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Animate from BOTTOM */
.animate-bottom { transform: translateY(100px); }
.animate-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}







/* ============================= */
/* Responsive Design Starts Here */
/* ============================= */

/* --- Tablet (768px and below) --- */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
        height: 55px;
    }

    .logo img {
        width: 130px;
        height: 45px;
    }

    nav {
        gap: 25px;
    }

    .link {
        font-size: 14px;
    }

    .hero {
        height: 100vh;
        box-shadow: 0px 40px 200px #800080;
    }

    .hero-content {
        top: 250px;
        left: 70px;
    }

    .hero-titles {
        font-size: 80px;
        line-height: 1.1;
    }

    .hero-title-white,
    .hero-title-purple {
        white-space: normal; /* allow wrapping */
    }

    
    .section-title{
        font-weight: 775;
        font-size: 40px;
    }

    .subsection-title {
        font-weight: 750;
        font-size: 27px;
        padding-bottom: 10px;
    }
        
    .services-scroll {
        padding-left: 40px;
        padding-right: 40px;
    }
        
    .service-card {
        position: relative;
        width: 300px;
        height: 450px;
        border-radius: 30px;
    }

    .service-content {
        position: absolute;
        left: 15px;
        bottom: 50px;
        width: 285px;
    }
        
    .service-title {
        font-weight: 750;
    }
        
    .service-discover {
        font-weight: 700;
    } 

    .process-steps {
        width: 100%;
        gap: 30px;
        padding: 0 30px;
    }
    
    .process-icon {
        width: 70px;
        height: 35px;
        padding-bottom: 10px;
    }

    .process-title {
        font-size: 15px;
   




    }

    /* Footer */
    .footer {
        padding: 12px 0;
    }
        
    .footer-text {
        font-size: 15px;
    }


}

/* --- Mobile (768px and below) --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 55px;
        right: -100%;
        width: 40%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.85);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    .link {
        font-size: 18px;
        font-weight: 700;
    }

    .search-icon {
        font-size: 20px;
    }

    .navbar {
        padding: 0 30px;
    }

    .hero {
        height: 100vh;
    }

    .hero-content {
        top: 250px;
        left: 35px;
        right: 35px;
        max-width: 100%;
    }

    .hero-titles {
        font-size: 53px;
        line-height: 1.2;
    }

    .hero-title-white,
    .hero-title-purple {
        display: block;
        white-space: normal;
    }
    
    .section-title{
        font-weight: 750;
        font-size: 40px;
    }

    .subsection-title {
        font-weight: 700;
        font-size: 25px;
        padding-bottom: 10px;
    }
        
    .services-scroll {
        padding-left: 30px;
        padding-right: 30px;
    }
        
    .service-card {
        position: relative;
        width: 300px;
        height: 450px;
        border-radius: 30px;
    }

    .service-content {
        position: absolute;
        left: 15px;
        bottom: 50px;
        width: 285px;
    }
        
    .service-title {
        font-weight: 750;
    }
        
    .service-discover {
        font-weight: 700;
    } 

    .process-steps {
        width: 100%;
        gap: 30px;
        padding: 0 30px;
    }
    
    .process-icon {
        width: 30px;
        height: 20px;
        padding-bottom: 20px;
    }

    .process-title {
        font-size: 10px;
    }
  
    .fa-user, 
    .fa-comment, 
    .fa-pencil-ruler,
    .fa-code, 
    .fa-vial,
    .fa-rocket,
    .fa-handshake{
        font-size: 20px;
        color: #ffffff;
    }

    .cta-section {
        padding: 20px 20px;  
    }
        
    .cta-title {
        font-weight: 750;
        font-size: 25px;
        margin-bottom: 10px;
    }
        
    .cta-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
        
    .cta-btn {
        font-size: 12px;
    }

     /* Footer */
    .footer {
        padding: 12px 0;
    }
        
    .footer-text {
        font-size: 12px;
    }
   
}
