    /* Webority Design System - Main CSS File */
    
    /* Custom Cursor Animation for IT Company */
    /* * {
    cursor: none !important;
    }
    
    .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid #ff4400;
    border-radius: 50%;
    background: rgba(255, 68, 0, 0.15);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(255, 68, 0, 0.4);
    }
    
    .cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 68, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
    background: radial-gradient(circle, rgba(255, 68, 0, 0.15) 0%, transparent 70%);
    box-shadow: 0 0 15px rgba(255, 68, 0, 0.2);
    }
    
    .cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ff4400;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 68, 0, 0.6);
    } */
    
    
    /* Text selection cursor effect */
    /* .cursor.text-cursor {
    width: 2px;
    height: 20px;
    border-radius: 1px;
    border: none;
    background: #ff4400;
    animation: blink 1s infinite;
    box-shadow: 0 0 8px rgba(255, 68, 0, 0.6);
    }
    
    @keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
    }
    
    
    @media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower,
    .cursor-trail {
    display: none !important;
    }
    
    * {
    cursor: auto !important;
    }
    } */
    
    /* Sliding Underline Link Animation */
    .link-underline {
        position: relative;
        text-decoration: none;
        display: inline-block;
    }
    
    .link-underline::after {
        content: "";
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -2px;
        left: 0;
        background-color: currentColor;
        transition: width 0.3s ease-in-out;
    }
    
    .link-underline:hover::after {
        width: 100%;
    }
    /* Import Custom Fonts using @font-face */
    /* Josefin Sans - All Available Weights & Styles */
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: normal;
        font-weight: 100;
        src: local("Josefin Sans Thin"), url("../fonts/JosefinSans-Thin.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: italic;
        font-weight: 100;
        src: local("Josefin Sans Thin Italic"), url("../fonts/JosefinSans-ThinItalic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: normal;
        font-weight: 300;
        src: local("Josefin Sans Light"), url("../fonts/JosefinSans-Light.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: italic;
        font-weight: 300;
        src: local("Josefin Sans Light Italic"), url("../fonts/JosefinSans-LightItalic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: normal;
        font-weight: 400;
        src: local("Josefin Sans Regular"), url("../fonts/JosefinSans-Regular.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: italic;
        font-weight: 400;
        src: local("Josefin Sans Italic"), url("../fonts/JosefinSans-Italic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: normal;
        font-weight: 600;
        src: local("Josefin Sans SemiBold"), url("../fonts/JosefinSans-SemiBold.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: italic;
        font-weight: 600;
        src: local("Josefin Sans SemiBold Italic"), url("../fonts/JosefinSans-SemiBoldItalic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: normal;
        font-weight: 700;
        src: local("Josefin Sans Bold"), url("../fonts/JosefinSans-Bold.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Josefin Sans";
        font-style: italic;
        font-weight: 700;
        src: local("Josefin Sans Bold Italic"), url("../fonts/JosefinSans-BoldItalic.woff") format("woff");
        font-display: swap;
    }
    /* Times LT Std - All Available Weights & Styles */
    
    @font-face {
        font-family: "Times LT Std";
        font-style: normal;
        font-weight: 400;
        src: local("Times LT Std Roman"), url("../fonts/TimesLTStd-Roman.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: italic;
        font-weight: 400;
        src: local("Times LT Std Italic"), url("../fonts/TimesLTStd-Italic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: normal;
        font-weight: 600;
        src: local("Times LT Std Semibold"), url("../fonts/TimesLTStd-Semibold.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: italic;
        font-weight: 600;
        src: local("Times LT Std Semibold Italic"), url("../fonts/TimesLTStd-SemiboldItalic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: normal;
        font-weight: 700;
        src: local("Times LT Std Bold"), url("../fonts/TimesLTStd-Bold.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: italic;
        font-weight: 700;
        src: local("Times LT Std Bold Italic"), url("../fonts/TimesLTStd-BoldItalic.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: normal;
        font-weight: 800;
        src: local("Times LT Std ExtraBold"), url("../fonts/TimesLTStd-ExtraBold.woff") format("woff");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Times LT Std";
        font-style: normal;
        font-weight: 400;
        src: local("Times LT Std Phonetic"), url("../fonts/TimesLTStd-Phonetic.woff") format("woff");
        font-display: swap;
        unicode-range: U+0250-02AF;
        /* IPA Extensions */
    }
    /* Import Design System Files */
    
    @import url("variables.css");
    @import url("base.css");
    @import url("layout.css");
    @import url("components.css");
    @import url("utilities.css");
    /* Bootstrap overrides with our design system */
    
    .btn-primary {
        --bs-btn-bg: var(--primary);
        --bs-btn-border-color: var(--primary);
        --bs-btn-hover-bg: var(--primary-30);
        --bs-btn-hover-border-color: var(--primary-30);
        --bs-btn-active-bg: var(--primary-30);
        --bs-btn-active-border-color: var(--primary-30);
    }
    
    .btn-secondary {
        --bs-btn-bg: var(--secondary);
        --bs-btn-border-color: var(--secondary);
        --bs-btn-hover-bg: var(--secondary-30);
        --bs-btn-hover-border-color: var(--secondary-30);
    }
    
    .form-control:focus {
        border-color: var(--primary)!important;
        box-shadow: none!important;
    }
    
    .invalid-feedback {
        font-family: 'Josefin Sans', serif;
        font-weight: 500;
        margin-top: 8px;
        position: absolute;
    }
    
    /* ============= Global Website Styles ================ */
    /* Smooth scrolling for anchor links */
    
    html {
        scroll-behavior: smooth;
    }
    /* Global text selection */
    
    ::selection {
        background-color: var(--primary-20);
        color: var(--primary);
    }
    /* Global focus styles for accessibility */
    
    *:focus-visible {
        outline: 0px solid var(--primary);
        outline-offset: 0px;
    }
    /* Common section spacing */
    
    .section-vertical-padding {
        padding-top: clamp(3rem, 6.75vw, 6.75rem);
        padding-bottom: clamp(3rem, 6.75vw, 6.75rem);
        overflow: hidden;
        position: relative;
    }
    
    .section-padding {
        padding: var(--space-16) 0;
    }
    
    .section-padding-sm {
        padding: var(--space-12) 0;
    }
    
    .section-padding-lg {
        padding: var(--space-20) 0;
    }
    
    .letter-spacing--2 {
        letter-spacing: -2px;
    }
    
    .border-bottom {
        border-bottom: var(--bs-border-width) var(--bs-border-style) #575757 !important;
    }
    
    .border-end {
        border-right: var(--bs-border-width) var(--bs-border-style) #575757 !important;
    }
    
    .white-card-section .border-bottom {
        border-bottom: var(--bs-border-width) var(--bs-border-style) #e0e0e0 !important;
    }
    
    .white-card-section .border-end {
        border-right: var(--bs-border-width) var(--bs-border-style) #e0e0e0 !important;
    }
    
    .dropdown-item.active,
    .dropdown-item:active {
        color: #ff4300;
        background-color: transparent;
    }
    /* Common text styles */
    
    .text-gradient-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-30));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    /* Common hover effects */
    
    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hover-lift:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    /* Loading states */
    
    .loading {
        opacity: 0.7;
        pointer-events: none;
    }
    /* Responsive images */
    
    img {
        max-width: 100%;
        height: auto;
    }
    /* Common background patterns */
    
    .bg-pattern-dots {
        background-image: radial-gradient( circle, var(--primary-10) 1px, transparent 1px);
        background-size: 20px 20px;
    }
    
    .bg-pattern-grid {
        background-image: linear-gradient(var(--primary-10) 1px, transparent 1px), linear-gradient(90deg, var(--primary-10) 1px, transparent 1px);
        background-size: 20px 20px;
    }
    /* ================= Header Styles ================ */
    
    .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient( 135deg, var(--warning) 0%, var(--warning-40) 50%, var(--informative) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
    }
    
    .navbar-brand:hover {
        transform: scale(1.02);
        transition: transform 0.2s ease;
        background: linear-gradient( 135deg, var(--warning-50) 0%, var(--warning-30) 50%, var(--informative-50) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .header-nav-link {
        position: relative;
        text-decoration: none;
        transition: width 0.3s ease;
        color: var(--text-1) !important;
        padding: 8px 0;
        background: transparent;
    }
    
    .header-nav-link.active {
        color: var(--secondary) !important;
        font-style: italic;
    }
    
    .header-nav-link.active:after {
        height: 2px;
        border-radius: 1px;
        transition: width 0.3s ease;
        position: absolute;
        content: "";
        width: 100%;
        bottom: 0px;
        left: 0;
        background: var(--primary);
    }
    
    .header-nav-link:hover {
        color: var(--secondary) !important;
        text-decoration: none;
    }
    
    .header-nav-link .nav-link.text-primary {
        color: var(--warning) !important;
        background: var(--warning-20) !important;
        font-weight: 600;
    }
    /* Enhanced Navigation Hover Effects */
    
    .header-nav-link .nav-link:hover span {
        width: 100% !important;
        background: var(--warning) !important;
    }
    
    header .nav-link span {
        transition: width 0.3s ease;
        height: 2px;
        background: var(--warning-50);
        border-radius: 1px;
    }
    /* Mobile Toggle Button Hover */
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem 0;
        border-radius: 8px;
    }
    .approach-img {
        min-height: 400px;
        width: 100%;
    }
    .navbar-toggler:hover {
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    /* Search Button Enhanced Hover */
    
    .btn-link {
        color: var(--text-1) !important;
        padding: 0.5rem !important;
        border-radius: 30px;
    }
    
    .btn-link:hover {
        color: #ff4500 !important;
        /* background: var(--secondary) !important; */
    }
    
    .btn-link i {
        transition: transform 0.3s ease;
    }
    
    .btn-link:hover i {
        transform: scale(1.35) rotate(5deg);
        transition: transform 0.3s ease;
    }
    /* Navigation Active State and Underlines */
    
    .nav-link.text-primary span {
        width: 100%;
        background: var(--warning);
    }
    
    .nav-link:not(.text-primary) span {
        width: 0;
    }
    
    .nav-link:not(.text-primary):hover span {
        width: 100%;
    }
    /* @media (min-width: 1600px) {
    .container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    }
    } */
    /* Mobile responsive adjustments */
    
    @media (max-width: 991.98px) {
        .navbar-nav {
            text-align: center;
            margin-top: 1rem;
            gap: 0.5rem;
        }
        .nav-item {
            margin: 0.25rem 0 !important;
        }
        .navbar .d-flex {
            flex-direction: column;
            gap: 1rem !important;
            margin-top: 1rem;
            align-items: center;
        }
        .btn-outline-secondary {
            padding: 0.7rem 2rem;
            font-size: 0.95rem;
        }
        .nav-link {
            padding: 0.75rem 1rem !important;
        }
    }
    /* Header Border Enhancement */
    
    .navbar.border-bottom {
        border-bottom: 1px solid var(--outline) !important;
    }
    /* Logo Text Enhancement */
    
    .navbar-brand img {
        height: auto;
        max-height: 40px;
    }
    /* No Resize Textarea */
    
    .no-resize {
        resize: none;
    }
    
    .icon-flex {
        display: flex;
        align-items: flex-end;
        line-height: normal;
    }
    
    .hero-leftSection {
        padding-right: var(--space-20);
    }
    
    .main-description {
        margin-top: var(--space-10);
        max-width: 990px;
    }
    /* accordian */
    
    .custom-accordion .accordion-item {
        border: 0;
        border-radius: 0px;
        border-bottom: 1px solid #ebedf3;
        background-color: transparent;
    }
    
    .custom-accordion .accordion-item:last-child {
        border-bottom: none;
    }
    
    .custom-accordion .accordion-button:focus {
        box-shadow: none;
    }
    
    .custom-accordion .accordion-button .collapsed {
        padding: 24px;
        font-size: 18px;
    }
    
    .custom-accordion .accordion-body {
        padding-bottom: 0;
    }
    
    .custom-accordion .accordion-body p {
        padding-bottom: 0;
        font-family: "Josefin Sans", serif;
        line-height: var(--lh-small);
    }
    
    .custom-accordion .accordion-body {
        padding-left: 0px;
        padding-right: 0px;
        width: 90%;
    }
    
    .custom-accordion .accordion-button {
        padding: 0px 0px;
        background-color: transparent;
        height: clamp(2.5rem, 3.125rem, 4rem);
    }
    
    .accordion-button::after {
        width: clamp(2rem, 3.125rem, 4rem);
        margin-left: auto;
        background-image: url(/images/black-plus.png);
        height: 100%;
        background-size: clamp(2rem, 3.125rem, 4rem) !important;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .accordion-button:not(.collapsed)::after {
        background-image: url(/images/cross.png);
        transform: none;
        background-size: clamp(2rem, 3.125rem, 4rem) !important;
        height: 100%;
    }
    
    .accordion-button {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .accordion-body {
        padding: 1rem 1.25rem;
    }
    
    .accordion-button:not(.collapsed) {
        color: var(--heading) !important;
        box-shadow: none !important;
    }
    /* Hero Section heading and subtitle Styles */
    
    .hero-heading {
        font-size: 61px;
        line-height: 1.3;
    }
    
    .hero-subheading {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .heading {
        font-size: 47px;
        font-family: "Josefin Sans", serif;
        font-weight: 400;
    }
    
    .subheading {
        font-size: 23px;
        line-height: 1.15;
        font-family: "Josefin Sans", serif;
        font-weight: 400;
    }
    
    .glow-separator-without-position {
        width: 100%;
        height: 1px;
        background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
        z-index: 2;
        pointer-events: none;
    }
    
    .glow-separator {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
        z-index: 2;
        pointer-events: none;
    }
    
    .light-theme-marquee .glow-separator {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgb(196 196 196) 46.5%, rgba(255, 255, 255, 1) 99.5%);
        z-index: 2;
        pointer-events: none;
    }
    
    .innovative-imagescontainer {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .innovative-img1 {
        width: 100%;
        max-width: 100%;
    }
    
    .innovative-img2 {
        width: 38%;
    }
    
    .innovative-img3 {
        width: 58%;
    }
    
    .innovative-leftcontainer {
        flex-direction: column;
        align-items: center;
        display: flex;
        padding-right: clamp(1.5rem, 6vw, 6.5rem);
    }
    /* font style normal */
    
    .font-style-normal {
        font-style: normal !important;
    }
    /* React Native Advantages Section Styles */
    
    .react-native-logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    .react-native-logo-container svg {
        filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.3));
    }
    
    .advantage-item.advantage-item-secondlast .glow-separator {
        display: block;
    }
    
    .advantage-item {
        padding-bottom: 35px;
        margin-bottom: 35px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .advantages-content .glow-separator {
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(196 196 196 / 80%) 50%, rgba(255, 255, 255, 0) 100%);
    }
    
    .advantage-item:last-child {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    
    .advantage-item:last-child {
        border-bottom: none;
    }
    
    .advantage-item h4 {
        color: #2c3e50;
        margin-bottom: 0.75rem;
        position: relative;
    }
    
    .offeringnumber {
        padding-right: 20px;
        font-size: 66px;
        line-height: 68px;
    }
    
    .extensive-range:hover .offeringnumber {
        color: var(--primary);
    }
    /* Stats Counter Section */
    
    .stats-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 8px;
        position: relative;
    }
    
    .stats-number {
        font-size: clamp(3rem, 8vw, 6rem);
        line-height: 1;
        display: inline-block;
        margin-right: -5px;
    }
    
    .stats-suffix {
        display: inline-block;
        font-size: 60px;
        line-height: 1;
    }
    
    .stats-label {
        font-size: 1.3rem;
        bottom: 0;
        margin: auto;
        height: 20px;
    }
    
    .light-section .stats-card {
        color: #181C32;
    }
    
    .light-section .stats-suffix,
    .dark-section .stats-suffix {
        color: #FF4400;
    }
    
    .dark-section .stats-card,
    .dark-section .stats-label,
    .dark-section h2 {
        color: #FFFFFF !important;
    }
    /* Animation for counters */
    
    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .stats-card.animate-in {
        animation: countUp 0.6s ease-out;
    }
    /* Let’s Build the future Together! */
    
    .letstalk-backgroundimage {
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 94%;
        background-image: url(/images/letsbuild-bg.png);
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
        z-index: 1;
    }
    /* language card design*/
    
    .built-to-perform-ul {
        list-style: none;
        padding: 0px 10px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 0px;
    }
    
    .built-to-perform-ul li {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 25%;
        margin-bottom: 0px;
        padding: 30px 5px;
        align-items: center;
        justify-content: center;
    }
    
    .built-to-perform-ul li::before {
        content: "";
        position: absolute;
        inset: 1px;
        background: #000;
        z-index: 0;
    }
    
    .built-to-perform-ul li:nth-child(1)::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: linear-gradient( to left, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3));
    }
    
    .built-to-perform-ul li:nth-child(1) {
        border-right: 1px solid transparent;
        border-image: linear-gradient( to top, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(2) {
        border-bottom: 1px solid transparent;
        border-right: 1px solid transparent;
        border-image: linear-gradient( to top, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(3) {
        border-bottom: 1px solid transparent;
        border-right: 1px solid transparent;
        border-image: linear-gradient( to top, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(4) {
        border-bottom: 1px solid transparent;
        border-image: linear-gradient( to right, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(5) {
        border-right: 1px solid transparent;
        border-image: linear-gradient( to bottom, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(6) {
        border-right: 1px solid transparent;
        border-image: linear-gradient( to bottom, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(7) {
        border-right: 1px solid transparent;
        border-image: linear-gradient( to bottom, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(8) {
        border-image: linear-gradient( to bottom, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .built-to-perform-ul li:nth-child(9) {
        border-right: 1px solid transparent;
        border-image: linear-gradient(to bottom, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .technology-icon {
        width: 100px;
    }
    
    .tech-box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 9;
    }
    
    .tech-box span {
        font-family: 'Josefin Sans', serif;
        font-weight: 500;
        font-size: 20px;
    }
    
    .scalable-technologies.built-to-perform-ul li {
        width: 20%;
    }
    
    .scalable-technologies.built-to-perform-ul li:nth-child(4) {
        border-right: 1px solid transparent;
        border-bottom: 1px solid transparent;
        border-image: linear-gradient( to top, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .scalable-technologies.built-to-perform-ul li:nth-child(8) {
        border-right: 1px solid transparent;
        border-image: linear-gradient( to bottom, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    
    .scalable-technologies.built-to-perform-ul li:nth-child(5) {
        border-right: none;
        border-bottom: 1px solid transparent;
        border-image: linear-gradient( to right, rgba(110, 110, 110, 0.6), rgba(110, 110, 110, 0.3)) 1;
    }
    /* full width carousel css */
    
    .full-width-carousel .owl-nav button.disabled .prev-arrow {
        content: url("/images/carousel-prev-disabled-button.png");
    }
    
    .full-width-carousel .owl-nav button.disabled .next-arrow {
        content: url("/images/carousel-next-disabled-button.png");
    }
    
    .full-width-carousel .owl-nav button:hover .prev-arrow {
        content: url("/images/carousel-next-hover-button.png");
    }
    
    .full-width-carousel .owl-nav button:hover .next-arrow {
        content: url("/images/carousel-prev-hover-button.png");
    }
    
    .full-width-carousel .owl-nav img {
        width: clamp(60px, 8vw, 70px);
        height: auto;
        transition: 0.3s ease;
    }
    
    .full-width-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
        background: transparent;
    }
    
    .full-width-carousel .success-story-card {
        background-color: #141414;
        padding: 24px;
    }
    
    .full-width-carousel .success-story-image-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .full-width-carousel.owl-theme .owl-nav {
        margin-top: var(--space-10);
        gap: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* #### rotate animation ### */
    
    .rotate-animation {
        animation: rotate 75s linear infinite;
    }
    
    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    /* 3d-bg */
    
    .react-native-3d {
        position: absolute;
        bottom: 0px;
        left: 0px;
        max-width: 497px;
    }
    /* tailored */
    
    .tailored-img {
        width: 141px;
    }
    
    .tailored-realResults {
        display: block;
    }
    /* hero-img */
    
    .hero-image {
        width: 115px;
        margin: 0px 14px 0px;
        position: relative;
        bottom: 7px;
    }
    /* how we build apps */
    
    .strategies-mobileApp {
        display: block;
    }
    
    .strategy-img {
        width: clamp(8rem, 11.25rem, 13rem);
    }
    /* Contact Info Section */
    
    .contact-info-section {
        position: relative;
    }
    
    .contact-info-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 35%;
        width: 285px;
        height: 172px;
        background-image: url(/images/form-top-bg.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .contact-info-section::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 601px;
        height: 330px;
        background-image: url(/images/form-bottom-bg.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .cubic-img-wrapper {
        width: 450px;
        height: 450px;
        position: absolute;
        right: 30px;
        bottom: 30px;
        z-index: -1;
    }
    /* Our trusted clients section */
    
    .clients-width-carousel .success-story-card {
        background-color: #141414;
        padding: 15px;
    }
    
    .our-trusted-clients {
        padding: var(--space-24) var(--space-12) !important;
    }
    
    .four-cards h2 {
        font-family: 'Josefin Sans', serif;
        font-weight: 700;
        font-style: normal;
        font-size: var(--fs-20);
        margin-top: 50px;
        margin-bottom: 0;
    }
    
    .four-cards h4 {
        font-family: 'Josefin Sans', serif;
        font-weight: 400;
        font-style: normal;
        font-size: var(--fs-20);
        margin-top: 5px;
        margin-bottom: 24px;
    }
    
    .four-cards p {
        font-size: 20px;
    }
    
    .four-cards-item img {
        transition: all 0.3s ease;
        width: 100px;
    }
    
    .four-cards-item:hover h2,
    .four-cards-item:hover h4 {
        color: #ff4500;
    }
    
    .four-cards-item:hover img {
        transform: scale(1.1);
    }
    
    .custom-chooseservice-br,
    .tailored-heading-br,
    .doubleitem-br {
        display: block;
    }
    /* CTA Button Enhanced Styles - secondary Color Theme */
    
    .btn-outline-secondary {
        padding: .6rem 2rem !important;
    }
    
    .iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
        width: 100% !important;
    }
    /* testimonial arrow */
    
    .testimonials .heading {
        color: #161a21 !important;
    }
    
    .testimonials.bg-black .heading {
        color: #ffffff !important;
    }
    
    .testimonials .heading {
        color: #161a21 !important;
    }
    
    .testimonials .nav-prev img {
        width: 25px;
    }
    
    .testimonials .nav-next img {
        width: 25px;
    }
    
    .testimonials .nav-prev:hover img {
        filter: invert(1);
    }
    
    .testimonials .nav-next:hover img {
        filter: invert(1);
    }
    
    .testimonials.dark-theme .nav-btn {
        background-color: var(--black);
        border-color: var(--text-4);
    }
    
    .testimonials.dark-theme .nav-prev img {
        filter: invert(1);
    }
    
    .testimonials.dark-theme .nav-next img {
        filter: invert(1);
    }
    
    .testimonials.dark-theme .nav-prev:hover img {
        filter: invert(1);
    }
    
    .testimonials.dark-theme .nav-next:hover img {
        filter: invert(1);
    }
    
    .testimonials.dark-theme .nav-btn:hover {
        background-color: #333333;
    }
    
    .primary-heading {
        line-height: normal;
        font-size: 40px;
        font-weight: 600;
        color: var(--primary);
        font-family: "Josefin Sans", serif;
    }
    
    .features-leftsection {
        padding-right: var(--space-20);
    }
    
    .features-rightsection {
        padding-left: var(--space-20);
    }
    
    .react-icon {
        margin: 0 clamp(6px, 2vw, 10px);
        width: 115px;
        position: relative;
        bottom: 7px;
    }
    
    .form-note {
        font-size: 16px;
    }
    
    .form-head {
        font-size: 24px;
        font-weight: 500;
        font-family: "Josefin Sans", serif;
        margin-bottom: 30px;
    }
    
    .automotive-feature-box span {
        background-color: #f5f5f5;
        color: #333;
        padding: 10px 14px;
        border-radius: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
        display: inline-block;
        white-space: nowrap;
        width: auto;
        font-size: 18px;
    }
    
    .automotive-feature-box span:hover {
        background-color: rgba(255, 68, 0, 0.1);
        color: var(--primary);
    }
    
    .automotive-feature-box {
        gap: 15px;
    }
    
    .automotive-feature-container span {
        height: 40px;
        width: 40px;
        border-radius: 20px;
        background-color: var(--bg-light);
        font-size: 20px;
        font-weight: 400;
        color: var(--text-1);
        align-items: center;
        justify-content: center;
        display: flex
        ;
        padding-top: 5px;
        margin-right: 16px;
    }
    
    .automotive-feature-container:hover span {
        color: var(--text-5);
        background-color: var(--primary);
    }
    
    .automotive-feature-container h4 {
        font-size: 24px;
        font-weight: 400;
        color: var(--heading);
    }
    
    /* parallax */
    .parallax-effect{
        overflow: hidden;
        position: relative;
        width: 100%;    
        background-attachment: fixed;
        -moz-background-size: 100% 100%;
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: 0px 100px;
        display: flex;
        justify-content: center;
    }
    .parallax-heading {
        font-size: 82px;
        font-weight: 700;
        font-family: 'Josefin Sans';
        color: var(--text-5);
        text-align: center;
        align-self: center;
        
    }
    
    /* ========================================
    Video Section Styles 
    ======================================== */
    
    .video-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;  
        height: clamp(400px, 75vh, 750px);
        overflow: hidden;
    }
    
    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
    }
    
    .video-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;                    
        transition: opacity 0.3s ease;  /* fade in/out */
        pointer-events: none;           /* clickable only when visible */
    }
    
    /* Show overlay when wrapper hovered */
    .video-wrapper:hover .video-overlay {
        opacity: 1;
        pointer-events: auto;
    }
    
    .play-btn {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1); /* transparent bubble */
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        box-shadow: 
        inset -8px -8px 20px rgba(255,255,255,0.4),  
        inset 8px 8px 20px rgba(0,0,0,0.3),          
        0 0 25px rgba(255,255,255,0.3);  /* outer glow halka */
        border: 1px solid rgba(255,255,255,0.6);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Play triangle */
    .triangle {
        width: 0;
        height: 0;
        border-left: 40px solid white;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
    }
    
    /* Hover effect (kam shadow) */
    .play-btn:hover {
        transform: scale(1.08);
        box-shadow: 
        inset -6px -6px 18px rgba(255,255,255,0.3),
        inset 6px 6px 18px rgba(0,0,0,0.25),
        0 0 30px rgba(255,255,255,0.5);  /* thoda subtle glow */
    }
    
    /* White triangle (Play) */
    .triangle {
        width: 0;
        height: 0;
        border-left: 30px solid #fff;
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        margin-left: 8px;
    }
    /* Pause icon */
    .pause-icon {
        width: 30px;
        height: 36px;
        display: flex;
        justify-content: space-between;
    }
    .pause-icon span {
        width: 10px;
        height: 100%;
        background: #fff;
    }
    
    
    /* ========================================
    About and culture Styles 
    ======================================== */
    
    .about-hero-image {
        position: absolute;
        height: 624px;
        right: 0;
        top: 0;
    }
    
    .about-hero-image img {
        height: 100%;
    }
    
    .text-subheading{
        color: var(--text-1) ;
    }
    
    .dark-section .text-subheading{
        color: var(--text-3);
    }
    
    /* ========================================
    Enhanced Cursor Animation Effects for IT Company
    ======================================== */
    
    /* Magnetic effect for buttons and cards */
    .magnetic-element {
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Glitch effect for tech elements */
    @keyframes glitch {
        0% { transform: translateX(0); }
        20% { transform: translateX(-2px); }
        40% { transform: translateX(2px); }
        60% { transform: translateX(-1px); }
        80% { transform: translateX(1px); }
        100% { transform: translateX(0); }
    }
    
    .tech-glitch:hover {
        animation: glitch 0.3s infinite;
    }
    
    /* Neon glow effect for navigation and buttons */
    .neon-hover {
        position: relative;
        transition: all 0.3s ease;
    }
    
    .neon-hover:hover {
        text-shadow: 0 0 5px rgb(255 68 0 / 0%), 0 0 10px rgb(255 68 0 / 0%), 0 0 15px rgba(255, 68, 0, 0.4), 0 0 20px rgba(255, 68, 0, 0.2);
        
    }
    
    /* Circuit board pattern overlay for cursor */
    .cursor-tech-overlay {
        position: fixed;
        pointer-events: none;
        z-index: 9996;
        width: 100px;
        height: 100px;
        opacity: 0;
        transition: opacity 0.3s ease;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="%23ff4400" stroke-width="1"/><circle cx="20" cy="20" r="2" fill="%23ff4400"/><circle cx="80" cy="20" r="2" fill="%23ff4400"/><circle cx="20" cy="80" r="2" fill="%23ff4400"/><circle cx="80" cy="80" r="2" fill="%23ff4400"/></svg>') center/contain no-repeat;
    }
    
    /* Enhanced hover states for industry cards */
    .industry-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 68, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .industry-card:hover::before {
        left: 100%;
    }
    
    /* Particle effect for cursor trail */
    @keyframes particle-float {
        0% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
        100% {
            transform: translateY(-20px) scale(0);
            opacity: 0;
        }
    }
    
    .cursor-particle {
        position: fixed;
        width: 4px;
        height: 4px;
        background: #ff4400;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9995;
        animation: particle-float 1s ease-out forwards;
    }
    
    /* Tech grid background for cursor area */
    .cursor-grid-bg {
        position: fixed;
        pointer-events: none;
        z-index: 9994;
        width: 200px;
        height: 200px;
        opacity: 0;
        transition: opacity 0.3s ease;
        background: 
        linear-gradient(rgba(255, 68, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 68, 0, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
    }
    
    /* Pulse animation for interactive elements */
    @keyframes pulse-glow {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 68, 0, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(255, 68, 0, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(255, 68, 0, 0);
        }
    }
    
    .pulse-on-hover:hover {
        animation: pulse-glow 1s infinite;
    }
    
    /* Matrix-style cursor trail */
    .matrix-trail {
        position: fixed;
        pointer-events: none;
        z-index: 9993;
        font-family: 'Courier New', monospace;
        font-size: 12px;
        color: #ff4400;
        opacity: 0.7;
        animation: matrix-fade 2s ease-out forwards;
    }
    
    @keyframes matrix-fade {
        0% {
            opacity: 0.7;
            transform: translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateY(-30px);
        }
    }
    /* project cards case study */
    .view-details-cursor:hover *{
        cursor: url('/images/view-details-cursor.png') 40 40, pointer !important;
        transition: transform 0.3s ease;
    }
    .project-card:hover .go-to-details h4 {
        color: var(--primary);
    }
    
    .project-card:hover .go-to-details img {
        filter: brightness(0) saturate(100%) invert(35%) sepia(92%) saturate(7483%) hue-rotate(4deg) brightness(102%) contrast(106%);
        transform: scale(1.05);
    }
    .width-28 {
        width: 28px !important;
    }
    .tags-list {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    .project-tag {
        border: 1px solid var(--text-3);
        padding: 15px 20px;
        padding-bottom: 12px;
        display: inline-block;
        border-radius: 40px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    .position-minus-top{
        position: absolute;
        top: -100px;
    }
    
    
    /* Case studies details page styles */
    .carousel-tagline {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-1);
        font-family: 'Josefin Sans';
    }
    
    .project-tags {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .tag {
        font-size: 20px;
        font-weight: 400;
        color: var(--text-1);
        position: relative;
        font-family: 'Josefin Sans';
        padding: 15px 0px;
        padding-bottom: 12px;
        display: inline-block;
        border-radius: 40px;
        transition: all 0.3s ease;
    }
    
    
    .tag:not(:first-child)::before {
        content: "";
        background-color: #B5B5C3;
        height: 5px;
        width: 5px;
        border-radius: 50%;
        position: absolute;
        left: -17px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-image {
        width: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: -25px;
    }
    
    .logo-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .project-overview {
        padding-right: 40px;
    }
    
    .section-title {
        font-size: 36px;
        font-weight: 400;
        color: var(--heading);
        font-family: 'Josefin Sans';
        margin-bottom: 30px;
        font-style: italic;
    }
    
    .feature-list {
        margin-top: 40px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
        padding: 24px 0px;
    }
    
    .feature-number {
        font-size: 42px;
        color: var(--primary);
        font-family: 'Times LT Std', serif;
        font-weight: 400;
        font-style: italic;
        margin-bottom: 0;
    }
    
    .feature-text {
        font-size: 24px;
        color: var(--text-5);
        margin-bottom: 0;
        font-family: 'Josefin Sans';
        font-weight: 400;
    }
    
    .project-details {
        padding-left: 40px;
    }
    
    .detail-item {
        margin-bottom: 40px;
        padding-bottom: 20px;
        position: relative;
    }
    
    .detail-label {
        font-size: 18px;
        color: var(--text-2);
        margin-bottom: 10px;
        font-family: 'Times LT Std', serif;
        font-weight: 400;
        font-style: italic;
    }
    
    .detail-value {
        font-size: 20px;
        font-weight: 400;
        color: var(--text-5);
        margin: 0;
        font-family: 'josefin Sans';
    }
    
    .platform-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .platform-icons img {
        width: 20px;
    }
    
    .project-overview-heading {
        font-size: 48px;
        color: var(--text-5);
        font-family: 'Times LT Std', serif;
        font-weight: 400;
        font-style: italic;
        margin-bottom: 0;
    }
    
    .carousel-tag {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-1);
        font-family: 'Josefin Sans';
        display: inline-block;
        border-radius: 40px;
        border: 1px solid var(--text-3);
        padding: 10px 18px 8px 18px;
        line-height: 1.2;
        vertical-align: middle;
        transition: all 0.3s ease;
        margin-bottom: 0;
    }
    
    .navigation-buttons {
        display: flex;
        align-items: center;
    }
    
    .nav-btn-carousel {
        background: transparent;
        border: none;
        padding: 12px 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--text-5);
        font-family: 'Times LT Std', serif;
        font-size: 36px;
        font-weight: 400;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        font: italic;
    }
    
    .nav-btn-carousel:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        transform: translateY(-2px);
    }
    
    .nav-btn-carousel:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        background: transparent;
        border-color: var(--text-3);
        color: var(--text-3);
    }
    
    .carousel-item {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .carousel-nav-placeholder .owl-nav,
    .carousel-nav-placeholder .owl-prev,
    .carousel-nav-placeholder .owl-next {
        display: flex;
        background-color: transparent;
        border: none;
        gap: 0;
    }
    
    .carousel-nav-placeholder .owl-prev {
        padding-right: 30px;
        border-right: 2px solid #3F4254;
    }
    
    .carousel-nav-placeholder .owl-next {
        padding-left: 30px;
    }
    
    .nav-text {
        font-size: 36px;
        font-weight: 400;
        font-family: 'Times LT Std', serif;
        color: var(--text-5);
        font-style: italic;
    }
    
    .carousel-arrow {
        width: 28px;
        height: 21px;
        padding-bottom: 6px;
    }
    
    .mr10 {
        margin-right: 10px;
    }
    
    .carousel-arrow {
        filter: none;
        transition: filter 0.3s ease, transform 0.3s ease;
    }
    
    
    .carousel-nav-placeholder .owl-prev:hover .nav-text,
    .carousel-nav-placeholder .owl-next:hover .nav-text {
        color: var(--primary);
    }
    
    .mobile-graphics {
        height: 700px;
        background-image: url(/images/dummy-mobile-graphics.png);
    }
    
    .project-image {
        background-image: url(/images/sansad-banner.png);
        height: 600px;
        display: flex;
        justify-content: center;
    }
    
    
    /* blog details */
    .tech-tag .tag {
        border: 1px solid var(--text-2);
        border-radius: 110px;
        padding: 16px 30px 14px 30px;
        background: transparent;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: space-around;
    }
    
    /* Text Transform Utility */
    .text-none {
        text-transform: none;
    }
    .tag-blog {
        border: 1px solid var(--text-3);
        padding: 15px 20px 12px 20px;
        display: inline-block;
        border-radius: 40px;
        transition: all 0.3s ease;
    }
    /* Social Section */
    .social-section-blog {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .width-46 {
        width: 46px;
    }
    /* Blog Content Section Headers */
    .success-story-content-blog h4::before {
        content: "";
        display: inline-block;
        width: 34px;
        height: 4px;
        background-color: var(--primary);
        margin-right: 0.5rem;
        vertical-align: middle;
        position: relative;
        bottom: 4px;
    }
    .border-bottom-light {
        border-bottom: 1px solid var(--Outline, #EBEDF3) !important;
    }
    
    .border-top-light {
        border-top: 1px solid var(--Outline, #EBEDF3);
    }
    .list-disc{
        list-style-type: disc;
    }
    .list-disc li::marker {
        color: var(--secondary);
    }
    .innovative-topimagescontainer {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .width-100 {
        width: 100px;
    }
    
    /* Navigation Styles */
    .nav {
        display: flex;
        align-items: center;
        gap: 0px;
        justify-content: space-between;
        height: 100%;
    }
    
    /* Vertical Tab Styles */
    ul#appTab li {
        width: 100%;
        height: calc(16.66666% - 10px);
        margin-bottom: 0 !important;
    }
    
    .nav-link.vertical-tab.active {
        background-color: #ff3c00;
        color: #fff;
        height: 100%;
    }
    
    .nav-link.vertical-tab {
        background-color: #141414;
        color: #fff;
        border-radius: 0.1rem;
        padding: 16px 18px;
        font-weight: 700;
        display: flex;
        height: 100%;
        font-size: 1.1rem;
        transition: background-color 0.3s;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    
    /* Approach Image Styles */
    .approach-img {
        height: clamp(25rem, 30vw, 40rem);
        width: 100%;
    }