/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

.learn-more-button-container {
    position: absolute;
    bottom: 50.4%;
    left: 15.1%;
    z-index: 10;
}


.learn-more-btn {
    font-size: 0.9vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #FF8F00 0%, #FF0D00 50%);
    background-size: 200% 100%;
    border: none;
    border-radius: 0.4em;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 143, 0, 0.08);
    text-decoration: none;
    display: inline-block;
    margin: 1vw 0 0 0;
    width: 13vw;
    height: 2.2vw;
    margin-top: 3vw;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.3);
    background-position: 100% 0;
}

.learn-more-btn:hover::before {
    left: 100%;
}



body {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6;
    background-color: #121212;
    opacity: 0;
    animation: pageLoad 0.8s ease 0.1s both;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
}

/* Force Inter font on all elements */
* {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Page container for flexbox layout */
.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Page load animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from left */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from right */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade in from bottom */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating animation for background elements */
@keyframes float {

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

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

/* Pulse animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glow animation */
@keyframes glow {

    0%,
    100% {
        filter: blur(1px) brightness(1);
        opacity: 0.4;
    }

    50% {
        filter: blur(2px) brightness(1.2);
        opacity: 0.6;
    }
}

.container {
    width: 90vw;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2vw;
}

/* Header and Navigation */
.header {
    background: #121212;
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    border-bottom: 0.3px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 81, 0, 0.05) 14.9%, #FF5100 50%, rgba(255, 81, 0, 0.05) 82.21%);
    border-image-slice: 1;
    animation: fadeInUp 1s ease 0.2s both;
    display: flex;
    justify-content: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 2vw 0.5vw 2vw;
    height: 5.5vw;
    max-width: 1440px;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    animation: fadeInLeft 1s ease 0.4s both;
}

.logo {
    width: 3vw;
    height: 3vw;
    margin-right: 0.5vw;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.brand-text {
    font-size: 1.7vw;
    color: #fff;
    transition: color 0.3s ease;
}

.nav-brand:hover .brand-text {
    background: linear-gradient(90deg, #FF5100 0%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 0.5vw;
    list-style: none;
    animation: fadeInRight 1s ease 0.6s both;
}

.nav-link {
    font-size: 1.1vw;
    color: #fff;
    text-decoration: none;
    padding: 0.5vw 1vw;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(180deg, #FF8F00 3.33%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    font-weight: 700;
}

/* Hero Section */
.hero-responsive-wrapper {
    width: 100vw;
    aspect-ratio: 16/7;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/service/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: scaleIn 1.2s ease 0.8s both;
    z-index: -1;
    display: flex;
    justify-content: center;
}

.hero-content-container {
    max-width: 1440px;
    width: 100%;
    position: relative;
}

.hero.custom-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: transparent;
    padding: 0;
    margin: 0;
}



.hero.custom-hero {
    background: transparent;
    padding-top: 5%;
}

.hero-inner {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 0;
    gap: 0;
    padding: 0% 3% 0 3%;
}

.hero-left,
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.hero-left {
    width: 70%;
    height: 100%;
    animation: fadeInLeft 1.2s ease 1s both;
}

.hero-right {
    width: 37%;
    height: 100%;
}

.hero-right {
    align-items: flex-end;
    justify-content: center;
    animation: fadeInRight 1.2s ease 1.2s both;
}

.hero-logo-svg {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    opacity: 0.7;
    transform: translateY(-2vw) !important;
    transition: transform 0.3s ease;
}

.hero-logo-svg:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-heading-anim {
    font-size: 4.4vw;
    line-height: 1.05;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #EBEBEB;
    margin: 0;
    padding: 0;
    width: 120%;
    text-decoration: none;
}

.hero-heading-gradient-wrapper {
    height: 1em;
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.hero-heading-gradient-text {
    font-size: inherit;
    line-height: 1.05;

    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(40%);
    background: linear-gradient(78.33deg, #FF8F00 15.54%, #FF5100 69.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

/* .hero-heading-gradient-text.active {
    opacity: 1;
    position: static;
    transform: translateY(0);
} */

.hero-subheading {
    font-size: 1.68vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    color: #FF5100;
    margin: 1vw 0 0 0;
    padding: 0;
    width: 70%;
    text-decoration: none;
    animation: fadeInUp 1s ease 1.4s both;
    line-height: normal;
}

.hero-description {
    animation: fadeInUp 1s ease 1.6s both;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: none;
    border-radius: 0;
    line-height: normal;
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    margin: 1vw 0 0 0;
    padding: 0;
    width: 71%;
}


.hero-cta.cta-button {
    font-size: 1.3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    border: none;
    border-radius: 0.4em;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 143, 0, 0.08);
    text-decoration: none;
    display: inline-block;
    margin: 2vw 0 0 0;
    width: 18vw;
    height: 3.2vw;
    animation: fadeInUp 1s ease 1.8s both;
    position: relative;
    overflow: hidden;
}

.services-cta.cta-button {
    font-size: 1.3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 25%);
    background-size: 200% 100%;
    border: none;
    border-radius: 0.4em;
    align-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 143, 0, 0.08);
    text-decoration: none;
    display: inline-block;
    margin: 1vw 0 0 0;
    width: 20vw;
    height: 3.5vw;
    animation: fadeInUp 1s ease 1.8s both;
    position: relative;
    overflow: hidden;
}

.service-tabs-wrapper {
    margin-top: 2%;
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.service-tabs-wrapper-2 {
    margin-top: 6.5%;
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.service-tabs-content {
    /* max-width: 1440px; */
    width: 100%;
    /* padding: 0 2vw; */
    position: relative;
}

.service-tabs-content-2 {
    /* max-width: 1440px; */
    width: 100%;
    /* padding: 0 2vw; */
    position: relative;
}

.glow-background-services {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    pointer-events: none;
    width: 100vw;
}

.glow-svg {
    width: 100vw;
    height: auto;
    opacity: 0.4;
    filter: blur(1px);
    animation: glow 4s ease-in-out infinite;
}

.hero-cta.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-cta.cta-button:hover {
    box-shadow: 0 4px 16px rgba(255, 81, 0, 0.16);
    transform: translateY(-3px) scale(1.02);
    background-position: 100% 0;
}

.hero-cta.cta-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background-image: url('../assets/service/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 3vw 0 1vw 0;
    font-size: 1vw;
    letter-spacing: 0.01vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    margin-top: auto;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.footer-container {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr 1.2fr 1.8fr;
    gap: 3vw;
    width: 90vw;
    max-width: 1440px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.7vw;
    margin-bottom: 1vw;
}

.footer-logo-svg {
    width: 2.2vw;
    height: 2.2vw;
}

.footer-brand-text {
    font-size: 1.5vw;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05vw;
}

.footer-info p {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-size: 0.8vw;
}

.footer-info h3 {
    margin: 0 0 0.5vw 0;
    color: #ccc;
    font-weight: 500;
    font-size: 1vw;
}

.footer-link.highlight {
    color: #FF8F00;
}

.footer-note {
    color: #aaa;
    font-size: 0.85vw;
    margin-top: 0.5vw;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1vw;
    font-weight: 600;
    margin-bottom: 1vw;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7vw;
}

.footer-col ul li {
    color: #ccc;
    font-size: 1vw;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-link.highlight:hover {
    color: #FF8F00;
}

.footer-icon {
    color: #FF8F00;
    font-size: 1.1vw;
    vertical-align: middle;
    margin-right: 0.5vw;
}

.footer-icon img {
    width: 1.1vw;
    height: 1.1vw;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.footer-icon img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2vw;
    color: #aaa;
    font-size: 0.95vw;

}

/* Service Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #121212;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #333;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 143, 0, 0.15);
    border-color: #FF8F00;
}

.service-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.period {
    font-size: 1rem;
    color: #666;
}

.service-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 100%;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background-position: 100% 0;
}

.service-button:hover::before {
    left: 100%;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #000000;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.additional-services-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.additional-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: #222222;
    box-shadow: 0 15px 35px rgba(255, 143, 0, 0.3);
    border-color: #FF8F00;
}

.additional-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.additional-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.cta-section-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Tabs Bar Styles */
.service-tabs-bar {
    max-width: 1440px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1vw;
    row-gap: 1.5vw;
    justify-content: left;
    margin: 0 auto 2vw auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    position: relative;
    z-index: 5;
    padding-left: 2vw;
}

.service-tabs-bar-2 {
    max-width: 1440px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1vw;
    row-gap: 1.5vw;
    justify-content: left;
    margin: 0 auto 2vw auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    position: relative;
    z-index: 5;
    padding-left: 2vw;
}

.service-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.52vw;
    border-radius: 36px;
    border-width: 0.052vw;
    border-style: solid;
    border-color: #575757;
    background: transparent;
    color: #fff;
    font-size: 1.3vw;
    font-weight: 400;
    font-family: inherit;
    padding: 0.52vw 1.6vw;
    width: auto;
    min-width: fit-content;
    height: 2.9vw;
    cursor: pointer;
    opacity: 1;
    outline: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}


.service-tab-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.52vw;
    border-radius: 36px;
    border-width: 0.052vw;
    border-style: solid;
    border-color: #575757;
    background: transparent;
    color: #fff;
    font-size: 1.3vw;
    font-weight: 400;
    font-family: inherit;
    padding: 0.52vw 1.6vw;
    width: auto;
    min-width: fit-content;
    height: 2.9vw;
    cursor: pointer;
    opacity: 1;
    outline: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.service-tab.selected {
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%, #FF0D00 100%);
    border: none;
    border-radius: 36px;
    position: relative;
    /* padding: 2px;  */
    z-index: 2;
    font-weight: 600;
}

.service-tab.selected::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: rgba(18, 18, 18, 0.8);
    border-radius: calc(36px - 2px);
    z-index: -1;
}

.service-tab-2.selected {
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%, #FF0D00 100%);
    border: none;
    border-radius: 36px;
    position: relative;
    /* padding: 2px;  */
    z-index: 2;
    font-weight: 600;
}

.service-tab-2.selected::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: rgba(18, 18, 18, 0.8);
    border-radius: calc(36px - 2px);
    z-index: -1;
}

/* Responsive border thickness */
@media (max-width: 768px) {
    .service-tab.selected {
        padding: 1.5px;
    }

    .service-tab-2.selected {
        padding: 1.5px;
    }

    .service-tab.selected::before {
        top: 1px;
        left: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        border-radius: calc(24px - 1px);
    }

    .service-tab-2.selected::before {
        top: 1px;
        left: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        border-radius: calc(24px - 1px);
    }
}

@media (max-width: 480px) {
    .service-tab.selected {
        padding: 1px;
    }

    .service-tab-2.selected {
        padding: 1px;
    }

    .service-tab.selected::before {
        top: 1px;
        left: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        border-radius: calc(36px - 1px);
    }

    .service-tab-2.selected::before {
        top: 1px;
        left: 1px;
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        border-radius: calc(24px - 1px);
    }
}

.service-tab.selected span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.47vw 0.8vw;
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-tab-2.selected span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.47vw 0.8vw;
    background: linear-gradient(90deg, #FF8F00 0%, #FF5100 50%, #FF0D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content-wrapper {
    width: 100vw;
    /* Keep full width for background */
    display: flex;
    justify-content: center;
    position: relative;
    background-image: url('../assets/service/scan_bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-content-wrapper-2 {
    width: 100vw;
    /* Keep full width for background */
    display: flex;
    justify-content: center;
    position: relative;
    background-image: url('../assets/service/scan_bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scan-image {
    position: relative;
    z-index: 6;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
    margin: 0 auto;
    margin-bottom: 2vw;
}

.scan-image:hover {
    transform: scale(1.02);
}

#service-image-container {
    max-width: 1440px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    opacity: 1;
    margin-top: -8vw;
}

#service-image-container-2 {
    max-width: 1440px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    opacity: 1;
    margin-top: -8vw;
}

#service-image-container img {
    max-width: 1440px;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 5vw;
}

#service-image-container-2 img {
    max-width: 1440px;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 3vw;
}

.service-image-button-container {
    position: absolute;
    bottom: 47%;
    left: 50%;
    transform: translateX(-235%);
    z-index: 3;
}

.service-image-button-container-2 {
    position: absolute;
    bottom: 47%;
    left: 50%;
    transform: translateX(-235%);
    z-index: 3;
}

.service-image-button-container .contact-team-btn,
.service-image-button-container-2 .contact-team-btn-2 {
    display: inline-flex;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4vw;
    padding: 0.2vw 0.2vw;
    width: 20vw;
    height: 3.5vw;
    border-radius: 0.8vw;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    white-space: nowrap;
}

.service-image-button-container .contact-team-btn:hover,
.service-image-button-container-2 .contact-team-btn-2:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
    background-position: 100% 0;
}

.service-image-button-container .contact-team-btn::before,
.service-image-button-container-2 .contact-team-btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-image-button-container .contact-team-btn:hover::before,
.service-image-button-container-2 .contact-team-btn-2:hover::before {
    left: 100%;
}

.pay-section-wrapper {
    position: relative;
    margin-top: 5vw;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.pay-section-content {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    position: relative;
}

.glow-background-pay {
    position: absolute;
    top: -150%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.pay-image {
    width: 100%;
    height: auto;
    padding-left: 12vw;
    padding-right: 12vw;
    padding-top: 0vw;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.pay-image:hover {
    transform: scale(1.02);
}

/* Desktop and Mobile Image Display */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Mobile viewport height fixes */
    html {
        height: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

    .page-container {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .footer {
        position: relative;
        z-index: 1;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .service-content-wrapper {
        background-image: url('../assets/service/scan_bg.svg');
    }

    .service-content-wrapper-2 {
        background-image: url('../assets/service/scan_bg.svg');
    }
}

/* Start of Selection */
.contact-image {
    padding-top: 10%;
    padding-bottom: 10%;
    width: 95%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.02);
}

.contact-section {
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.service-logo-background {
    position: absolute;
    top: 15%;
    right: 0%;
    transform: translateX(15%) translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.service-logo-bg-svg {
    width: 30vw;
}

.contact-logo {
    height: 35vw;
    width: auto;
}

.contact-section-content {
    max-width: 1440px;
    width: 100%;
    padding: 0 2vw;
    position: relative;
}

.contact-button-container {
    position: absolute;
    bottom: 46%;
    right: 12%;
    z-index: 10;
}

.contact-team-btn,
.contact-team-btn-2 {
    display: inline-block;
    background: linear-gradient(86.19deg, #FF8F00 0%, #FF0D00 25%);
    background-size: 200% 100%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.4vw;
    padding: 1.2vw 1.8vw;
    width: 23.5vw;
    height: 4.5vw;
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6vw;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s both;
}

.contact-team-btn::before,
.contact-team-btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-team-btn:hover,
.contact-team-btn-2:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.3);
    background: linear-gradient(86.19deg, #FF9F20 3.12%, #FF1D10 96.88%);
    background-position: 100% 0;
}

.contact-team-btn:hover::before,
.contact-team-btn-2:hover::before {
    left: 100%;
}

.footer-bg-text {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0.5vw;
    /* Adjust so it sits just under the footer, or 0 for very bottom */
    z-index: -1;
    /* Lower than footer */
    text-align: center;
    font-size: 6vw;
    /* Responsive size */
    font-weight: 800;
    color: #ff5100;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    line-height: auto;
    white-space: nowrap;
    width: 100vw;
    /* Gradient text color as requested */
    background: linear-gradient(90deg, rgba(255, 13, 0, 0.2) 0%, rgba(255, 143, 0, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fixed positioning for screens above 1440px */
@media (min-width: 1440px) {

    /* Header and Navigation - Match home.css exactly */
    .header {
        width: 100vw;
        /* Full width for background */
        display: flex;
        justify-content: center;
    }

    .navbar {
        padding: 6px 24px 6px 24px;
        /* 0.5vw and 2vw at 1440px */
        height: 66px;
        /* 5.5vw at 1440px */
        max-width: 1440px;
        width: 100%;
    }

    .logo {
        width: 36px;
        /* 3vw at 1440px */
        height: 36px;
        /* 3vw at 1440px */
        margin-right: 6px;
        /* 0.5vw at 1440px */
    }

    .brand-text {
        font-size: 20.4px;
        /* 1.7vw at 1440px */
    }

    .nav-menu {
        gap: 6px;
        /* 0.5vw at 1440px */
    }

    .nav-link {
        font-size: 13.2px;
        /* 1.1vw at 1440px */
        padding: 6px 12px;
        /* 0.5vw and 1vw at 1440px */
    }

    .hero-responsive-wrapper {
        height: 630px;
    }

    .hero-content-container {
        width: 1440px;
        padding: 0;
    }

    .hero.custom-hero {
        padding-top: 70px;
    }

    .hero-inner {
        padding: 12.6px 43.2px 0 43.2px;
    }

    .hero-left,
    .hero-right {
        height: 390px;
    }

    .hero-heading-anim {
        font-size: 52.8px;
    }

    .hero-subheading {
        font-size: 21px;
        margin: 12px 0 0 0;
    }

    .hero-description {
        font-size: 14.4px;
        margin: 12px 0 0 0;
        width: 67%;
    }

    .hero-cta.cta-button {
        font-size: 18.72px;
        margin: 12px 0 0 0;
        width: 259.2px;
        height: 46.08px;
    }

    .services-cta.cta-button {
        font-size: 18.72px;
        margin: 14.4px 0 0 0;
        width: 288px;
        height: 50.4px;
    }

    .service-content-wrapper {
        width: 100vw;
        /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
        background-image: url('../assets/service/scan_bg.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .service-content-wrapper .scan-image {
        max-width: 1440px;
        width: 100%;
        position: relative;
    }

    .service-content-wrapper-2 {
        width: 100vw;
        /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
        background-image: url('../assets/service/scan_bg.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .service-logo-background {
        top: 15%;
        /* percentage stays same */
        right: 0%;
        /* percentage stays same */
        transform: translateX(15%) translateY(-50%);
        /* percentage stays same */
    }

    .service-logo-bg-svg {
        width: 360px;
        /* 30vw at 1440px */
    }

    .contact-logo {
        height: 400px;
        /* Fixed height instead of 90vh */
        width: auto;
    }

    .service-content-wrapper-2 .scan-image {
        max-width: 1440px;
        width: 100%;
        position: relative;
    }

    .learn-more-btn {
        font-size: 16.8px;
        /* 1.4vw at 1440px */
        margin: 12px 0 0 0;
        /* 1vw at 1440px */
        width: 250px;
        /* 20vw at 1440px */
        height: 44px;
        /* 3vw at 1440px */
        margin-top: 36px;
        /* 3vw at 1440px */
    }

    .learn-more-button-container {
        position: absolute;
        top: 40.5%;
        left: 9.6%;
        z-index: 10;
        transform: translateX(150px);
    }

    .service-tabs-wrapper {
        margin-top: -93.6px;
    }

    .service-tabs-wrapper-2 {
        margin-top: 93.6px;
    }

    .service-tab {
        font-size: 18.72px;
        padding: 7.488px 23.04px;
        height: 41.76px;
    }

    .service-tab-2 {
        font-size: 18.72px;
        padding: 7.488px 23.04px;
        height: 41.76px;
    }

    .service-image-button-container .contact-team-btn,
    .service-image-button-container-2 .contact-team-btn-2 {
        font-size: 20.16px;
        width: 288px;
        height: 50.4px;
        border-radius: 11.52px;
        margin-bottom: 50px;
    }

    .contact-team-btn,
    .contact-team-btn-2 {
        font-size: 20.16px;
        padding: 17.28px 25.92px;
        width: 338.4px;
        height: 64.8px;
        border-radius: 11.52px;
    }

    .service-tabs-bar {
        margin: 0 auto 2vw auto;
    }

    .service-tabs-bar-2 {
        margin: 0 auto 2vw auto;
    }

    /* Footer - Match home.css exactly */
    .footer {
        padding: 60px 0 36px 0;
        /* 5vw and 3vw at 1440px */
        font-size: 12px;
        /* 1vw at 1440px */
        letter-spacing: 0.12px;
        /* 0.01vw at 1440px */
        width: 100vw;
        /* Keep full width for background */
        display: flex;
        justify-content: center;
    }

    .footer-container {
        gap: 36px;
        /* 3vw at 1440px */
        width: 1080px;
        /* 90vw at 1440px */
        max-width: 1440px;
        margin: 0 auto;
    }

    .footer-col {
        gap: 12px;
        /* 1vw at 1440px */
    }

    

    .footer-logo-row {
        gap: 8.4px;
        /* 0.7vw at 1440px */
        margin-bottom: 12px;
        /* 1vw at 1440px */
    }

    .footer-logo-svg {
        width: 26.4px;
        /* 2.2vw at 1440px */
        height: 26.4px;
        /* 2.2vw at 1440px */
    }

    .footer-brand-text {
        font-size: 18px;
        /* 1.5vw at 1440px */
        letter-spacing: 0.6px;
        /* 0.05vw at 1440px */
    }

    .footer-info p {
        margin: 0 0 6px 0;
        /* 0.5vw at 1440px */
        font-size: 9.6px;
        /* 0.8vw at 1440px */
    }

    .footer-info h3 {
        margin: 0 0 6px 0;
        /* 0.5vw at 1440px */
        font-size: 12px;
        /* 1vw at 1440px */
    }

    .footer-icon img {
        width: 13.2px;
        /* 1.1vw at 1440px */
        height: 13.2px;
        /* 1.1vw at 1440px */
    }

    .footer-note {
        font-size: 10.2px;
        /* 0.85vw at 1440px */
        margin-top: 6px;
        /* 0.5vw at 1440px */
    }

    .footer-col h4 {
        font-size: 13.2px;
        /* 1.1vw at 1440px */
        margin-bottom: 12px;
        /* 1vw at 1440px */
    }

    .footer-col ul {
        gap: 8.4px;
        /* 0.7vw at 1440px */
    }

    .footer-col ul li {
        font-size: 12px;
        /* 1vw at 1440px */
    }

    .footer-icon {
        font-size: 13.2px;
        /* 1.1vw at 1440px */
        margin-right: 6px;
        /* 0.5vw at 1440px */
    }

    .footer-bottom {
        padding-top: 36px;
        /* 3vw at 1440px */
        padding-bottom: 24px;
        /* 2vw at 1440px */
        font-size: 11.4px;
        /* 0.95vw at 1440px */
    }

    .footer-bg-text {
        /* bottom: -7.2px; */
        /* -0.6vw at 1440px */
        font-size: 86.4px;
        /* Fixed size instead of 6vw */
        width: 100vw;
        /* Keep full width */
    }

    .container {
        width: 1080px;
        /* 90vw at 1440px */
        max-width: 1440px;
        padding: 0 24px;
        /* 2vw at 1440px */
        margin: 0 auto;
    }

    .pay-section-wrapper {
        margin-top: 72px;
    }

    .pay-image {
        padding-left: 86.4px;
        padding-right: 86.4px;
        padding-top: 129.6px;
    }

    .contact-image {
        padding-top: 144px;
        padding-bottom: 144px;
    }

    .contact-button-container {
        position: absolute;
        bottom: 47%;
        right: 15%;
        transform: translateX(10%);
        z-index: 10;
    }

    .service-image-button-container,
    .service-image-button-container-2 {
        position: absolute;
        bottom: 47%;
        left: 50%;
        transform: translateX(-235%);
        z-index: 3;
    }

    .contact-section {
        width: 100vw;
        /* Keep full width for background */
        display: flex;
        justify-content: center;
        position: relative;
    }


    .pay-section-content,
    .contact-section-content,
    .services-container,
    .additional-services-container,
    .cta-section-container {
        width: 1440px;
        padding: 0 28.8px;
    }
}