/* =========================================
   GLOBAL
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-weight: 700;
}

.card {
    overflow: hidden;
}

.btn {
    border-radius: 50px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar,
.custom-navbar {
    background: #fff;
}

.custom-navbar {
    top: 0;
    z-index: 99999;
}

.navbar-glass {

    backdrop-filter: blur(20px);

    background:
        rgba(255, 255, 255, .92);

    border-bottom:
        1px solid rgba(0, 0, 0, .06);

    transition: .4s;
}

.navbar {

    padding: 16px 0;
}

.navbar-brand {

    font-size: 1.25rem;
    font-weight: 800;
}

.nav-link {

    position: relative;

    font-weight: 600;

    margin-left: 15px;
}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #0d6efd;

    transition: .3s;
}

.nav-link:hover::after {

    width: 100%;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.brand-text {

    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-title {

    font-size: 1.2rem;
    font-weight: 800;
}

.brand-subtitle {

    letter-spacing: 3px;

    color: #0d6efd;

    font-size: .65rem;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
}

/* .hero-content {
    position: relative;
    z-index: 2;

    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */
.hero-content {

    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 1000px;

    animation: fadeUp 1.2s ease;
}

.hero-bg-img {
    width: 100%;
    height: 100vh;

    object-fit: cover;

    filter: blur(2px) brightness(.6);

    animation: zoomEffect 12s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .65);

    z-index: 1;
}

.hero-logo {
    width: 170px;
    margin-bottom: 20px;
}

.hero-content h1 {
    text-shadow: 0 3px 20px rgba(0, 0, 0, .4);
}

.hero-content p {
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;

    text-shadow: 0 4px 15px rgba(0, 0, 0, .8);
}

.hero-desc {
    margin-top: 10px;

    font-size: 1.4rem;
    font-weight: 600;

    text-shadow: 0 3px 10px rgba(0, 0, 0, .8);
}

.carousel-caption-custom {
    position: absolute;

    bottom: 25%;
    left: 10%;
    right: 10%;

    max-width: 800px;
    margin: auto;

    z-index: 5;
}

.carousel-item {
    transition:
        transform 2s ease-in-out,
        opacity 2s ease-in-out !important;
}

@keyframes zoomEffect {

    0%,
    100% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.15);
    }
}
/* TECHNOLOGY BADGE */

.hero-badge {
    display: inline-block;

    padding: 10px 22px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .1);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .2);

    font-weight: 600;

    letter-spacing: .5px;
}

/* MAIN HEADING */

/* .hero-heading {
    font-size: 4.5rem;
    font-weight: 800;

    line-height: 1.1;

    max-width: 1000px;

    text-shadow: 0 5px 25px rgba(0, 0, 0, .4);
} */
.hero-heading {

    font-size: 5rem;
    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;

    text-shadow:
        0 10px 30px rgba(0, 0, 0, .35);
}

.hero-heading span {

    display: block;

    background:
        linear-gradient(90deg,
            #0d6efd,
            #4cc9f0,
            #7dd3fc);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {

    max-width: 800px;

    margin: auto;

    font-size: 1.25rem;

    line-height: 1.9;

    color: #e2e8f0;
}

/* BUTTONS */
.hero-buttons {

    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn {

    border-radius: 60px;

    padding: 14px 32px;

    font-weight: 700;

    transition: .35s;
}

.hero-buttons .btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(13, 110, 253, .4);
}

.hero-buttons .btn-outline-light:hover {

    transform: translateY(-4px);
}
.hero-grid {

    position: absolute;
    inset: 0;

    z-index: 2;

    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px);

    background-size: 50px 50px;

    animation: gridMove 15s linear infinite;
}

@keyframes gridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(50px);
    }
}
.hero-glow {

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(13, 110, 253, .25),
            transparent 70%);

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    z-index: 1;
}

/* TECH TAGS */

.hero-tags {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-tags span {

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .15);

    font-size: .9rem;
}



/* RESPONSIVE */

@media(max-width:768px) {

    .hero-heading {
        font-size: 2.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {

        margin-top: 60px;

        display: flex;
        justify-content: center;
        gap: 80px;   }
}
/* =========================
   FLOATING CARDS
========================= */
.floating-card {

    position: absolute;

    z-index: 8;

    padding: 14px 22px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .15);

    color: white;

    font-weight: 600;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .2);

    animation:
        floatCard 6s ease-in-out infinite;
}

