/* style.css */
:root {
    --primary-color: #ffcc00;
    --bg-color: #f6efe8;
    --text-dark: #333333;
    --text-light: #666666;
    --footer-bg: #3a3a3a;
    --process-bg: #e6dfd6;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --section-title-size: 48px;
    --header-scroll-bg: var(--bg-color);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1300px;
    /* Increased for better spacing */
    margin: 0 auto;
    padding: 0 40px;
    /* Increased padding for better side spacing */
}

/* Header */
.header {
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: var(--bg-color);
}

.header.scrolled {
    background-color: var(--header-scroll-bg);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    margin: 15px auto;
    width: 90%;
    left: 5%;
    border-radius: 50px;
    /* Round shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.header.hidden {
    transform: translateY(-120%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 200px;
    /* Increased logo size */
    height: 80px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    /* Increased text size */
    font-weight: 700;
    /* Bold poppins */
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.btn {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #111;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.btn-dark {
    background-color: #333;
    color: var(--white);
    padding: 12px 30px;
}

.btn-dark:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, #fffbf0 0%, var(--bg-color) 100%);
}

.hero-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 5;
}

.hero-dashed-line {
    position: absolute;
    bottom: 10%;
    left: 18%;
    /* Restored user value */
    right: 0%;
    /* Restored user value */
    top: 15%;
    border-bottom: 5px dashed var(--footer-bg);
    border-right: 5px dashed var(--footer-bg);
    pointer-events: none;
    z-index: 3;
    transition: all 0.5s ease;
}

.hero-dashed-line.hide {
    opacity: 0;
    visibility: hidden;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 60px;
    /* Elevated to prevent dashed line from crossing the text */
}

.hero-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    width: 100%;
    cursor: pointer;
    perspective: 1000px;
    transform: rotate(var(--hero-text-rotation, 0deg));
    transform-origin: right center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-line:hover {
    transform: scale(1.05) translateX(10px) rotate(var(--hero-text-rotation, -7deg));
}

.hero-line h2 {
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    color: #333;
    letter-spacing: 2px;
    margin: 0;
    text-align: right;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.hero-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.hero-line:hover h2 {
    color: #000 !important;
}

.hero-line:hover .hero-icon {
    filter: sepia(1) saturate(20) hue-rotate(10deg) brightness(1.1);
    /* Brighter yellow tint */
}

.hero-arrow-logo {
    position: absolute;
    bottom: 1%;
    left: -10px;
    z-index: 20;
}

.arrow-logo-img {
    width: 230px;
    height: auto;
    object-fit: contain;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: var(--bg-color);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.stats .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 30px 20px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
}

.stat-item:hover .stat-icon {
    background: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon {
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-img-icon {
    width: 55px;
    height: 55px;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.stat-text {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: var(--section-title-size);
    font-weight: 800;
    margin-bottom: 50px;
    color: #222;
    line-height: 1.1;
    text-transform: uppercase;
    /* Consistent title style */
}

.section-title span {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services .container {
    max-width: 1400px;
    /* Wider for full page effect */
}

.service-row {
    display: flex;
    align-items: stretch;
    gap: 80px;
    margin-bottom: 120px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    font-size: 185px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    display: block;
    margin-bottom: -70px;
    line-height: 1;
    z-index: 0;
    position: relative;
}

.service-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.service-grid-list {
    display: flex;
    gap: 40px;
}

.service-grid-list ul {
    list-style: none;
}

.service-grid-list li {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.service-grid-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.service-image-wrapper {
    flex: 1.2;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    height: 480px;
    box-shadow: none;
    padding: 0;
    position: relative;
}

.service-image {
    max-height: 98%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background-color: transparent;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.8s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08)) drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
    animation: floatImg 6s ease-in-out infinite;
}

.service-row:hover .service-image {
    transform: translateY(-12px) scale(1.08) rotate(-1.5deg);
    filter: drop-shadow(0 16px 25px rgba(0, 0, 0, 0.12)) drop-shadow(0 45px 75px rgba(0, 0, 0, 0.22));
}

@keyframes floatImg {

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

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

/* Process Section */
.process {
    background-color: var(--process-bg);
    padding: 120px 0;
    position: relative;
}

.process .section-title {
    margin-bottom: 60px;
}

.process-wrapper {
    display: flex;
    gap: 60px;
    width: max-content;
    padding: 0 40px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-scroll-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 20px;
}

.process-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 28px;
    width: 420px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 6px solid var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s;
    position: relative;
    scroll-snap-align: start;
}

.process-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(255, 204, 0, 0.15);
    border-color: var(--primary-color);
    z-index: 10;
}

.process-num {
    font-size: 56px;
    color: var(--primary-color);
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.process-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.process-icon {
    margin-bottom: 25px;
}

.process-img-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-card:hover .process-img-icon {
    transform: scale(1.1) rotate(10deg);
}

.process-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background: #1a1a1a;
    padding: 60px 80px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-left: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.btn-cta {
    background: var(--primary-color);
    color: #111;
    font-size: 20px;
    padding: 18px 50px;
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    background: #fff;
    color: #111;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    animation: ctaPulse 1.8s infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 15px 50px rgba(255, 204, 0, 0.7);
    }

    100% {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #ccc;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.about-col {
    flex: 2;
}

.links-col {
    flex: 1;
}

.image-col {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-logo h1 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
}

.footer-logo span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
}



.footer-about-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 15px;
}

.footer-about-text {
    flex: 1.2;
}

.about-col p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info h5 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 13px;
}

.map-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 13px;
}

