/* ================= BASE ================= */
body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#111;
}

/* ================= HEADER ================= */
.ts-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #eaeaea;
}

/* NAV */
.ts-nav{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    height:80px;
}

/* MENUS */
.ts-menu{
    display:flex;
    gap:26px;
}

.ts-menu a{
    font-size:14px;
    font-weight:500;
    color:#000;
    text-decoration:none;
}

/* LOGO */
.ts-logo img{
    height:70px;
}

/* RIGHT */
.ts-right{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:16px;
}

/* BUTTON */
.ts-btn{
    background:#ff9800;
    color:#fff;
    padding:8px 18px;
    border-radius:18px;
    font-size:14px;
    text-decoration:none;
    white-space:nowrap;
}

/* ================= SOCIAL ICONS – DESKTOP ================= */
.ts-social-icons{
    display:flex;
    gap:14px;
}

.ts-social-icons a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(0,0,0,.05);
    color:#000;
    font-size:17px;
    transition:all .3s ease;
}

.ts-social-icons a:hover{
    background:#ff9800;
    color:#fff;
    box-shadow:0 8px 20px rgba(255,152,0,.35);
    transform:translateY(-3px) scale(1.05);
}

/* ================= DROPDOWN ================= */
.ts-dropdown{
    position:relative;
}

.ts-dropdown-menu{
    position:absolute;
    top:140%;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    min-width:190px;
    border-radius:12px;
    padding:8px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.ts-dropdown:hover .ts-dropdown-menu{
    opacity:1;
    visibility:visible;
}

.ts-dropdown-menu a{
    display:block;
    padding:12px 20px;
    font-size:14px;
    color:#000;
    text-decoration:none;
}

.ts-dropdown-menu a:hover{
    background:#f8f8f8;
    color:#ff9800;
}

/* ================= MOBILE ================= */
.ts-mobile-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE MENU */
.ts-mobile-menu{
    display:none;
    border-top:1px solid #eee;
    padding:10px 0;
}

.ts-mobile-menu.open{
    display:block;
}

.ts-mobile-menu a{
    display:block;
    padding:12px 0;
    font-weight:500;
    color:#000;
    text-decoration:none;
}

/* MOBILE DROPDOWN */
.ts-mobile-dd-toggle{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    font-weight:500;
    cursor:pointer;
}

.ts-mobile-dd-menu{
    display:none;
    padding-left:12px;
}

.ts-mobile-dropdown.open .ts-mobile-dd-menu{
    display:block;
}

/* ================= SOCIAL ICONS – MOBILE ================= */
.ts-mobile-social-icons{
    display:flex;
    gap:18px;
    padding:18px 0 6px;
}

.ts-mobile-social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f3f3f3;
    color:#000;
    font-size:20px;
    transition:all .3s ease;
}

.ts-mobile-social-icons a:hover{
    background:#ff9800;
    color:#fff;
    box-shadow:0 8px 20px rgba(255,152,0,.35);
    transform:translateY(-3px);
}

/* ================= RESPONSIVE FIX ================= */
@media(max-width:991px){

    .ts-nav{
        grid-template-columns:auto auto;
    }

    .ts-menu,
    .ts-social-icons,
    .ts-btn{
        display:none;
    }

    .ts-mobile-toggle{
        display:block;
    }

    .ts-logo img{
        height:55px;
    }
}
/* ================= WORK SECTION ================= */
.ts-work{
    padding:60px 24px;
}
@media (max-width: 786px) {
    .ts-work{
        padding:30px 10px;
    }
}

.ts-work-card{
    position:relative;
    overflow:hidden;
    border-radius:2px;
    cursor:pointer;
    background:#000;
}

.ts-work-card img{
    width:100%;
    height:215px;
    object-fit:cover;
    transition:.4s ease;
}

/* OVERLAY */
.ts-work-overlay{
    position:absolute;
    inset:0;
    background:rgba(243, 152, 62, 0.809);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    pointer-events:none;
    transition:.3s ease;
}

.ts-work-overlay h5{
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-align:center;
    padding:0 15px;
}

.ts-work-card:hover img{
    transform:scale(1.08);
}

.ts-work-card:hover .ts-work-overlay{
    opacity:1;
}

/* RESPONSIVE */
@media(max-width:991px){
    .ts-work-card img{height:150px;}
}

@media(max-width:575px){
    .ts-work-card img{height:80px;}
}

/* ================= GRID LAYOUT ================= */

.ts-work-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    grid-auto-rows:215px; /* matches your image height */
    gap:20px;
}

/* GRID SIZE VARIANTS */
.grid-big{
    grid-column:span 2;
    grid-row:span 2;
}

.grid-normal{
    grid-column:span 2;
    grid-row:span 2;
}

.grid-small{
    grid-column:span 2;
    grid-row:span 1;
}

/* FORCE CARD TO FILL GRID CELL */
.grid-big .ts-work-card,
.grid-normal .ts-work-card,
.grid-small .ts-work-card{
    height:100%;
}

