/* =============================================
   TECHNOCODEFLY - PREMIUM LIGHT THEME
   White BG | Blue + Orange Accents | Premium UI
   ============================================= */

:root {
    --primary: #1d4ed8;
    /* Deep Blue */
    --primary-lt: #3b82f6;
    /* Light Blue */
    --orange: #f97316;
    /* Brand Orange */
    --bg-body: #ffffff;
    /* White background */
    --bg-section: #f8fafc;
    /* Very light grey */
    --bg-dark: #0f172a;
    /* Dark Navy - hero only */
    --bg-card: #ffffff;
    /* White card */
    --border: #e2e8f0;
    /* Light border */
    --border-hover: #3b82f6;
    /* Blue border on hover */
    --text-dark: #0f172a;
    /* Dark text */
    --text-body: #334155;
    /* Body text */
    --text-muted: #64748b;
    /* Muted text */
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 10px 30px rgba(29, 78, 216, 0.20);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media only screen and (max-width: 600px) {
    .why-center-img {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .about_section2 {
        margin-top: 70px !important;
    }
}

@media only screen and (max-width: 600px) {
    .portfolio-section1 {
        margin-top: 70px !important;
    }
}

/* =============================================
   GLOBAL RESET
   ============================================= */
body {
    background: var(--bg-body);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
}

p {
    color: var(--text-body);
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

/* =============================================
   UTILITIES
   ============================================= */
.section-padding {
    padding: 60px 0;
}

.section-dark {
    background: var(--bg-section);
}

.section-title {
    font-size: clamp(26px, 3.5vw, 42px);
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
}

.underline-title::after,
.underline-title-left::after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    border-radius: 50px;
}

.underline-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.underline-title-left::after {
    left: 0;
}

.section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;


    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;

}

.text-primary {
    color: var(--primary-lt) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.about-sub-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-lt);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar-wrap,
.navbar-wrap.sticky-on {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
}

.template-main-menu ul>li>a {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
}

.template-main-menu ul>li>a:hover,
.template-main-menu ul>li.active>a {
    color: var(--primary) !important;
}

/* =============================================
   HERO SECTION (Dark - Premium Look)
   ============================================= */
.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Glowing orbs */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
    top: -80px;
    right: -80px;
    pointer-events: none;
    animation: orb 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    bottom: -60px;
    left: -60px;
    pointer-events: none;
    animation: orb 10s ease-in-out infinite alternate-reverse;
}

@keyframes orb {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(30px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary-lt);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary-lt);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
}

.hero-desc {
    font-size: 18px;
    color: #94a3b8;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-image-wrap img {
    filter: drop-shadow(0 30px 50px rgba(59, 130, 246, 0.3));
    position: relative;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-premium-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-blue);
}

.btn-premium-primary:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.45);
    color: #fff;
}

.btn-premium-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-premium-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateY(-3px);
}

.btn-captcha-reload {
    background: #f1f5f9;
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-captcha-reload:hover {
    background: #e0e7ff;
}

/* =============================================
   PREMIUM CARDS (Light - White Cards)
   ============================================= */
.premium-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    border-radius: 0 0 0 var(--radius);
    transition: width 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.15);
}

.premium-card:hover::after {
    width: 100%;
}

.card-title {
    font-size: 20px;
    margin: 14px 0 10px;
    color: var(--text-dark);
}

.card-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.card-title a:hover {
    color: var(--primary);
}

/* WHY CHOOSE icon wrappers (old - kept for fallback) */
.premium-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-icon-wrap.california {
    background: #fff7ed;
    border: 2px solid #fed7aa;
}

.premium-icon-wrap.emerald {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.premium-icon-wrap.royal-blue {
    background: #eff6ff;
    border: 2px solid #bfdbfe;
}

.premium-icon-wrap.sunset {
    background: #fff1f2;
    border: 2px solid #fecdd3;
}

/* =============================================
   WHY CHOOSE — NEW PREMIUM LAYOUT
   ============================================= */
.why-feature {

    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
}

.why-feature-right {
    flex-direction: row;
}

.why-icon-box {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
    transition: var(--transition);
}

.why-feature:hover .why-icon-box {
    background: linear-gradient(90deg, var(--orange), var(--primary));
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    transform: translateY(-3px);
}

.why-feature-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    margin-top: 13px;
}