.card-one {
    left: 7%;
    top: 25%;
}

.card-two {
    right: 7%;
    top: 35%;
}

.card-three {
    left: 12%;
    bottom: 20%;
}
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* =========================
   TECH STACK
========================= */

.hero-tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tech-pill {
    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .15);

    color: white;

    font-size: .9rem;

    transition: .3s;
}

.tech-pill:hover {
    transform: translateY(-3px);
    background: rgba(13, 110, 253, .25);
}

/* =========================
   STATS
========================= */

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item h3 {
    color: #4cc9f0;

    font-weight: 800;

    margin-bottom: 0;
}

.stat-item span {
    color: #cbd5e1;
}

/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);
}

.scroll-indicator span {

    display: block;

    width: 25px;
    height: 45px;

    border: 2px solid white;

    border-radius: 20px;

    position: relative;
}

.scroll-indicator span::before {

    content: "";

    position: absolute;

    top: 8px;
    left: 50%;

    width: 4px;
    height: 8px;

    border-radius: 10px;

    background: white;

    transform: translateX(-50%);

    animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {

    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}
/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    background: #ffffff;
}

.about-image-wrapper {
    display: inline-block;
    position: relative;
}

.about-logo {
    max-width: 320px;

    transition:
        transform .5s ease,
        filter .5s ease;

    animation: logoFloat 4s ease-in-out infinite;
}

.about-logo:hover {
    transform: scale(1.08) rotate(2deg);

    filter:
        drop-shadow(0 0 20px rgba(13, 110, 253, .5)) drop-shadow(0 0 40px rgba(13, 110, 253, .3));
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
}

.about-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-feature {
    background: #f8fafc;

    padding: 15px 20px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;
}

.about-feature:hover {
    background: #e7f1ff;

    transform: translateY(-3px);
}

.stat-box h3 {

    color: #4cc9f0;

    font-size: 2rem;
    font-weight: 800;
}

.stat-box span {

    color: #cbd5e1;
}

@media(max-width:768px) {

    .about-title {
        font-size: 2rem;
    }

}

/* =========================================
   SERVICES
========================================= */
.services-section {
    background: linear-gradient(to bottom,
            #f8fafc,
            #ffffff);
}

.section-badge {
    display: inline-block;

    padding: 8px 18px;

    background: #e7f1ff;

    color: #0d6efd;

    border-radius: 50px;

    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;

    color: #6c757d;
}

.service-card {
    background: white;

    border-radius: 25px;

    overflow: hidden;

    transition: .4s;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

.service-image-wrapper {
    padding-top: 30px;
}

.service-img {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    object-fit: cover;

    border: 6px solid #0d6efd;

    box-shadow:
        0 10px 30px rgba(13, 110, 253, .25);
}

.service-card h4 {
    margin-top: 15px;
}
/* =========================================
   PROJECTS
========================================= */

.projects-section {
    background: #f8fafc;
}

.project-showcase {
    position: relative;

    height: 350px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;
}

.project-showcase:hover {
    transform: translateY(-10px);
}

.project-showcase-img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.project-showcase:hover .project-showcase-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(2, 6, 23, .95),
            rgba(2, 6, 23, .2));

    display: flex;
    align-items: flex-end;

    padding: 25px;

    transition: .4s;
}

.project-content {
    color: white;

    transform: translateY(40px);

    opacity: .8;

    transition: .4s;
}

.project-showcase:hover .project-content {
    transform: translateY(0);
    opacity: 1;
}

.project-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.project-content p {
    color: #d1d5db;
    font-size: .95rem;
}

/* =========================================
   CONTACT
========================================= */

#contact {
    background: #f8f9fa;
}

#contact .card {
    border-radius: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

input,
textarea,
select {
    width: 100%;
}

/* =========================================
   FOOTER
========================================= */
.footer-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .08);

    background:
        linear-gradient(135deg,
            #020617,
            #071326,
            #0b1120);

    color: #fff;
}
.footer-section::marker {
    display: none;
}
.footer-section::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-250px;
    top:-250px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(13,110,253,.25),
            transparent 70%
        );
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(13, 110, 253, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, .05) 1px, transparent 1px);

    background-size: 40px 40px;

    animation: gridMove 25s linear infinite;

    z-index: 0;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section h3 {

    position: relative;

    padding-bottom: 12px;
}

