/* NAVBAR */
.navbar{
    position:absolute;
    top:25px;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(20px);
    border-radius:70px;
    padding:2px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo img{
    width:130px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:black;
    font-weight:500;
}

.nav-contact{
    display:flex;
    gap:20px;
}

.nav-contact a{
    color:black;
    text-decoration:none;
    font-size:14px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    color:black;
    font-size:18px;
}

/* HAMBURGER */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:black;
    border-radius:10px;
    transition:.4s;
}
@media(max-width:992px){

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:80%;
        background:white;
        border-radius:30px;
        margin-top:15px;
        padding:30px;
        flex-direction:column;
        gap:25px;

        opacity:0;
        visibility:hidden;
        transform:translateY(-20px);

        transition:.4s;
    }

    .nav-menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .nav-contact{
        flex-direction:column;
        align-items:center;
    }

    .social-icons{
        justify-content:center;
    }
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    color:rgb(2, 2, 2);
    font-size:18px;
}

.social-icons a:hover{
    opacity:.8;
    color: #000;
}

/* .hero-gradient {
    background: linear-gradient(
        90deg,
        #dd8706,
        #e0381b,
        #630bf0,
        #4b4bc7,
        #f12e0b
    ); */

    /* background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    display: inline-block; 
}*/

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:999px;

    background:rgba(0,0,0,.75);

    color:white;
    font-weight:600;

    backdrop-filter:blur(10px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.25);

    transition:.4s ease;
}

.hero-btn:hover{
    transform:translateY(-5px);
    background:black;
}

.social-icon{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    color:white;

    transition:.4s ease;
}

.social-icon:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.2);
}
.conicorn-btn{
    position:relative;

    width:260px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    background:white;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.4);
}

.btn-text{
    position:absolute;

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.5s ease;
}

/* Top text */
.top{
    background:white;

    background-image:linear-gradient(
        90deg,
        #360c8f,
        #e4ac45,
        #941a05,
        #1384e9,
        #4b4bc7
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    top:0;
}

/* Bottom text */
.bottom{
    background:black;
    color:white;

    top:100%;
}

/* Hover */
.conicorn-btn:hover .top{
    top:-100%;
}

.conicorn-btn:hover .bottom{
    top:0;
}

.conicorn-btn:hover{
    border:1px solid white;
}

@media(max-width:992px){

    .hero-gradient{
        font-size:4rem !important;
    }

}

@media(max-width:768px){

    .hero-gradient{
        font-size:3rem !important;
        line-height:1.2;
    }

    .relative.z-10{
        padding-top:180px;
    }

}

@media(max-width:576px){

    .hero-gradient{
        font-size:2.2rem !important;
    }

    .relative.z-10 p{
        font-size:16px !important;
    }

    .conicorn-btn{
        width:220px;
        height:58px;
    }

}

/* client section */

.clients-section{
    position:relative;
    overflow:hidden;

    padding:10px 0;
    background:#d9d9d9;
}

.clients-container{
    position:relative;
}

.clients-badge{
    width:fit-content;
    margin:auto;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.4);
    backdrop-filter:blur(15px);

    font-size:12px;
}

.clients-title{
    text-align:center;

    font-size:52px;
    line-height:1;

    font-weight:700;

    margin:30px 0 80px;
}
.logo-row{
    display:flex;
    gap:50px;

    margin-bottom:18px;

    width:max-content;
}

.logo-card{

    width:200px;
    height:80px;

    border-radius:28px;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.4);

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.4s ease;
}

.logo-card:hover{

    transform:translateY(-6px);

    background:white;
}

.logo-card img{

    max-width:170px;
    max-height:65px;

    object-fit:contain;
}
.row-left{

    animation:moveLeft 10s linear infinite;
}

.row-right{

    animation:moveRight 10s linear infinite;
}

@keyframes moveLeft{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-40%);
    }
}

@keyframes moveRight{

    from{
        transform:translateX(-40%);
    }

    to{
        transform:translateX(0);
    }
}
/* CENTER ORB */
.client-orb{

    position:absolute;

    top:70%;
    left:50%;

    transform:translate(-50%,-50%);

    width:180px;
    height:180px;

    border-radius:50%;

    background:#111;
    backdrop-filter:blur(20px);
    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    color:white;
    text-align:center;

    z-index:50;

    box-shadow:
    0 0 60px rgba(250, 159, 250, 0.8),
    0 0 120px rgba(245, 221, 154, 0.6),
    inset 0 0 30px rgba(250, 235, 235, 0.15);
}
.client-orb span{
    padding-bottom: 40px;
   
}