.why-feature-text p {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin: 0;
}

.why-center-img img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

/* Service img */
.service-img-wrap {
    min-height: 90px;
    display: flex;
    align-items: center;
}

/* =============================================
   SCREENSHOT INSPIRED HEADER (ROYAL STYLE)
   ============================================= */
.header-screenshot-style {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* White Top Bar */
.header-screenshot-style .header-top-bar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.top-bar-info-list {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar-info-list li {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info-list li i {
    color: #6366f1;
    /* Purple icon color from screenshot */
}

.top-bar-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-bar-social li a {
    color: #94a3b8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.top-bar-social li a:hover {
    color: #6366f1;
}

/* Main Navbar Wrap */
.navbar-main-wrap {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Skewed Logo Background */
.logo-skew-bg {
    background: linear-gradient(90deg, var(--primary), var(--orange));
    /* Bright blue from screenshot */
    padding: 9px 50px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Centered Nav */
.main-nav-centered .main-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav-centered .main-menu>li>a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    padding: 30px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.main-nav-centered .main-menu>li>a:hover {
    color: #6366f1;
}

/* Sub-menu style */
.main-menu li {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.sub-menu::-webkit-scrollbar {
    width: 4px;
}

.sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 25px;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
}

.sub-menu li a:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

/* Search Wrap */
.header-search-wrap {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.header-search-wrap input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #64748b;
    width: 120px;
}

.header-search-wrap button {
    border: none;
    background: transparent;
    color: #334155;
    font-size: 14px;
}

.header-lang-icon {
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
}

/* Premium Button (Screenshot style) */
.btn-quote-premium {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.btn-quote-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

/* Sticky adjustments */
.main-header.sticky .header-top-bar {
    display: none;
}

.navbar-main-wrap {
    transition: all 0.3s ease;
}

.hero-section.premium-bg {
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 1) 0%, rgba(30, 58, 138, 1) 90%);
    padding: 180px 0 183px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-section.premium-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-label-wrap {
    display: inline-block;
}

.hero-label {
    background: linear-gradient(90deg, var(--primary), var(--orange));
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.highlight-gradient {
    background: linear-gradient(90deg, #60a5fa, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 40px;
}

/* Hero Buttons */
.btn-premium-solid {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-premium-solid:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
}

.btn-premium-outline {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-premium-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Trust Wrap */
.trust-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.trust-icons img {
    height: 32px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.trust-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.trust-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Visual Wrap */
.hero-visual-wrap {
    position: relative;
    padding: 40px;
}

.hero-main-img {
    position: relative;
    z-index: 2;
}

/* Floating Animation */
.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 10%;
    right: -20px;
    animation: floating 5s ease-in-out infinite 1s;
}

.card-2 {
    bottom: 5%;
    left: -20px;
    animation: floating 6s ease-in-out infinite 0.5s;
}

.f-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.f-card-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: 700;
}

.f-card-text strong {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

/* Hero Shape */
.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    height: auto;
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-section.premium-bg {
        padding: 100px 0 107px;
        text-align: center;
    }

    .hero-shape {
        height: auto !important;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .trust-wrap {
        display: none;
    }

    .floating-card {
        padding: 10px 15px;
    }

    .f-card-text strong {
        font-size: 16px;
    }
}

/* =============================================
   SERVICE CARDS — PREMIUM DIAMOND ICON STYLE
   ============================================= */
.services-section {
    background: #ffffff;
}

.service-card-new {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(29, 78, 216, 0.06);
    margin-bottom: 15px;
    min-height: 307px;
}

.service-card-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    border-radius: 0 0 20px 20px;
}

.service-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(29, 78, 216, 0.13);
    border-color: var(--primary);
}

/* Diamond icon shape */
.service-diamond-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transform: rotate(45deg);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
    transition: var(--transition);
}

.service-diamond-icon i {
    transform: rotate(-45deg);
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}

.service-card-new:hover .service-diamond-icon {
    background: var(--orange);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
}

.service-card-new h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-new h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card-new h3 a:hover {
    color: var(--primary);
}

.service-card-new p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   PORTFOLIO CARDS
   ============================================= */
.portfolio-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.06);
}

.portfolio-zoom {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-zoom a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.portfolio-zoom a:hover {
    background: var(--orange);
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-zoom {
    opacity: 1;
}

.portfolio-info {
    padding: 20px 24px 24px;
}

.portfolio-info h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.portfolio-info h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.portfolio-info h3 a:hover {
    color: var(--primary);
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.portfolio-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.portfolio-link:hover {
    color: var(--orange);
}

/* =============================================
   ABOUT US — PREMIUM UPGRADE
   ============================================= */
.about-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-check-item i {
    color: var(--primary-lt);
    font-size: 18px;
}

.about-check-item span {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 37px;

}

.about-call-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.about-call-box .call-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--orange), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.about-call-box .call-text span {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
}

.about-call-box .call-text a {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-lt);
    transition: var(--transition);
}

.about-call-box .call-text a:hover {
    color: var(--orange);
}

.about-img-premium img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* =============================================
   WORK PROCESS — PREMIUM TIMELINE
   ============================================= */
.process-horizontal-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
}

/* Connecting dotted line (Desktop only) */
@media (min-width: 992px) {
    .process-horizontal-wrap::before {
        content: "";
        position: absolute;
        top: 95px;
        left: 10%;
        right: 10%;
        height: 2px;
        border-top: 3px dotted #cbd5e1;
        z-index: 0;
    }
}

.process-step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-top {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    font-size: 24px;
    font-weight: 900;
    color: #1d4ed8;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #334155;
    box-shadow: inset 0 0 0 8px #fff, 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.process-step-item:hover .step-icon-circle {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 0px #fff, 0 10px 25px rgba(29, 78, 216, 0.15);
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Continuous-looking Bar */
.step-bar {
    width: 100%;
    padding: 8px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.bg-step-1 {
    background: #1d4ed8;
}

.bg-step-2 {
    background: #2563eb;
}

.bg-step-3 {
    background: #3b82f6;
}

.bg-step-4 {
    background: #60a5fa;
}

.bg-step-5 {
    background: #06b6d4;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1d4ed8;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.step-content h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1d4ed8;
}

.step-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    padding: 0 15px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .process-horizontal-wrap {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .process-step-item {
        width: 100%;
    }

    .step-bar {
        border-radius: 50px;
    }
}

/* =============================================
   TECHNOLOGY CARDS
   ============================================= */
.tech-card {
    padding: 20px 12px;
}

.tech-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

.tech-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.tcf-input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    display: block;
}

.tcf-input::placeholder {
    color: #94a3b8;
}

.tcf-input:focus {
    border-color: var(--primary-lt);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

select.tcf-input option {
    background: #fff;
    color: var(--text-dark);
}

/* =============================================
   FOOTER
   ============================================= */
#footer-wrap-layout1 .footer-top-layout1 {
    background: #0f172a !important;
    border-top: none;
}

#footer-wrap-layout1 .footer-widget-heading {
    color: #fff !important;
    font-family: var(--font-head) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#footer-wrap-layout1 .about-paragraph {
    color: #94a3b8 !important;
}

#footer-wrap-layout1 .footer-menu li a {
    color: #94a3b8 !important;
    transition: var(--transition);
}

#footer-wrap-layout1 .footer-menu li a:hover {
    color: var(--primary-lt) !important;
    padding-left: 6px;
}

#footer-wrap-layout1 .footer-contact li {
    color: #94a3b8;
}