.grid-big img,
.grid-normal img,
.grid-small img{
    height:100%;
}

/* RESPONSIVE */
@media(max-width:991px){
    .ts-work-grid{
        grid-template-columns:repeat(4,1fr);
    }
    .grid-big{
        grid-column:span 2;
    }
}

@media(max-width:575px){
    .ts-work-grid{
        /* grid-template-columns:repeat(2,1fr); */
        grid-auto-rows:140px;
    }
    .grid-big,
    .grid-normal,
    .grid-small{
        grid-column:span 2;
        grid-row:span 1;
    }
}


/* ================= MODAL ================= */
.modal.fade .modal-dialog{
    transform:scale(.85);
    transition:.3s ease;
}

.modal.show .modal-dialog{
    transform:scale(1);
}

.modal-video iframe{
    width:100%;
    height:420px;
}

@media(max-width:575px){
    .modal-video iframe{height:240px;}
}



        /* ================= SECTION ================= */
        .clients-tabs-section {
            padding: 40px 20px;
            background: #f8fafc;
        }

        /* HEADER */
        .clients-header {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 45px;
        }

        .clients-header h2 {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .clients-header p {
            font-size: 16px;
            color: #6b7280;
        }

        /* ================= TABS ================= */
        .clients-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            background: #ffffff;
            padding: 8px;
            border-radius: 50px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
            max-width: 900px;
            margin: 0 auto 55px;
        }

        .clients-tabs button {
            background: transparent;
            border: none;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            color: #475569;
            cursor: pointer;
            transition: .3s ease;
        }

        .clients-tabs button:hover {
            background: #f1f5f9;
        }

        .clients-tabs button.active {
            background: #f3983e;
            color: #ffffff;
        }

        /* ================= TAB CONTENT ================= */
        .clients-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* TAB PANE */
        .clients-pane {
            display: none;
        }

        .clients-pane.active {
            display: block;
        }

        /* LOGO GRID */
        .clients-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 28px;
        }

        /* LOGO CARD */
        .client-logo {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .3s ease;
        }

        .client-logo img {
            max-width: 140px;
            max-height: 100px;
            filter: grayscale(100%);
            opacity: .75;
            transition: .3s;
        }

        .client-logo:hover {
            box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
        }

        .client-logo:hover img {
            filter: none;
            opacity: 1;
        }

        /* ================= MOBILE RULE (IMPORTANT) ================= */
        @media(max-width:576px) {
            .clients-header h2 {
                font-size: 28px;
            }

            /* FORCE 2 LOGOS PER ROW */
            .clients-logos {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .client-logo {
                height: 90px;
            }

            .client-logo img {
                max-width: 110px;
                max-height: 55px;
            }
        }

/* ================= FOOTER ================= */
.ts-footer{
    font-size:14px;
}

/* ================= FOOTER TOP ================= */
.ts-footer-top{
    background:#4f4688; /* purple from reference */
    color:#ffffff;
}

.ts-footer-top-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:52px;
    gap:20px;
}

/* SOCIAL + CONTACT */
.ts-footer-social,
.ts-footer-contact{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    white-space:nowrap;
}

.ts-footer-social span,
.ts-footer-contact span{
    opacity:.9;
}

.ts-footer-social a,
.ts-footer-contact a{
    color:#ffffff;
    font-size:16px;
    opacity:.85;
    transition:.3s ease;
}

.ts-footer-social a:hover,
.ts-footer-contact a:hover{
    opacity:1;
    transform:translateY(-1px);
}

/* MENU LINKS */
.ts-footer-links{
    list-style:none;
    display:flex;
    gap:22px;
    margin:0;
    padding:0;
}

.ts-footer-links li{
    display:inline-block;
}

.ts-footer-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:13px;
    opacity:.9;
    position:relative;
    transition:.3s ease;
}

.ts-footer-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#ffffff;
    transition:.3s ease;
}

.ts-footer-links a:hover::after{
    width:100%;
}

.ts-footer-links a:hover{
    opacity:1;
}

/* ================= FOOTER BOTTOM ================= */
.ts-footer-bottom{
    background:linear-gradient(180deg, #ffffff 0%, #f2f3f8 100%);
    border-top:4px solid #ff9800; /* brand accent */
    position:relative;
}

.ts-footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    flex-wrap:wrap;
    gap:12px;
    position:relative;
}

/* COPYRIGHT TEXT */
.ts-footer-bottom p{
    margin:0;
    font-size:13px;
    color:#444;
    letter-spacing:.2px;
}

/* DEV CREDIT */
.dev-credit{
    font-size:13px;
    color:#555;
}

.dev-credit a{
    color:#ff9800;
    text-decoration:none;
    font-weight:600;
    position:relative;
    transition:.3s ease;
}

.dev-credit a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#ff9800;
    transition:.3s ease;
}

.dev-credit a:hover::after{
    width:100%;
}

.dev-credit a:hover{
    color:#e68900;
}