.social-links img {
    filter: invert(1);
    transition: transform 0.3s;
}

.social-links a:hover img {
    transform: scale(1.2);
}

.links-col h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.links-col ul {
    list-style: none;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.links-col a:hover {
    color: var(--primary-color);
}

.footer-boxes-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    background-color: transparent;
    transition: transform 0.4s ease;
}

.footer-boxes-img:hover {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding: 20px 0;
    text-align: left;
}

.footer-bottom p {
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-line h2 {
        font-size: 80px;
    }

    .hero-arrow-logo {
        right: 140%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    /* Mobile Compact Section Spacings */
    .stats {
        padding: 60px 0;
    }

    .stats .section-title {
        margin-bottom: 30px;
    }

    .services {
        padding: 60px 0;
    }

    .services .section-title {
        margin-bottom: 30px;
    }

    .service-row {
        margin-bottom: 45px !important;
    }

    .process {
        padding: 60px 0;
    }

    .process .section-title {
        margin-bottom: 30px;
    }

    .process-scroll-container {
        padding-bottom: 10px;
    }

    .cta {
        padding: 60px 0;
    }

    /* Header & Mobile Menu */
    .header {
        padding: 15px 0;
    }

    .header.scrolled {
        padding: 10px 0;
        width: 94%;
        left: 3%;
        margin: 10px auto;
        border-radius: 30px;
    }

    .logo-icon {
        width: 160px;
        height: 60px;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
        flex-direction: column;
        gap: 5px;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-btn span {
        width: 20px;
        height: 2.5px;
        background-color: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-btn.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: auto;
        background: rgba(246, 239, 232, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        gap: 25px;
        align-items: center;
        border-radius: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .nav.active {
        right: 5%;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .nav li {
        width: 100%;
        text-align: center;
    }

    .nav a {
        font-size: 18px;
        display: block;
        padding: 10px;
        color: var(--text-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-weight: 600;
    }

    .nav li:last-child a {
        border-bottom: none;
    }

    .nav .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 12px 25px;
        border-radius: 25px;
        background-color: var(--primary-color);
        color: var(--text-dark);
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
    }

    /* Hero Mobile Layout matching Website View */
    .hero {
        height: 75vh;
        min-height: 520px;
        /* Guarantee ample spatial height */
        padding: 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        height: 100%;
        position: relative;
        padding-right: 30px;
        /* Keep consistent margin on right edge */
    }

    .hero-content {
        align-items: flex-end;
        /* Align elements to the right, exactly like desktop */
        padding: 20px 0;
        width: 100%;
    }

    .hero-text-box {
        align-items: flex-end;
        /* Align flex elements to the right */
        text-align: right;
        /* Right-align text */
    }

    .hero-line {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /* Right-align flex row */
        gap: 12px;
        flex-wrap: nowrap;
        width: 100%;
    }

    .hero-line h2 {
        font-size: 32px;
        /* Adjusted from 40px for perfect narrow screen fitting */
        text-align: center;
        white-space: nowrap;
    }

    .hero-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .hero-line:hover .hero-icon {
        transform: scale(1.15);
    }

    .hero-arrow-logo {
        position: absolute;
        bottom: 31%;
        left: 20px;
        z-index: 1;
        margin: 0;
    }

    .arrow-logo-img {
        width: 90px;
        height: auto;
        display: block;
    }

    .hero-dashed-line {
        display: block;
        position: absolute;
        bottom: 35%;
        left: 117px; /* Connects behind the solid yellow right-edge chevron of the logo (20px left + 90px width - 8px overlap) */
        right: 12px; /* Placed near the right screen edge, clear of the right-aligned icons (at 30px padding) */
        top: 20%;
        border-bottom: 3.5px dashed var(--footer-bg);
        border-right: 3.5px dashed var(--footer-bg);
        border-bottom-right-radius: 1;
        pointer-events: none;
        z-index: 1;
    }


    /* Stats Section (2 Columns / 2 Pair items on mobile) */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }

    .stat-img-icon {
        width: 45px;
        height: 45px;
    }

    .stat-number {
        font-size: 40px;
    }

    /* Services Section */
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-content {
        padding-top: 15px;
    }

    .service-title {
        font-size: 30px;
        font-weight: 800;
        line-height: 1.2;
        position: relative;
        z-index: 1;
        text-align: left;
        margin-bottom: 20px;
    }

    .service-desc {
        font-size: 16px;
        text-align: left;
        margin-bottom: 30px;
    }

    .service-list li,
    .service-grid-list li {
        font-size: 18px;
    }

    .service-image-wrapper {
        height: 320px;
        min-height: auto;
        padding: 20px;
    }

    .service-number {
        font-size: 110px;
        font-weight: 900;
        color: var(--primary-color);
        opacity: 0.15;
        display: block;
        margin-bottom: -42px;
        margin-left: -5px;
        line-height: 1;
        z-index: 0;
        position: relative;
        text-align: left;
    }

    /* Process Section */
    .process-scroll-container {
        overflow-x: auto;
        padding-bottom: 30px;
    }

    .process-wrapper {
        gap: 30px;
        padding: 0 20px;
    }

    .process-card {
        width: 320px;
        min-height: 320px;
        padding: 30px;
        flex-shrink: 0;
        /* Important for horizontal scroll view */
    }

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

    .process-desc {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-container {
        padding: 40px 20px;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .btn-cta {
        padding: 15px 30px;
        font-size: 18px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-about-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .contact-info {
        margin-top: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .image-col {
        display: none;
    }

    /* Inner Hero Mobile styling */
    .inner-hero {
        padding: 140px 0 80px;
    }

    .inner-hero h1 {
        font-size: 38px;
    }

    .inner-hero p {
        font-size: 16px !important;
    }

    /* Contact Page mobile scaling */
    .contact-wrapper {
        gap: 30px !important;
    }

    .contact-form-col {
        padding: 30px 20px !important;
        min-width: 100% !important;
    }

    .contact-info-col {
        padding: 20px 0 0 0 !important;
        min-width: 100% !important;
        text-align: left !important;
    }

    .contact-info-col h3 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .contact-info-col p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        text-align: left !important;
    }

    .social-icons-contact {
        justify-content: center !important;
    }

    .map-container {
        height: 350px !important;
        min-width: 100% !important;
        margin-top: 20px;
    }
}


.footer-container {
    flex-wrap: wrap;
}

.about-col {
    flex: 1 1 100%;
}


/* Inner Hero Premium Overhaul */
.inner-hero {
    padding: 220px 0 140px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #222 0%, #111 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-bottom: 3px solid var(--primary-color);
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 204, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 35%);
    pointer-events: none;
    z-index: 1;
}

/* Grid template folding-line watermark representing box designs */
.inner-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.inner-hero h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
    position: relative;
    z-index: 2;
    display: inline-block;
}

.inner-hero p {
    font-size: 22px !important;
    font-weight: 500 !important;
    color: #e6dfd6 !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Premium Enquiry Modal Styling */
.enquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 20px;
}

.enquiry-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-modal-card {
    background: var(--bg-color);
    width: 100%;
    max-width: 960px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
}

.enquiry-modal-overlay.active .enquiry-modal-card {
    transform: scale(1) translateY(0);
}

/* Modal Branding Left Column (Portrait representation) */
.enquiry-modal-left {
    flex: 1;
    background: linear-gradient(135deg, #1e1e1e 0%, #0c0c0c 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.enquiry-modal-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 204, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.enquiry-modal-left-content {
    position: relative;
    z-index: 2;
}

.enquiry-modal-left .logo-img {
    width: 150px;
    margin-bottom: 40px;
}

.enquiry-modal-left h3 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.enquiry-modal-left h3 span {
    color: var(--primary-color);
}

.enquiry-modal-left p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.enquiry-modal-left-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.modal-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-contact-item img {
    width: 24px;
    height: 24px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(340deg);
}

.modal-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.modal-contact-item a:hover {
    color: var(--white);
}

/* Modal Form Right Column */
.enquiry-modal-right {
    flex: 1.2;
    padding: 60px 45px;
    background: var(--white);
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.enquiry-modal-right h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.enquiry-modal-right h4 span {
    color: var(--primary-color);
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    transform: rotate(90deg);
}

/* Enhanced Form Inputs */
.enquiry-modal-right .form-group {
    margin-bottom: 20px;
}

.enquiry-modal-right label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-modal-right .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 15px;
    background: #fbfbfb;
    color: #333;
    transition: all 0.3s ease;
}

.enquiry-modal-right .form-control:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.15);
    outline: none;
}

/* Custom Country Code Dropdown Styles */
.custom-phone-wrapper {
    display: flex;
    gap: 12px;
    position: relative;
}

.custom-country-select {
    position: relative;
    width: 110px;
}

.country-selected-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    background: #fbfbfb;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    height: 100%;
}

.country-selected-box:hover,
.custom-country-select.active .country-selected-box {
    border-color: var(--primary-color);
    background: var(--white);
}

.country-selected-box .selected-flag-emoji {
    font-size: 20px;
    margin-right: 4px;
}

.country-selected-box .arrow-indicator {
    font-size: 10px;
    color: #888;
    transition: transform 0.3s;
}

.custom-country-select.active .arrow-indicator {
    transform: rotate(180deg);
}

/* Scrollable Country List */
.country-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    max-height: 250px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow-y: auto;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    scrollbar-width: thin;
}

.custom-country-select.active .country-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    gap: 12px;
}

.country-dropdown-item:hover {
    background: rgba(255, 204, 0, 0.12);
}

.country-dropdown-item .flag-emoji {
    font-size: 22px;
}

.country-dropdown-item .country-name {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.country-dropdown-item .dial-code {
    color: var(--text-light);
    font-weight: 600;
}

.modal-submit-btn {
    background: linear-gradient(135deg, #ffcc00 0%, #ffbb00 100%);
    color: #111;
    border: none;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.25);
    transition: all 0.3s;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.35);
    background: var(--primary-color);
}

/* Modal Stacking & Responsiveness */
@media (max-width: 900px) {
    .enquiry-modal-card {
        flex-direction: column;
        max-height: 95vh;
        overflow-y: auto;
    }

    .enquiry-modal-left {
        padding: 40px 30px;
        min-height: 250px;
    }

    .enquiry-modal-right {
        padding: 40px 30px;
    }

    .enquiry-modal-left .logo-img {
        width: 120px;
        margin-bottom: 20px;
    }

    .enquiry-modal-left h3 {
        font-size: 28px;
    }

    .enquiry-modal-left p {
        margin-bottom: 20px;
    }
}

/* Country Code Styles */
.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 80px !important;
    text-align: center;
    font-weight: 600;
    background: #f9f9f9 !important;
}