#footer-wrap-layout1 .footer-contact a {
    color: #94a3b8 !important;
}

#footer-wrap-layout1 .footer-contact a:hover {
    color: var(--primary-lt) !important;
}

#footer-wrap-layout1 .footer-bottom-layout1 {
    background: #070d1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

#footer-wrap-layout1 .copy-right-text,
#footer-wrap-layout1 .copy-right-text a {
    color: #64748b !important;
}

#footer-wrap-layout1 .copy-right-text a:hover {
    color: var(--primary-lt) !important;
}

.tcf-social-icons {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.tcf-social-icons .social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.tcf-social-icons .social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* =============================================
   PORTFOLIO — PREMIUM SHOWCASE (SCREENSHOT STYLE)
   ============================================= */
.portfolio-grid-wrap {
    position: relative;
    padding-right: 60px;
    /* Space for vertical social bar */
}

.portfolio-card-premium {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 25px;
    /* Added gap between boxes */
}

.portfolio-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    z-index: 10;
    border-radius: 0 0 12px 12px;
}

.portfolio-card-premium:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.portfolio-img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card-premium:hover .portfolio-img-box img {
    transform: scale(1.1);
}

/* Bottom Overlay Title (Screenshot Style) */
.portfolio-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Semi-transparent dark bar */
    backdrop-filter: blur(5px);
    padding: 15px 20px 20px;
    /* Adjusted padding */
    text-align: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.portfolio-title-overlay h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-card-premium:hover .portfolio-title-overlay {
    background: var(--primary);
    /* Blue on hover */
}

