
.navbar{
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);

    width:80%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 25px;

    border-radius:60px;

    backdrop-filter:blur(20px);

    background:white;
    border:
    1px solid rgba(255,255,255,.12);

    z-index:100;
}

.logo img{
    height:100px;
    width: 140px;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:black;
    text-decoration:none;
}
.nav-links a:hover{
    opacity:.8;
    color: #000;
}
.dropdown{
    position: relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:220px;

    margin-top:15px;

    background:rgba(10, 0, 0, 0.952);
    backdrop-filter:blur(20px);

    border:1px solid rgba(51, 50, 50, 0.15);
    border-radius:20px;

    padding:10px;

    list-style:none;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:all .3s ease;

    z-index:9999;
}

.dropdown-menu li{
    margin:8px 0;
}

.dropdown-menu li a{
    display:block;

    padding:12px 18px;

    border-radius:15px;

    color:#fff;

    transition:.3s;
}

.dropdown-menu li a:hover{

    background:
    rgba(252, 251, 251, 0.1);

    padding-left:25px;
}

/* Show Dropdown */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-contact{
    display:flex;
    gap:25px;
}

.nav-contact a{
    color:black;
    text-decoration:none;
    font-size:14px;
}
.nav-contact a:hover{
    color: #000;
    opacity:.8;
}

.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;
}


/* 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: rgb(153, 153, 153);
}

/* 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:#fcfbfb;
    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(255,255,255,.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:white;
    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:rgb(153, 153, 153);
    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: white;
    font-size:12px;
}

.pricing-title{
    font-size:62px;
    font-weight:700;
    line-height:1;
    padding-top: 20px;
}
.pricing-subtitle{
    color:#fcfafa;
    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(3,1fr);
    gap:25px;
    max-width:1100px;
    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;
}


/* 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;
    }
}