.phone-main {
    flex: 1;
}

/* Ensure Button Visibility on Contact Form */
.contact-form-col .btn-submit {
    display: block;
    width: 100%;
    background: var(--primary-color) !important;
    color: #111 !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    position: relative;
}

@media (max-width: 480px) {
    .stats-grid-new {
        grid-template-columns: 1fr;
    }

    .hero-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .hero-arrow-logo {
        bottom: 12%;
        left: 15px;
    }

    .arrow-logo-img {
        width: 70px;
    }

    .hero-dashed-line {
        bottom: 12%;
        left: 78px; /* Connects behind the solid yellow right-edge chevron of the logo (15px left + 70px width - 7px overlap) */
        top: 23%;
        right: 12px; /* Placed near the right screen edge, matching tablet spacing */
        border-bottom-right-radius: 0;
    }

    .process-card {
        width: 300px;
        padding: 40px 30px;
    }

    /* Extra Small Screen Section Spacings */
    .stats {
        padding: 45px 0;
    }

    .stats .section-title {
        margin-bottom: 25px;
    }

    .services {
        padding: 45px 0;
    }

    .services .section-title {
        margin-bottom: 25px;
    }

    .service-row {
        margin-bottom: 35px !important;
    }

    .process {
        padding: 45px 0;
    }

    .process .section-title {
        margin-bottom: 25px;
    }

    .cta {
        padding: 45px 0;
    }
}

/* Premium Toast Notification */
.success-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e1e1e;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.success-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.success-toast-icon {
    font-size: 24px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-toast-content {
    font-size: 15px;
}

.success-toast-title {
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.success-toast-desc {
    color: #b0b0b0;
    font-weight: 500;
}

.success-toast-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s;
}

.success-toast-close:hover {
    color: var(--white);
}

/* Premium Footer 3D Boxes Stack Responsiveness */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        row-gap: 30px !important;
        padding-right: 0 !important;
    }

    .footer-col-new {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .footer-boxes-img-absolute {
        position: relative !important;
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        margin: 40px auto 0 !important;
        display: block !important;
        float: none !important;
    }
}