/* SUBTLE CENTER DOT (DESIGN DETAIL) */
.ts-footer-bottom-inner::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:6px;
    height:6px;
    background:#ff9800;
    border-radius:50%;
    opacity:.35;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

    .ts-footer-top-inner{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:10px 0;
    }

    .ts-footer-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    .ts-footer-bottom-inner{
        flex-direction:column;
        text-align:center;
    }

    .ts-footer-bottom-inner::before{
        display:none;
    }
}

/* ===============BREADCRUMB================== */
/* ================= BREADCRUMB ================= */
.ts-breadcrumb{
    padding:12px 0;
                background:#f5f6fa;

}
.ts-breadcrumb .crumb-box{
    background:#f9fafc;
    border:1px solid #eef0f6;
    border-radius:30px;
    padding:6px 18px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
}
.ts-breadcrumb a{
    color:#6460A7;
    font-weight:500;
    text-decoration:none;
}
.ts-breadcrumb .crumb-sep{
    width:5px;
    height:5px;
    background:#FF9800;
    border-radius:50%;
}
.ts-breadcrumb span{
    color:#6b7280;
    font-weight:500;
}


/* ===========================================
Contact Page Styles
=================================================*/

/* ================= INTRO ================= */
.ts-intro{
    padding:40px 0 25px;
}
.ts-intro h1{
    font-size:40px;
    margin-bottom:10px;
}
.ts-intro h1 span{
    background:linear-gradient(90deg,#6460A7,#FF9800);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.ts-intro p{
    font-size:16px;
    max-width:660px;
    color:#4b5563;
}

/* ================= CONTACT ================= */
.ts-contact{
    padding:25px 0;
}
.ts-contact-shell{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    padding:45px 50px;
    position:relative;
}
.ts-contact-shell::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#6460A7,#FF9800);
}

/* ================= CONTACT DETAILS ================= */
.ts-contact-info h2{
    font-size:30px;
    margin-bottom:12px;
}
.ts-contact-info p{
    font-size:15.5px;
    color:#4b5563;
    margin-bottom:20px;
}

.ts-info-block{
    display:flex;
    gap:16px;
    padding:14px 0;
    border-bottom:1px dashed #b0b1b4;
}
.ts-info-block:last-child{
    border-bottom:none;
}
.ts-info-icon{
    width:38px;
    height:38px;
    border-radius:10px;
    background:#f5f6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6460A7;
    font-size:18px;
}
.ts-info-text small{
    display:block;
    font-size:12px;
    color:#6b7280;
    margin-bottom:2px;
}
.ts-info-text span{
    font-size:14.8px;
    color:#111827;
}

/* ================= SOCIAL ICONS ================= */
.ts-social{
    margin-top:18px;
    display:flex;
    gap:12px;
}
.ts-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#f5f6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#6460A7;
    font-size:16px;
    transition:.3s;
    text-decoration:none;
}
.ts-social a:hover{
    background:#6460A7;
    color:#ffffff;
    transform:translateY(-2px);
}

/* ================= FORM ================= */
.ts-contact-form{
    padding-left:15px;
}
.ts-contact-form-header{
    margin-bottom:20px;
}
.ts-contact-form-header h3{
    font-size:24px;
    margin-bottom:4px;
}
.ts-contact-form-header p{
    font-size:14px;
    color:#6b7280;
}

.ts-contact-form .form-label{
    font-size:12.5px;
    font-weight:500;
}
.ts-contact-form .form-control{
    padding:11px 13px;
    border-radius:8px;
    border:1px solid #e5e7eb;
    font-size:14px;
    transition:.25s;
}
.ts-contact-form .form-control:focus{
    border-color:#6460A7;
    box-shadow:0 0 0 .14rem rgba(100,96,167,.22);
}

.ts-submit-btn{
    background:#6460A7;
    color:#fff;
    border:none;
    padding:12px 46px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}
.ts-submit-btn:hover{
    background:#FF9800;
}

/* ================= MAP ================= */
.ts-map{
    padding-top:40px;
}
.ts-map iframe{
    width:100%;
    height:340px;
    border:none;
    border-radius:18px;
    /* filter:grayscale(100%) contrast(108%); */
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .ts-contact-shell{ padding:35px; }
    .ts-contact-form{ padding-left:0; margin-top:35px; }
    .ts-intro h1{ font-size:32px; }
}



   /* ================= VIEW MORE BUTTON ================= */

.ts-view-more-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 34px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #f3983e, #ff7a18);
    border-radius: 40px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 12px 25px rgba(243, 152, 62, 0.35);
}

/* Hover lift */
.ts-view-more-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(243, 152, 62, 0.45);
    color: #fff;
}

/* Shine animation */
.ts-view-more-btn span{
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transition: 0.6s ease;
}

.ts-view-more-btn:hover span{
    left: 100%;
}

/* Active state */
.ts-view-more-btn:active{
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(243, 152, 62, 0.3);
}

/* Mobile tweak */
@media(max-width:575px){
    .ts-view-more-btn{
        padding: 10px 26px;
        font-size: 13px;
    }
}