/* Tick Wizard Global Styles 
   Primary Theme: Orange (#ff6b00) 
*/

:root {
    --primary-orange: #ff6b00;
    --orange-hover: #e66000;
    --navy-dark: #0f172a;
    --slate-text: #475569;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Default Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-text);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Smooth Scrolling for modern feel */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background-color: var(--primary-orange);
    color: white;
}

/* Bootstrap Button Override for the Brand */
.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50px;
    /* Modern Rounded Pill */
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-orange:hover {
    background-color: var(--orange-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

@media (max-width: 991px) {

    .mobile-hide {
        display: none;
    }
}

@media (min-width: 991px) {

    .desktop-hide {
        display: none;
    }
}

/* contact section css  */

.enquiry-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Kinetic Background Element */
.enquiry-blob {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 0;
}

/* Glassmorphism Form Container */
.glass-form-wrap {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid #f1f5f9;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.08),
        0 0 40px rgba(255, 107, 0, 0.03),
        0 -10px 50px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
}

.enquiry-input {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
    font-weight: 500;
    outline: none;
}

.enquiry-input:focus {
    border-color: #ff6b00;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.05);
}

.service-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff6b00'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
}

/* Contact Info Card (Right Side) */
.contact-info-card {
    background: #0f172a;
    padding: 50px;
    border-radius: 40px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ff6b00;
    filter: blur(100px);
    bottom: -50px;
    right: -50px;
    opacity: 0.2;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    font-size: 20px;
}

.btn-submit {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    transition: 0.4s;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.btn-submit:hover {
    transform: translateY(-5px);
    background: #e66000;
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.3);
}

/* Captcha Styling */
.captcha-box {
    background: #fff7ed;
    border: 2px dashed #ff6b00;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-label {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .glass-form-wrap {
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 40px 30px;
    }
}

/* about section css  */

.about-section {
    padding: 60px 0;
    background: #fdfbf9;
    position: relative;
    overflow: hidden;
}

/* Kinetic background element */
.about-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    z-index: 0;
    animation: rotateBlob 25s infinite linear;
}

@keyframes rotateBlob {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Enlarged Image Composition with Borders */
.about-image-wrap {
    position: relative;
    padding: 0;
    z-index: 1;
    width: 110%;
    /* Increased size to fill space */
    left: -5%;
}

.about-img-main {
    width: 100%;
    height: auto;
    border-radius: 40px;
    /* Increased border radius */
    border: 15px solid #ffffff;
    /* Thick white border for studio feel */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #ff6b00;
    color: white;
    padding: 35px 45px;
    border-radius: 25px;
    box-shadow: 20px 20px 60px rgba(255, 107, 0, 0.25);
    z-index: 2;
    text-align: center;
}

.experience-card h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1;
}

/* High-Impact Typography */
.about-tag {
    color: #ff6b00;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 30px;
}

.about-p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    color: #0f172a;
    font-size: 15px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #fff7ed;
    color: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .about-image-wrap {
        width: 100%;
        left: 0;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 2.8rem;
    }
}

/* footer css  */

.main-footer {
    background: #0f172a;
    /* Deep Studio Navy */
    padding: 100px 0 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-brand .footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -2px;
}

.footer-brand .footer-logo span {
    color: #ff6b00;
}

.footer-header {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6b00;
    transform: translateX(10px);
}

.social-stack {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: #ff6b00;
    border-color: #ff6b00;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (max-width: 991px) {
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-col {
        margin-bottom: 50px;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }
}

/* go to top css */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #ff6b00;
    /* TickWizard Orange */
    color: #fff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);

    /* Initially Hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #0f172a;
    /* Studio Navy on hover */
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
}

/* header css  */
:root {
    --primary-orange: #ff6b00;
    --navy-dark: #212529;
    --transition: all 0.3s ease;
}

header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: var(--transition);
}

/* Initial State: Clean White */
.nav-pill-container {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 100px;
    padding: 15px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

/* Scrolled State: Glassmorphism */
header.scrolled {
    top: 15px;
}

header.scrolled .nav-pill-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-orange);
}

.nav-link-custom {
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 18px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary-orange);
}

.btn-orange {
    background: var(--primary-orange);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background: #e66000;
    color: white;
    transform: translateY(-2px);
}

.mobile-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy-dark);
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 991px) {
    header {
        top: 15px;
    }

    .nav-pill-container {
        padding: 10px 20px;
        border-radius: 40px;
    }

    .mobile-toggler {
        display: block;
    }

    .navbar-collapse-custom {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        border-radius: 25px;
        padding: 20px;
        display: none;
        /* Hidden by default */
        flex-direction: column;
        gap: 15px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
        z-index: 1000;
    }

    .navbar-collapse-custom.show {
        display: flex;
    }
}

/* page banner css  */

.inner-page-banner {
    height: 45vh;
    min-height: 400px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
        url('/assets/images/banner/pagebanner.webp?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Padding to clear your floating header */
    padding-top: 80px;
}

/* Film Grain Overlay */
.inner-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    z-index: 1;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 5;
}

.banner-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 15px;
}

.banner-title span {
    color: #ff6b00;
    /* TickWizard Orange */
}