.orb-logo{

    width:155px;
}

/* services section */
.service-section{
    position:relative;
    padding:40px 80px;
    text-align:center;
    overflow:hidden;
    background-color:#d9d9d9;
}

/* Badge */

.services-badge{
    display:inline-flex;
    gap:12px;
    align-items:center;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.10);
    backdrop-filter:blur(12px);

    color:#181515;
    font-size:13px;

    border:1px solid rgba(255,255,255,.20);
}

/* Heading */

.service-title{
    margin-top:10px;

    font-size:72px;
    font-weight:700;

    color:rgb(8, 0, 0);
}

.service-subtitle{
    max-width:700px;
    margin:10px auto 0;

    color:rgba(8, 8, 8, 0.75);

    font-size:20px;
    line-height:1.7;
}

.gradient-text{
    background:linear-gradient(
        90deg,
        #b892ff,
        #ffd4a3,
        #ff4d4d,
        #2d9cff,
        #4c57ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* GRID */

.services-grid{
    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CARD */

.service-card{
    position:relative;

    padding:35px 25px;

    border-radius:32px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    inset 0 2px 10px rgba(255,255,255,.25),
    0 20px 40px rgba(0,0,0,.15);

    transition:.5s ease;

    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-12px);

    border-color:rgba(255,255,255,.35);

    box-shadow:
    0 0 30px rgba(255,255,255,.20),
    0 30px 60px rgba(0,0,0,.20);
}

/* Glow Layer */

.service-card::before{
    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    background:
    linear-gradient(
        135deg,
        rgba(184,146,255,.25),
        rgba(255,115,115,.15),
        rgba(45,156,255,.20)
    );

    opacity:0;

    transition:.5s ease;

    z-index:-1;
}

.service-card:hover::before{
    opacity:1;
}

.service-icon{
    width:70px;
    height:70px;
    color: rgb(3, 7, 15);
    margin:auto;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #09070c,
        #887a7d,
        #c3dbf0
    );

    box-shadow:
    0 0 25px rgba(184,146,255,.45);

    margin-bottom:20px;
}

.service-card h3{
    color:black;
    font-size:18px;
    font-weight:600;
}


/* BUTTON */

.service-btn-wrap{
    margin-top:60px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;
    margin-top: 0;
    border-radius:999px;

    background:white;

    color:#111;

    font-weight:600;

    transition:.4s ease;
}

.service-btn:hover{
    background:black;
    color:white;

    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .service-title{
        font-size:48px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-section{
        padding:100px 25px;
    }
}

/* pricing section */

.pricing-section{
    padding:120px 5%;
    background:#d9d9d9;
    text-align:center;
    overflow:hidden;
    /* padding-top: 150px; */
}

.pricing-badge{
    width:fit-content;
    margin:auto;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.10);
    backdrop-filter:blur(15px);
    color: rgb(7, 7, 7);
    font-size:12px;
}

.pricing-title{
    font-size:62px;
    font-weight:700;
    line-height:1;
    padding-top: 20px;
}
.pricing-subtitle{
    color:#241f1f;
    padding-top: 20px;
    margin-bottom:60px;
}

/* .pricing-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
    margin-bottom:60px;
} */

/* Cards */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.pricing-card{
    background:white;
    border-radius:35px;
    padding:15px;
    position:relative;
    transition:.5s ease;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.pricing-card:hover{
    transform:translateY(-12px);
}

.featured{
    transform:scale(1.04);
    border:1px solid rgba(0,0,0,.05);
}

.featured:hover{
    transform:scale(1.04) translateY(-10px);
}

.popular-tag{
    position:absolute;
    top:20px;
    right:20px;
    padding:8px 14px;
    border-radius:50px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    font-size:12px;
}

.card-icon{
    width:28px;
    height:28px;
    border-radius:10px;
    background:#333;
    margin-bottom:25px;
}

.gradient{
    background:linear-gradient(
    135deg,
    #ff7edb,
    #9f7cff,
    #65c7ff);
}

.purple{
    background:linear-gradient(
    135deg,
    #7c5cff,
    #cb8cff);
}

.plan-highlight{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    margin:25px 0;
    border-radius:50px;
    background:#f4f4f4;
    font-size:14px;
    font-weight:600;
    color:#444;
}

.pricing-card hr{
    margin:20px 0;
    border:none;
    border-top:1px solid #eee;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    text-align:left;
}

.pricing-card li{
    margin-bottom:12px;
    color:#555555;
}
.pricing-card li span{
    color: #ff3e3e;
}

.pricing-btn{
    display:block;
    margin-top:35px;
    padding:18px;
    border-radius:100px;
    color:white;
    text-decoration:none;
    background:black;
    transition:.4s;
}

.pricing-btn:hover{
    transform:scale(1.03);
}

/* CTA SECTION */

.pricing-cta{
    margin-top:50px;
    padding:20px;
    border-radius:40px;
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at left,
    #f87e75,
    transparent 40%),

    radial-gradient(circle at center,
    #fabd60,
    transparent 40%),

    radial-gradient(circle at right,
    #74bef7,
    transparent 40%),

    #fff;
}

.pricing-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle,
    rgba(255,255,255,.5) 1px,
    transparent 1px);
    background-size:20px 20px;
}

.pricing-cta h3{
    font-size: 25px;
    font-weight: 20px;

}
.cta-avatar{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.cta-btn{
    display:inline-block;
    margin-top:20px;
    padding:16px 35px;
    background:black;
    color:white;
    border-radius:100px;
    text-decoration:none;
}
/* ===========================
   LARGE SCREENS (1200px)
=========================== */
@media (max-width:1200px){

    .pricing-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-12px);
    }

}


