* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body,html {
    height: 100%;
    margin: 0;
    background: #071021;
    color: #ffffff;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif
}

header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    z-index: 1400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    width: calc(100% - 40px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 6, 23, 0.45)), to(rgba(2, 6, 23, 0.12)));
    background: -webkit-linear-gradient(top, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.12));
    background: -o-linear-gradient(top, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.12));
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.12));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 12px
}

.logo img {
    height: 44px
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 8px 6px
}

nav .nav-link:after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 6px;
    height: 3px;
    width: 0;
    background: #FF6B6B;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease
}

nav .nav-link:hover:after {
    width: 60%
}

.dropdown {
    position: relative
}

.dropdown:hover .dropdown-menu-custom {
    display: block;
    -webkit-animation: menuIn 0.28s ease;
    animation: menuIn 0.28s ease
}

.dropdown .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 8px 6px;
    background: rgba(2, 6, 23, 0.95);
    border-radius: 10px;
    -webkit-box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
    box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
    display: none
}

.dropdown .dropdown-menu-custom a {
    display: block;
    color: #ffffff;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 8px
}

.dropdown .dropdown-menu-custom a:hover {
    background: rgba(255, 255, 255, 0.05)
}

@-webkit-keyframes menuIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes menuIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

section {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    padding: 4vh 4vw
}

section .section-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    z-index: 0;
    will-change: transform, filter
}

section .bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none
}

section .overlay-green {
    position: absolute;
    inset: 0;
    background:rgb(0 189 200 / 22%);
    z-index: 0;
    pointer-events: none
}

.container-inner {
    position: relative;
    z-index: 6;
    max-width: 1200px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(10px) saturate(120%);
    border-radius: 14px;
    padding: 1.4rem;
    -webkit-box-shadow: 0 8px 36px rgba(2, 6, 23, 0.6);
    box-shadow: 0 8px 36px rgba(2, 6, 23, 0.6)
}
.glass-v2 {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(80px) saturate(120%);
    border-radius: 14px;
    padding: 1.4rem;
    -webkit-box-shadow: 0 8px 36px rgba(2, 6, 23, 0.6);
    box-shadow: 0 8px 36px rgba(2, 6, 23, 0.6)
}


h1,h2,h3 {
    margin: 0.2rem 0 0.6rem
}

p {
    margin: 0 0 0.8rem
}

.dot-nav {
    position: fixed;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem
}

.dot-nav .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease
}

.dot-nav .dot.active {
    background: -webkit-linear-gradient(315deg, #FF6B6B, #FF8E53);
    background: -o-linear-gradient(315deg, #FF6B6B, #FF8E53);
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-color: transparent;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}



.pricing {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px
}

#s11 .socials img {
    width: 40px;
    margin: 20px
}

footer {
    background: #03060c;
    color: #ffffff;
    padding: 36px;
    text-align: center
}

footer img {
    height: 56px
}

footer .socials {
    margin-top: 12px
}

footer .socials a {
    display: inline-block;
    margin: 0 8px;
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none
}

footer .socials a:hover {
    opacity: 1;
    color: #FF6B6B
}

.grad-anim-1 {
    background: -webkit-linear-gradient(315deg, #0f2027ed, #203a43, #2c5364);
    background: -o-linear-gradient(315deg, #0f2027ed, #203a43, #2c5364);
    background: linear-gradient(135deg, #0f2027ed, #203a43, #2c5364);
    -webkit-animation: grad1 10s linear infinite;
    animation: grad1 10s linear infinite
}

.grad-anim-2 {
    background: -webkit-linear-gradient(180deg, #ff996600, #ff5e614f, #ffcc3300);
    background: -o-linear-gradient(180deg, #ff996600, #ff5e614f, #ffcc3300);
    background: linear-gradient(180deg, #ff996600, #ff5e614f, #ffcc3300);
    -webkit-animation: grad2 8s linear infinite;
    animation: grad2 8s linear infinite
}

@-webkit-keyframes grad1 {
    0% {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }

    50% {
        -webkit-filter: hue-rotate(45deg);
        filter: hue-rotate(45deg)
    }

    to {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }
}

@keyframes grad1 {
    0% {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }

    50% {
        -webkit-filter: hue-rotate(45deg);
        filter: hue-rotate(45deg)
    }

    to {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }
}

@-webkit-keyframes grad2 {
    0% {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }

    50% {
        -webkit-filter: hue-rotate(-55deg);
        filter: hue-rotate(-55deg)
    }

    to {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }
}

@keyframes grad2 {
    0% {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }

    50% {
        -webkit-filter: hue-rotate(-55deg);
        filter: hue-rotate(-55deg)
    }

    to {
        -webkit-filter: hue-rotate(0);
        filter: hue-rotate(0)
    }
}

@media (max-width: 551px) {
 

    .portfolio-grid {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    section {
        padding: 3vh 1vw
    }

    .logo img {
        height: 60px
    }

    nav {
        display: none
    }
}
.section-150 {
    height: 150vh
}

.bg-white-50 {
    background-color: #ffffff50
}

.bg-white-75 {
    background-color: #ffffff75
}

.bg-dark-50 {
    background-color: #00000050
}


.portfolio-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.portfolio-grid .portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
    -o-transition: transform 0.3s ease, filter 0.3s ease;
    transition: transform 0.3s ease, filter 0.3s ease;
    transition: transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}

.portfolio-grid .portfolio-item:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1)
}



@media (max-width: 992px) {
    .container-inner {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 1rem
    }

    .portfolio-grid {
        /* -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr); */
    }

    section {
        padding: 6vh 3vw
    }

    .logo img {
        height: 70px
    }

    nav {
        display: none
    }
}