/* Vertical Social Sidebar (Screenshot Style) */
.portfolio-social-vertical {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.follow-us-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.vertical-social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-social-icons li a {
    color: var(--text-dark);
    font-size: 18px;
    transition: color 0.3s ease;
}

.vertical-social-icons li a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .portfolio-grid-wrap {
        padding-right: 0;
    }

    .portfolio-social-vertical {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
        transform: none;
    }

    .follow-us-text {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 15px;
    }

    .vertical-social-icons {
        flex-direction: row;
    }
}

.tlp-preloader {
    background: #fff !important;
}

.return-to-top {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 10px !important;
}

.return-to-top:hover {
    background: #1e40af !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media(max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding: 110px 0 60px;
        min-height: auto;
    }
}

@media(max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }

    .btn-premium {
        padding: 12px 20px;
        font-size: 14px;
    }

    .premium-card {
        padding: 24px 18px;
    }
}

/* =============================================
   TECHNOLOGIES — PREMIUM SLIDER
   ============================================= */
.tech-slider-wrap {
    padding: 20px 0 50px;
}

.tech-card-slider {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tech-card-slider:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.1);
    border-color: var(--primary);
}

.tech-card-slider img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.tech-card-slider:hover img {
    transform: scale(1.1);
}

.tech-card-slider p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Swiper Navigation Custom */
.tech-swiper-container {
    padding: 20px 10px 60px;
}

.tech-swiper-container .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* =============================================
   INDUSTRIES WE SERVE � LUXURY PREMIUM
   ============================================= */
.industry-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: #f8fafc;
}

.industry-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(29, 78, 216, 0.12);
    border-color: rgba(29, 78, 216, 0.1);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
}

.icon-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #f97316;
}

.icon-purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #7c3aed;
}

.icon-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #16a34a;
}

.icon-red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
}

.icon-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    color: #0d9488;
}

.industry-card:hover .industry-icon-wrap {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.industry-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.industry-card:hover .industry-title {
    color: var(--primary);
}

.industry-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.industry-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    animation: floatShape 15s infinite linear;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 250px;
    animation: floatShape 20s infinite linear reverse;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 30px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.section-dark .industry-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark .industry-title {
    color: #f1f5f9;
}

.section-dark .industry-desc {
    color: #94a3b8;
}

.section-dark .industry-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(59, 130, 246, 0.3);
}

/* =============================================
   PREMIUM CONTACT FORM
   ============================================= */
.contact-premium-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.form-group-premium {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.tcf-input-premium {
    width: 100%;
    padding: 16px 20px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tcf-input-premium:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.1);
    outline: none;
}