/* ===========================
   TABLETS (768px)
=========================== */
@media (max-width:768px){

    .pricing-section{
        padding:80px 25px;
    }

    .pricing-title{
        font-size:42px;
        line-height:1.2;
    }

    .pricing-subtitle{
        font-size:16px;
        margin-bottom:40px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .pricing-card{
        border-radius:28px;
        padding:25px;
    }

    .pricing-card h3{
        font-size:24px;
    }

    .plan-highlight{
        font-size:14px;
        padding:10px 18px;
    }

    .pricing-card li{
        font-size:15px;
        line-height:1.8;
    }

    .pricing-btn{
        padding:16px;
    }

    .pricing-cta{
        border-radius:30px;
        padding:30px 20px;
    }

}


/* ===========================
   MOBILE (576px)
=========================== */
@media (max-width:576px){

    .pricing-section{
        padding:70px 15px;
    }

    .pricing-badge{
        font-size:11px;
    }

    .pricing-title{
        font-size:32px;
    }

    .pricing-subtitle{
        font-size:15px;
        line-height:1.7;
    }

    .pricing-card{
        padding:20px;
    }

    .plan-highlight{
        font-size:13px;
        line-height:1.6;
    }

    .pricing-card li{
        font-size:14px;
    }

    .popular-tag{
        top:15px;
        right:15px;
        font-size:11px;
        padding:7px 12px;
    }

    .cta-avatar{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .pricing-cta h3{
        font-size:22px;
        line-height:1.4;
    }

    .pricing-cta p{
        font-size:14px;
        line-height:1.7;
    }

    .cta-btn{
        padding:14px 28px;
        font-size:14px;
    }

}


/* ===========================
   EXTRA SMALL DEVICES
=========================== */
@media (max-width:400px){

    .pricing-title{
        font-size:28px;
    }

    .pricing-card{
        padding:18px;
        border-radius:24px;
    }

    .pricing-card h3{
        font-size:20px;
    }

    .pricing-card li{
        font-size:13px;
    }

    .pricing-btn{
        font-size:14px;
        padding:14px;
    }

}


/* footer section */

.footer-section{
    background-color: black;
    width:100vw;
    padding:50px 70px;
}

.footer-overlay{
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.6)
    );
}

.footer-content{
    position: relative;
    z-index: 2;
}

/* SOCIAL ROW */
.footer-social-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    
}

/* NAVIGATION ROW */
.footer-nav-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

/* DIVIDER */
.footer-divider{
    width:100%;
    height: 1px;
    background:rgba(255,255,255,.12);
    margin:20px 0;
}

/* SOCIAL LINKS */
.footer-social{
    display:flex;
    align-items:center;
    gap:12px;

    color:rgba(255,255,255,.85);

    transition:.4s ease;
}

.footer-social:hover{
    transform:translateY(-4px);
    color:white;
}