.footer-section h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 40px;
    height: 3px;

    background: #0d6efd;
}
.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, .1);

    text-align: center;
}

.footer-section p {
    color: #cbd5e1;
}

.footer-section .border-top {
    border-color: rgba(255, 255, 255, .3) !important;
}

.footer-link {
    color: #fff !important;
    transition: .3s;
}

.footer-link:hover {
    color: #0d6efd !important;
    padding-left: 5px;
}

.footer-particles {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;
}

.footer-particles span {
    position: absolute;
    bottom: -50px;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: #0d6efd;

    opacity: .3;

    animation: floatParticle linear infinite;
}

.footer-particles span:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
}

.footer-particles span:nth-child(2) {
    left: 30%;
    animation-duration: 12s;
}

.footer-particles span:nth-child(3) {
    left: 50%;
    animation-duration: 10s;
}

.footer-particles span:nth-child(4) {
    left: 70%;
    animation-duration: 14s;
}

.footer-particles span:nth-child(5) {
    left: 90%;
    animation-duration: 9s;
}
.scroll-top {

    position: fixed;

    bottom: 100px;
    right: 30px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #0d6efd;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999;

    text-decoration: none;

    transition: .3s;
}

.scroll-top:hover {

    transform: translateY(-5px);

    color: white;
}
@keyframes floatParticle {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-400px);
        opacity: 0;
    }
}

@keyframes gridMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}
.social-icons {

    display: flex;
    gap: 15px;
}

.social-icons a {

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    color: white;

    font-size: 20px;

    transition: .35s;
}

.social-icons a:hover {

    background: #0d6efd;

    transform:
        translateY(-5px);
}
.footer-newsletter {
    max-width: 700px;
    margin: 0 auto 70px;

    padding: 35px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .05);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(255, 255, 255, .08);
}

.newsletter-form {

    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, .08);

    color: white;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 50px;

    padding: 14px 20px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .6);
}
.footer-section .container::before {
    content: "";

    position: absolute;

    top: -40px;
    left: 50%;

    transform: translateX(-50%);

    width: 300px;
    height: 2px;

    background: #0d6efd;

    box-shadow:
        0 0 15px #0d6efd,
        0 0 30px #0d6efd;
}

/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-float {
    position: fixed;

    width: 60px;
    height: 60px;

    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;
    color: #fff;

    text-decoration: none;
    font-size: 30px;

    z-index: 1000;

    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);

    transition: .3s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #fff;

    transform: scale(1.1);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .hero-logo {
        width: 140px;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    .hero-logo {
        width: 110px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .carousel-caption-custom {
        bottom: 20%;
        left: 5%;
        right: 5%;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {

    .hero-logo {
        width: 85px;
    }

    .hero-section .lead {
        font-size: .9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =========================================
   CALL TO ACTION
========================================= */

.cta-section {
    background: linear-gradient(135deg,
            #0f172a,
            #1e3a8a,
            #0d6efd);

    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(255, 255, 255, .15),
            transparent 35%);

    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    color: white;
}

.cta-badge {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    font-size: .9rem;
    font-weight: 600;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
}

.cta-text {
    margin-top: 20px;

    font-size: 1.15rem;
    color: rgba(255, 255, 255, .85);

    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: 12px 30px;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
}

.cta-section .btn-outline-light:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}
@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dark-mode {
    background: #020617;
    color: white;
}

.dark-mode section {
    background: #020617 !important;
    color: white !important;
}

.dark-mode .card {
    background: #0f172a;
    color: white;
}

.dark-mode .navbar {
    background: #020617 !important;
}

.dark-mode .nav-link {
    color: white !important;
}
.flux-toggle{
    width:48px;
    height:48px;
    /* border-radius:14px;
    border:1px solid rgba(255,255,255,.15); */
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:none;
    outline:none;
    box-shadow:none;
    color:#4dabff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.35s ease;
}

.flux-toggle:hover{
    color:#fff;
    background:linear-gradient(
        135deg,
        #0d6efd,
        #00b4ff
    );
    transform:translateY(-2px);
    /* box-shadow:
        0 0 20px rgba(13,110,253,.4),
        0 0 40px rgba(0,180,255,.2); */
}

.flux-toggle i{
    font-size:1.15rem;
}