.breadcrumb-custom {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-custom a:hover {
    color: #ff6b00;
}

@media (max-width: 768px) {
    .inner-page-banner {
        height: 35vh;
        min-height: 300px;
    }

    .banner-title {
        font-size: 3rem;
    }
}

/* clients css  */
.clients-section {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
}

.trust-tag {
    text-align: center;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 50px;
}

/* --- Infinite Logo Loop --- */
.logo-marquee {
    display: flex;
    width: calc(250px * 10);
    /* Adjust based on logo count */
    animation: scrollLoop 30s linear infinite;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }
}

.logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    /* Gray scale for professional look, colors on hover */
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.4s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-item img {
    max-width: 160px;
    height: auto;
}

/* Gradient Fades on Sides */
.marquee-container {
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

@media (max-width: 768px) {
    .logo-item {
        width: 180px;
    }

    .logo-item img {
        max-width: 110px;
    }
}

/* hero css  */


/* 1. Base Setup */
#heroCarousel,
.carousel-inner,
.hero-item {
    height: 100vh;
    min-height: 800px;
}

.hero-item {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-item-1 {
    background: url('../images/banner/banner1.webp?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-item-2 {
    background: url('../images/banner/banner2.webp?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-item-3 {
    background: url('../images/banner/banner3.webp?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Cinematic Overlay */
.hero-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 20%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* 2. Left Content */
.hero-left-content {
    position: absolute;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.text-orange-glow {
    color: #ff6b00;
    display: block;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.hero-sub-text {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    line-height: 1.6;
}

/* 3. Right Card - Glassmorphism */
.featured-box {
    position: absolute;
    bottom: 15%;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    color: white;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Flash Animation */
.featured-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.btn-details {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: #ff6b00;
    padding: 16px 35px;
    transition: 0.3s ease;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 6px;
    color: white !important;
    margin-top: 30px;
    width: fit-content;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-details:hover {
    background: #fff;
    color: #ff6b00 !important;
    transform: translateY(-3px);
}

/* 4. Arrows */
.hero-arrow-wrap {
    width: 80px !important;
    opacity: 1 !important;
    z-index: 1000 !important;
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-arrow-wrap:hover .hero-arrow {
    background: #ff6b00;
    border-color: #ff6b00;
    transform: scale(1.1);
}

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

    .hero-main-title {
        font-size: 50px;
    }

    #heroCarousel,
    .carousel-inner,
    .hero-item {
        height: auto;
        min-height: 100vh;
    }

    .hero-item {
        flex-direction: column;
        justify-content: flex-start;
        padding: 140px 20px 60px 20px;
    }

    .hero-left-content {
        position: relative;
        top: 0;
        transform: none;
        max-width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-sub-text {
        display: none;
    }

    .text-orange-glow {
        padding-left: 0;
    }

    .featured-box {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 30px;
        background: rgba(255, 255, 255, 0.15);
    }

    .featured-box h1 {
        font-size: 1.8rem;
        margin-bottom: 10px !important;
    }

    .btn-details {
        margin: 10px auto 0;
    }

    .hero-arrow-wrap {
        display: none;
    }
}

/* portfolio css  */

.portfolio-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

/* Modern 4-Side Glow Card */
.work-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 30px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.work-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(255, 107, 0, 0.15);
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* 4-Side Glass Frame: Centered & Floating */
.work-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    /* Starts slightly lower */
    width: 85%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 30px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* 4-side shadow for depth on all sides */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    z-index: 5;
}

.work-card:hover .work-overlay {
    transform: translate(-50%, -50%);
    /* Centers perfectly on hover */
    opacity: 1;
}

.work-tag {
    color: #ff6b00;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.work-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.btn-work {
    font-weight: 800;
    color: #ff6b00;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Overrides */
@media (max-width: 991px) {
    .work-card {
        height: 450px;
    }

    .work-overlay {
        opacity: 1;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 25px;
    }

    .portfolio-section {
        padding: 60px 0;
    }
}

/* services css  */
.services-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative background blur to fill empty space */
.services-section::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-tag {
    color: #ff6b00;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -2px;
    line-height: 1;
}

/* Glass Service Cards */
.service-card {
    background: #ffffff;
    padding: 40px 40px;
    border-radius: 4px;
    border: 1px solid #ff6b00;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #ff6b00;
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #fff7ed;
    color: #ff6b00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    background: #ff6b00;
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-link {
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.service-card:hover .service-link {
    color: #ff6b00;
}

/* testimonial css  */

.testimonials-section {
    padding: 80px 0;
    background: #fdfbf9;
    position: relative;
    overflow: hidden;
}

/* Kinetic background element */
.testi-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    z-index: 0;
}

/* Slider Container Logic */
.testi-slider {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Force items into one row */
.testi-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.testi-slider .slick-slide {
    height: inherit !important;
    padding: 15px;
    /* Side spacing */
    outline: none;
}

/* 4-Side Glass Frame Card */
.testi-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 45px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.12);
}

.testi-text {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 30px;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6b00;
}

.client-details h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-details span {
    font-size: 11px;
    font-weight: 700;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom Dots */
.testi-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.testi-slider .slick-dots li {
    margin: 0 5px;
}

.testi-slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    transition: 0.3s;
}

.testi-slider .slick-dots li.slick-active button {
    background: #ff6b00;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .experience-card {
        width: auto !important;
        min-width: 120px !important;
        max-width: 140px !important;
        left: 50% !important;
        bottom: 20px !important;
        transform: translateX(-50%) !important;
        padding: 8px 12px !important;
        border-radius: 7px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .experience-card h2 {
        font-size: 1.2rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    .experience-card p {
        font-size: 7px !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        white-space: nowrap !important;
    }
}