/* MENU LINKS */
.footer-link{
    color:rgba(255,255,255,.85);
    font-weight:500;

    transition:.3s ease;
}

.footer-link:hover{
    color:white;
}

/* LOGO */
/* Footer Main Layout */

.footer-main{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;

    margin-top:20px;
}

/* Left Side */

.footer-company{
    flex:1;
    padding: 0 !important;
}

.footer-logo img{
    width:140px;
    height:auto;
    
}

.footer-description{
    max-width:750px;

    padding:0 15px;
    margin-top: 0;

    color:rgba(255,255,255,.75);

    line-height:1.8;
    font-size:15px;
}

/* Right Side */

.footer-newsletter{
    width:420px;
}

.footer-newsletter h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-top: 35px;
}

.footer-newsletter p{
    color:rgba(255,255,255,.7);
    font-size: 14px;
    margin-bottom:10px;
    line-height:1.7;
}

/* Input + Button */

.newsletter-form{
    display:flex;
    align-items:center;

    overflow:hidden;

    border-radius:999px;

    background:#fff;
}

.newsletter-form input{
    flex:1;

    border:none;
    outline:none;

    padding:10px 10px;

    font-size:15px;
}

.newsletter-form button{

    border:none;
    cursor:pointer;

    padding:10px 10px;

    background:#720202;
    color:#fff;

    font-weight:600;

    transition:.3s;
}

.newsletter-form button:hover{
    background:#d92c1d;
}

/* Footer Bottom */

.footer-bottom{
    text-align:center;

    color:rgba(255,255,255,.65);

    font-size:14px;

    padding:20px 0 0;
    margin:0;

    border-top:1px solid rgba(255,255,255,.08);
}

/* Remove Extra Bottom Space */

.footer-section{
    padding-bottom:0 !important;
}

.footer-content{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

/* MOBILE */
@media(max-width:992px){

    .footer-main{
        flex-direction:column;
        gap:50px;
    }

    .footer-newsletter{
        width:100%;
    }

    .newsletter-form{
        flex-direction:column;
        border-radius:20px;
        background:transparent;
    }

    .newsletter-form input{
        width:100%;
        border-radius:999px;
        margin-bottom:15px;
    }

    .newsletter-form button{
        width:100%;
        border-radius:999px;
    }
}
/* ==========================
   FOOTER RESPONSIVE
========================== */

/* Large Tablets */
@media (max-width: 1024px){

    .footer-content{
        padding: 0 5%;
    }

    .footer-main{
        gap: 40px;
    }

}


/* Tablets */
@media (max-width: 768px){

    /* Social icons */
    .footer-social-row{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-social{
        width: calc(50% - 10px);
        justify-content: center;
    }

    /* Navigation */
    .footer-nav-row{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    /* Company + Newsletter */
    .footer-main{
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-top: 50px;
    }

    .footer-company,
    .footer-newsletter{
        width: 100%;
        text-align: center;
    }

    .footer-logo img{
        max-width: 220px;
    }

    .footer-description{
        max-width: 100%;
        margin-top: 20px;
    }

    /* Newsletter form */
    .newsletter-form{
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .newsletter-form input{
        width: 100%;
    }

    .newsletter-form button{
        width: 100%;
    }

    .footer-bottom{
        text-align: center;
        font-size: 14px;
        margin-top: 50px;
    }
}


/* Mobile */
@media (max-width: 576px){

    .footer-section{
        padding: 60px 20px;
    }

    .footer-social-row{
        flex-direction: column;
        gap: 15px;
    }

    .footer-social{
        width: 100%;
    }

    .footer-nav-row{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-link{
        font-size: 15px;
    }

    .footer-logo img{
        width: 180px;
    }

    .footer-description{
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-newsletter h3{
        font-size: 24px;
    }

    .footer-newsletter p{
        font-size: 14px;
        line-height: 1.7;
    }

    .newsletter-form input,
    .newsletter-form button{
        height: 55px;
        font-size: 15px;
    }

    .footer-bottom{
        font-size: 13px;
        line-height: 1.7;
    }

}


/* Extra Small Devices */
@media (max-width: 400px){

    .footer-section{
        padding: 50px 15px;
    }

    .footer-logo img{
        width: 150px;
    }

    .footer-newsletter h3{
        font-size: 20px;
    }

    .footer-bottom{
        font-size: 12px;
    }

}