.intro-bottom-rounder::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #000000 !important;
    border-bottom-right-radius: 40px;
    z-index: 0;
}

.intro-top-rounder::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: #f3f4f6!important;
    border-top-left-radius: 40px;
}

.setp-shape-forward{
    clip-path: polygon(0% 0%, 94% 0, 100% 50%, 94% 100%, 0% 100%);
}
.setp-shape-backward{
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 6% 50%);
}
.setp-shape-both{
    clip-path: polygon(50% 0%, 94% 0, 100% 50%, 94% 100%, 0 100%, 6% 50%, 0 0);
}

@media screen  and (max-width:750px){
    .hero-wrapper{
        height: 100dvh !important;
        && .landing-img{
            height: 100dvh;
            object-fit: cover;
            object-position: center;
        }
    }
}

.modules-head-wrapper {
    clip-path: polygon(0 0, 100% 0%, 100% 86%, 0% 100%);
}
.modules-head-wrapper-faded {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
}
.modules-head-wrapper-faded-2 {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
}



/* landfingpage styles */

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif; 
}


.gradient-bg { 
    background: linear-gradient(135deg, #1b0a40 0%, #085 100%);
    position: relative;
    overflow: hidden;
}

.hero-svg-1, .hero-svg-2 { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.hero-content { position: relative; z-index: 10; }
.module-card:hover .module-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
#mainNav {
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}
#mainNav.scrolled {
    background-color: white;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
#mainNav .nav-logo-dark { display: none; }
#mainNav .nav-logo-light { display: block; }
#mainNav.scrolled .nav-link { color: #374151; }
#mainNav.scrolled .nav-link:hover { color: #085; }
#mainNav.scrolled .nav-cta { background-color: #085; color: white; }
#mainNav.scrolled .nav-cta:hover { background-color: #0a6; }
#mainNav.scrolled .nav-logo-dark { display: block; }
#mainNav.scrolled .nav-logo-light { display: none; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.floating-element {
    animation: float 6s ease-in-out infinite;
}
    /* hover animation */
.nav-link:hover {
    transform: translateY(-2px);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 91, 68, 0.3);
}

#mainNav.scrolled .nav-link:hover {
    color: #085;
}

#mainNav.scrolled .nav-link span:last-child {
    background: #085;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #085;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: #0a6;
    transform: translateY(-3px);
}