.contact-label-premium {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #334155;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium-send {
    background: linear-gradient(90deg, var(--primary), #1d4ed8);
    color: #fff;
    padding: 18px 30px;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

.btn-premium-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.3);
    color: #fff;
}

.btn-premium-send i {
    transition: transform 0.3s ease;
}

.btn-premium-send:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Captcha Styling */
.captcha-box-premium {
    background: #f8fafc;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-captcha-reload-premium {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-captcha-reload-premium:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

/* =============================================
   PREMIUM FOOTER REDESIGN
   ============================================= */
.footer-wrap-layout1 {
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-top-layout1 {
    background: #1a1a1a !important;
}

.footer-widget-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: #fff !important;
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b0b0b0 !important;
    transition: all 0.3s ease;
    font-size: 15px;
    display: block;
}

.footer-menu li a:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

/* Scrollable Services List */
.footer-services-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 15px;
}

.footer-services-scroll::-webkit-scrollbar {
    width: 4px;
}

.footer-services-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-services-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Contact Info Styling */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 15px;
}

.footer-contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

/* Social Icons */
.footer-social-box {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-facebook {
    background: #1877F2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-linkedin {
    background: #0077b5;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* =============================================
   PREMIUM JOURNEY CARDS (About Us)
   ============================================= */
.journey-card-premium {
    background: #ffffff;
    border: 1px solid rgba(29, 78, 216, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    z-index: 1;
}

.journey-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.02) 0%, transparent 100%);
    z-index: -1;
}

.journey-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(29, 78, 216, 0.1);
    border-color: var(--primary);
}

.journey-step-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-card-premium h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
    transition: all 0.3s ease;
}

.journey-card-premium:hover h3 {
    color: var(--primary);
}

.journey-card-premium p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Decorative circle in background */
.journey-card-premium::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(29, 78, 216, 0.03);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.journey-card-premium:hover::after {
    background: rgba(29, 78, 216, 0.06);
    transform: scale(1.5);
}

/* =============================================
   MOBILE NAVIGATION STYLES
   ============================================= */
