.about-main{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.about-small{
    width:55%;
    position:absolute;
    right:0;
    bottom:-40px;
    border-radius:20px;
    border:6px solid #fff;
}

.services-showcase{
    padding:100px 0;
    background:#fff;
}

.services-wrapper{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    border:1px solid #eee;
}

.services-menu{
    width:30%;
    border-right:1px solid #eee;
    background:#fafafa;
}

.service-item{
    padding:22px 25px;
    font-weight:600;
    cursor:pointer;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.service-item:hover{
    background:#f7f7f7;
}

.service-item.active{
    color:#f39c12;
    border-left:4px solid #f39c12;
    background:#fff;
}

.service-content{
    width:70%;
    padding:40px;
}

.service-pane{
    display:none;
}

.active-pane{
    display:block;
}

.service-pane h2{
    font-size:40px;
    margin-bottom:20px;
}

.service-pane p{
    color:#666;
    line-height:1.8;
}

.service-pane ul{
    margin-top:20px;
}

.service-pane ul li{
    margin-bottom:10px;
}

.stats{
    display:flex;
    gap:50px;
    margin:30px 0;
}

.stats h3{
    color:#f39c12;
    font-size:34px;
    margin-bottom:5px;
}

.service-layout{
    display:flex !important;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
}

.service-text{
    flex:1;
}

.service-image{
    width:300px;
    flex-shrink:0;
}

.service-image img{
    width:100%;
    max-width:300px;
    height:auto;
    display:block;
}

.tech-stack{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:20px;
}

.tech-stack span{
    background:#f5f5f5;
    padding:8px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}
}

.industries-section{
    background:#050505;
    padding:100px 0;
    color:#fff;
    overflow:hidden;
}

.subtitle{
    color:#ff7a00;
    font-size:12px;
    letter-spacing:4px;
    font-weight:700;
}

.section-header h2{
    font-size:48px;
    font-weight:800;
    text-transform:uppercase;
    margin:15px 0;
}

.section-header p{
    color:#9d9d9d;
    margin-bottom:70px;
}

.industry-wheel{
    position:relative;
    width:900px;
    height:650px;
    margin:auto;
}

.center-circle{
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle,#ff7a00,#111);
    border:12px solid rgba(255,255,255,.08);
    box-shadow:
    0 0 50px rgba(255,122,0,.35),
    0 0 100px rgba(255,122,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
}

.center-circle span{
    color:#ff7a00;
    font-weight:700;
    letter-spacing:1px;
}

.node{
    position:absolute;
    width:150px;
    text-align:center;
    color:#fff;
}

.node i{
    width:50px;
    height:50px;
    line-height:50px;
    border-radius:50%;
    background:#111;
    color:#777;
    margin-bottom:10px;
    transition:.3s;
}

.node:hover i{
    color:#ff7a00;
    box-shadow:0 0 20px rgba(255,122,0,.4);
}

.node span{
    display:block;
    font-size:13px;
    font-weight:600;
}

.node-1{top:0;left:50%;transform:translateX(-50%);}
.node-2{top:60px;right:80px;}
.node-3{top:170px;right:0;}
.node-4{top:290px;right:-20px;}
.node-5{top:410px;right:20px;}
.node-6{top:520px;right:100px;}

.node-7{bottom:0;left:50%;transform:translateX(-50%);}

.node-8{top:520px;left:100px;}
.node-9{top:410px;left:20px;}
.node-10{top:290px;left:-20px;}
.node-11{top:170px;left:0;}
.node-12{top:60px;left:80px;}

@media(max-width:991px){

    .industry-wheel{
        width:100%;
        height:auto;
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .node,
    .center-circle{
        position:static;
        transform:none;
        margin:auto;
    }

    .section-header h2{
        font-size:32px;
    }
}

.footer-section{
    background:#000;
    color:#fff;
    padding:100px 0 40px;
    border-top:1px solid #111;
}

.footer-title{
    font-size:60px;
    font-weight:300;
    margin-bottom:40px;
    color:#fff;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:20px;
}

.footer-links a{
    color:#d0d0d0;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff7a00;
}

.follow-text{
    font-size:18px;
    color:#fff;
    margin-bottom:20px;
}

.social-icons{
    display:flex;
    justify-content:flex-end;
    gap:20px;
}

.social-icons a{
    color:#fff;
    font-size:30px;
    transition:.3s;
}

.social-icons a:hover{
    color:#ff7a00;
}

.footer-section hr{
    border-color:#222;
    margin:60px 0 30px;
}

.footer-bottom{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.footer-bottom a{
    color:#888;
    text-decoration:none;
    font-size:14px;
}

.footer-bottom a:hover{
    color:#ff7a00;
}

@media(max-width:768px){

    .footer-title{
        font-size:40px;
    }

    .social-icons{
        justify-content:flex-start;
        margin-top:20px;
    }

    .footer-links a{
        font-size:18px;
    }
}
.cta-section{
    background:#0a0a0a;
    padding:100px 0;
    text-align:center;
    color:#fff;
    border-top:1px solid #111;
    border-bottom:1px solid #111;
}

.cta-section h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 35px;
    color:#a0a0a0;
    font-size:18px;
    line-height:1.8;
}

.cta-section .btn-warning{
    background:#ff7a00;
    border-color:#ff7a00;
    padding:14px 35px;
    font-weight:600;
}

.cta-section .btn-outline-light{
    padding:14px 35px;
    font-weight:600;
}

.cta-section .btn{
    border-radius:50px;
}

/* PREMIUM NAVBAR */

.premium-navbar{
background:#fff;
padding:18px 0;
position:sticky;
top:0;
z-index:9999;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.navbar-brand img{
height:65px;
transition:.3s;
}

.navbar-brand img:hover{
transform:scale(1.05);
}

.navbar-nav{
gap:10px;
}

.nav-link{
font-size:15px;
font-weight:600;
color:#111 !important;
padding:10px 18px !important;
position:relative;
transition:.3s;
}

.nav-link:hover{
color:#ff7a00 !important;
}

.nav-link::after{
content:'';
position:absolute;
left:18px;
bottom:5px;
width:0;
height:2px;
background:#ff7a00;
transition:.3s;
}

.nav-link:hover::after{
width:50%;
}

.nav-link.active{
color:#ff7a00 !important;
}

.header-btn{
background:#ff7a00;
color:#fff;
padding:12px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.header-btn:hover{
background:#e66d00;
color:#fff;
transform:translateY(-2px);
}

.dropdown-menu{
border:none;
border-radius:15px;
padding:10px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.dropdown-item{
padding:10px 15px;
font-weight:500;
}

.dropdown-item:hover{
background:#fff4ea;
color:#ff7a00;
}

.hero-slider{
    position:relative;
}

.hero-img{
    height:90vh;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:700px;
    color:#fff;
}

.hero-content span{
    color:#ff7a00;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.hero-btn:hover{
    background:#fff;
    color:#ff7a00;
}

.carousel-control-prev,
.carousel-control-next{
    width:8%;
}

@media(max-width:768px){

    .hero-img{
        height:70vh;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }
}
 .logo-slider{
    overflow:hidden;
    width:100%;
    padding:20px 0;
}

.logo-track{
    display:flex;
    flex-wrap:nowrap !important;
    align-items:center;
    width:max-content;
    animation:scroll 20s linear infinite;
}

.client-logo{
    height:70px;
    width:auto;
    margin:0 50px;
    display:block;
    flex-shrink:0;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.service-pane.active-pane{
    display:block;
}

.service-layout{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.service-text{
    width:65%;
}

.service-image{
    width:35%;
    text-align:center;
}

.service-image img{
    width:100%;
    max-width:300px;
    height:auto;
}


.tech-stack{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:20px;
}

.tech-stack span{
    background:#f5f5f5;
    padding:8px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.service-pane h2{
    font-size:32px;
    font-weight:700;
}