.mobile-nav-toggler {
    background: var(--primary);
    border: none;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-header {
    padding: 25px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close {
    background: #f1f5f9;
    border: none;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-body {
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f8fafc;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: var(--primary);
    background: #f8fafc;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fafc;
    display: none;
}

.mobile-dropdown-menu li a {
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
}

.has-dropdown-mobile.active .mobile-dropdown-menu {
    display: block;
}

.has-dropdown-mobile.active \u003e a i {
    transform: rotate(45deg);
}

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 991px) {
    .header-top-bar {
        display: none;
    }

    .navbar-main-wrap {
        padding: 10px 0;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        overflow: visible !important;
        position: relative;
        z-index: 100;
    }

    .logo-skew-bg {
        padding: 5px 20px !important;
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%) !important;
        max-width: 180px;
    }

    .navbar-logo img {
        width: 80px !important;
    }

    .mobile-nav-toggler {
        position: relative;
        z-index: 101;
        margin-right: 15px;
    }

    .hero-section {
        padding: 70px 0 80px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .premium-card {
        padding: 25px 15px !important;
    }

    .process-horizontal-wrap {
        flex-direction: column;
        gap: 25px;
    }

    .process-step-item {
        width: 100% !important;
    }

    .process-step-item::after {
        display: none;
    }

    .industry-card-new {
        margin-bottom: 20px;
    }

    .about-img-premium {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .service-card-new {
        padding: 30px 20px;
    }
}

/* =============================================
   SERVICE PAGE SPECIFIC STYLES
   ============================================= */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    /* Fallback */
}

.service-hero-banner {
    padding: 160px 0 160px;
    position: relative;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-shape svg {
    width: 100%;
    height: auto;
    display: block;
    fill: #ffffff;
}

.intro-overlap {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.intro-text-premium {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.hero-desc {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .service-hero-banner {
        padding: 120px 0 100px !important;
    }

    .hero-shape {
        bottom: -1px;
    }

    .intro-overlap {
        margin-top: -50px;
    }

    .intro-text-premium {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .service-hero-banner {
        padding: 100px 0 80px !important;
    }

    .intro-overlap {
        margin-top: -40px;
    }
}

/* Contact Page Sidebar Improvements */
.contact-sidebar .premium-card {
    text-align: center;
    padding: 35px 25px;
    height: 100%;
}

.contact-sidebar .service-diamond-icon {
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-lt));
    color: #fff;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(29, 78, 216, 0.2);
}

/* =============================================
   MOBILE NAVIGATION STYLES
   ============================================= */
.mobile-nav-toggler {
    background: var(--primary);
    border: none;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-header {
    padding: 25px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close {
    background: #f1f5f9;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f8fafc;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-nav-list li a:hover {
    color: var(--primary);
    background: #f8fafc;
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fafc;
    display: none;
}

.mobile-dropdown-menu li a {
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
}

.has-dropdown-mobile.active .mobile-dropdown-menu {
    display: block;
}

.has-dropdown-mobile.active>a i {
    transform: rotate(45deg);
}

/* =============================================
   HEADER & NAVIGATION BASE
   ============================================= */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.sticky {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

.main-header.sticky .navbar-logo img {
    filter: brightness(0);
}

.main-header.sticky .mobile-nav-toggler {
    background: var(--primary);
}

.navbar-main-wrap {}

.main-header.sticky .navbar-main-wrap {}

/* =============================================
   RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 991px) {
    body {
        padding-top: 70px !important;
    }

    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        z-index: 9999 !important;
        height: 70px;
        display: flex;
        align-items: center;
    }

    .navbar-main-wrap {
        width: 100%;
        background: #ffffff !important;
        padding: 0 15px !important;
        display: block !important;
    }

    .navbar-logo img {
        filter: brightness(1) !important;
        max-height: 40px !important;
        width: auto !important;
    }

    .logo-skew-bg {
        background: transparent !important;
        padding: 0 !important;
        clip-path: none !important;
    }

    .mobile-nav-toggler {
        background: var(--primary) !important;
        color: #ffffff !important;
        z-index: 10000 !important;
    }

    .hero-section {
        padding: 60px 0 60px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .section-padding {
        padding: 40px 0;
    }

    .premium-card {
        padding: 20px 15px !important;
    }

    .process-horizontal-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .process-step-item {
        width: 100% !important;
    }

    .process-step-item::after {
        display: none;
    }



    .hero-shape {
        margin-top: 20px;
    }

    .intro-overlap {
        margin-top: -30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 24px !important;
    }
}

/* Custom Accordion Styles for Careers Page FAQ */
.custom-accordion .accordion-button {
    font-size: 16px;
    padding: 18px 25px;
    border-radius: 12px !important;
    transition: var(--transition);
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: #f8fafc;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.custom-accordion .accordion-button:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.custom-accordion .accordion-body {
    font-size: 15px;
    padding: 20px 25px;
    line-height: 1.7;
}

/* Soft Premium Card for Careers Page Perks */
.perk-card-soft {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    height: 100%;
    z-index: 1;
}

.perk-card-soft:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.08);
    transform: translateY(-6px);
}

.perk-card-soft::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all 0.5s ease;
    z-index: -1;
}

.perk-card-soft:hover::after {
    transform: translate(20%, -20%) scale(1.3);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}

.perk-icon-soft {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perk-card-soft:hover .perk-icon-soft {
    background: linear-gradient(135deg, var(--primary), var(--orange));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.perk-title-soft {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.perk-desc-soft {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Premium Job Card Styles */
.job-card-premium {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.job-card-premium:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

/* Custom Bullet List for Modal Details */
.custom-bullet-list {
    list-style: none;
    padding-left: 0;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.custom-bullet-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 14px;
    background: rgba(59, 130, 246, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Partner Program Process Cards */
.process-card {
    border-color: transparent !important;
}
.process-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
}
.process-card:hover .process-icon-wrap {
    background: linear-gradient(135deg, var(--orange), #fbbf24) !important;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3) !important;
}
.process-icon-wrap {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}