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

:root {
    --primary-orange: #FFA726;
    --primary-blue: #5DADE2;
    --dark-gray: #3A3A3A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 12.1px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    flex: 1;
    overflow: hidden;
    margin-left: 20px;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 25s linear infinite;
}

.scrolling-text:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header */
.site-header {
    background: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a.logo {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

a.logo:hover {
    opacity: 0.8;
}

a.logo * {
    pointer-events: none;
}

.logo-icon svg {
    display: block;
}

.logo-img {
    height: 60px;
    width: 60px;
    display: block;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 0px;
    object-fit: contain;
}

.logo-text {
    color: var(--white);
}

.logo-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17.6px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12.1px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

/* Hide mobile menu elements on desktop */
.main-nav .menu-header,
.main-nav .menu-logo,
.main-nav .menu-close {
    display: none !important;
}

.menu-overlay {
    display: none !important;
}

/* Desktop: menu-links wrapper should display as flex (like original main-nav) */
.main-nav .menu-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15.4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 0.8;
}

.nav-apply {
    background: var(--dark-gray);
    padding: 8px 20px;
    border-radius: 3px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: #FFA726;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    animation: dotMove 20s linear infinite;
}

@keyframes dotMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}


.hero-bg-shape {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 550px;
    height: 550px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: shapePulse 8s ease-in-out infinite;
}

/* Decorative Circles */
.decorative-circles {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 165px;
    height: 165px;
    z-index: 1;
}

.decorative-circles::before,
.decorative-circles::after {
    content: '';
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: circleRotate 15s linear infinite;
}

.decorative-circles::before {
    width: 132px;
    height: 132px;
    top: 0;
    left: 0;
    border-top-color: rgba(255, 255, 255, 0.4);
    border-right-color: transparent;
}

.decorative-circles::after {
    width: 88px;
    height: 88px;
    top: 20px;
    left: 20px;
    border-bottom-color: rgba(255, 255, 255, 0.4);
    border-left-color: transparent;
    animation-direction: reverse;
    animation-duration: 10s;
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Decorative Lines */
.decorative-lines {
    position: absolute;
    right: 8%;
    top: 20%;
    width: 110px;
    height: 110px;
    z-index: 1;
}

.decorative-lines::before,
.decorative-lines::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    animation: lineSlide 8s ease-in-out infinite;
}

.decorative-lines::before {
    width: 88px;
    height: 4px;
    top: 0;
    left: 0;
    transform-origin: left;
}

.decorative-lines::after {
    width: 4px;
    height: 66px;
    top: 20px;
    right: 0;
    transform-origin: top;
    animation-delay: 1s;
}

@keyframes lineSlide {
    0%, 100% {
        transform: scaleX(1);
        opacity: 0.15;
    }
    50% {
        transform: scaleX(1.3);
        opacity: 0.3;
    }
}

/* Splash Decorations */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50% 40% 60% 50%;
    opacity: 0.15;
    z-index: 1;
}

.hero-section::before {
    background: radial-gradient(circle, #00BCD4, #26C6DA);
    top: 10%;
    right: 5%;
    animation: splash1 15s ease-in-out infinite;
}

.hero-section::after {
    background: radial-gradient(circle, #AB47BC, #8E24AA);
    bottom: 15%;
    right: 15%;
    width: 165px;
    height: 165px;
    animation: splash2 12s ease-in-out infinite;
}

@keyframes splash1 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        border-radius: 50% 40% 60% 50%;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        border-radius: 40% 60% 50% 60%;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        border-radius: 60% 50% 40% 50%;
    }
    75% {
        transform: rotate(270deg) scale(1.05);
        border-radius: 50% 60% 50% 40%;
    }
}

@keyframes splash2 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        border-radius: 60% 40% 50% 60%;
    }
    33% {
        transform: rotate(120deg) scale(1.15);
        border-radius: 40% 60% 40% 50%;
    }
    66% {
        transform: rotate(240deg) scale(0.95);
        border-radius: 50% 50% 60% 40%;
    }
}

@keyframes shapePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        transform: translateX(50px);
    }
}

.hero-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 19.8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 79.2px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInLeft 1s ease 0.3s forwards;
}

.hero-license {
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--white);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-hero {
    display: inline-block;
    background: var(--dark-gray);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17.6px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
    opacity: 0;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease 0.6s forwards, pulse 2s ease-in-out 1.6s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(58, 58, 58, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(58, 58, 58, 0);
    }
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: none;
    opacity: 1 !important;
    z-index: 10;
}

.hero-image {
    position: relative;
}

/* Hero image circle removed (no image box in hero now) */

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translateX(10px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(10px) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(10px) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(10px) translateY(-20px) rotate(2deg);
    }
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slideshow Images */
.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
    z-index: 1;
}

.hero-stripes {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: rotateStripes 20s linear infinite;
}

@keyframes rotateStripes {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Hero Section Clouds */
.hero-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    z-index: 1;
    pointer-events: none;
    animation: cloudMoveRightToLeft 30s linear infinite;
}

.hero-cloud::before,
.hero-cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
}

@keyframes cloudMoveRightToLeft {
    0% {
        transform: translateX(calc(100vw + 200px)) translateY(0px);
    }
    100% {
        transform: translateX(calc(-100vw - 200px)) translateY(0px);
    }
}

/* Individual Cloud Positions and Sizes - Different Styles */
.cloud-1 {
    width: 80px;
    height: 40px;
    top: 10%;
    right: -100px;
    border-radius: 40px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
    border-radius: 50px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
    border-radius: 60px;
}

.cloud-2 {
    width: 100px;
    height: 50px;
    top: 20%;
    right: -120px;
    border-radius: 50px 30px 50px 30px;
    animation-duration: 30s;
    animation-delay: 2s;
}

.cloud-2::before {
    width: 55px;
    height: 55px;
    top: -28px;
    left: 15px;
    border-radius: 55px 30px;
}

.cloud-2::after {
    width: 65px;
    height: 65px;
    top: -32px;
    right: 15px;
    border-radius: 65px 40px;
}

.cloud-3 {
    width: 70px;
    height: 35px;
    top: 30%;
    right: -90px;
    border-radius: 35px 20px;
    animation-duration: 28s;
    animation-delay: 4s;
}

.cloud-3::before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 8px;
    border-radius: 45px 25px;
}

.cloud-3::after {
    width: 55px;
    height: 55px;
    top: -27px;
    right: 8px;
    border-radius: 55px 30px;
}

.cloud-4 {
    width: 90px;
    height: 45px;
    top: 15%;
    right: -110px;
    border-radius: 45px;
    animation-duration: 32s;
    animation-delay: 1s;
}

.cloud-4::before {
    width: 52px;
    height: 52px;
    top: -26px;
    left: 12px;
    border-radius: 52px;
}

.cloud-4::after {
    width: 62px;
    height: 62px;
    top: -31px;
    right: 12px;
    border-radius: 62px;
}

.cloud-5 {
    width: 60px;
    height: 30px;
    top: 40%;
    right: -80px;
    border-radius: 30px 20px 30px 20px;
    animation-duration: 22s;
    animation-delay: 6s;
}

.cloud-5::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 5px;
    border-radius: 40px 25px;
}

.cloud-5::after {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 5px;
    border-radius: 50px 30px;
}

.cloud-6 {
    width: 110px;
    height: 55px;
    top: 25%;
    right: -130px;
    border-radius: 55px;
    animation-duration: 35s;
    animation-delay: 3s;
}

.cloud-6::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 18px;
    border-radius: 60px;
}

.cloud-6::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 18px;
    border-radius: 70px;
}

.cloud-7 {
    width: 75px;
    height: 38px;
    top: 50%;
    right: -95px;
    border-radius: 38px 25px;
    animation-duration: 27s;
    animation-delay: 5s;
}

.cloud-7::before {
    width: 48px;
    height: 48px;
    top: -24px;
    left: 10px;
    border-radius: 48px 30px;
}

.cloud-7::after {
    width: 58px;
    height: 58px;
    top: -29px;
    right: 10px;
    border-radius: 58px 35px;
}

.cloud-8 {
    width: 85px;
    height: 42px;
    top: 35%;
    right: -105px;
    border-radius: 42px;
    animation-duration: 29s;
    animation-delay: 1.5s;
}

.cloud-8::before {
    width: 51px;
    height: 51px;
    top: -25px;
    left: 13px;
    border-radius: 51px;
}

.cloud-8::after {
    width: 61px;
    height: 61px;
    top: -30px;
    right: 13px;
    border-radius: 61px;
}

.cloud-9 {
    width: 65px;
    height: 32px;
    top: 60%;
    right: -85px;
    border-radius: 32px 20px 32px 20px;
    animation-duration: 24s;
    animation-delay: 7s;
}

.cloud-9::before {
    width: 42px;
    height: 42px;
    top: -21px;
    left: 7px;
    border-radius: 42px 25px;
}

.cloud-9::after {
    width: 52px;
    height: 52px;
    top: -26px;
    right: 7px;
    border-radius: 52px 30px;
}

.cloud-10 {
    width: 95px;
    height: 48px;
    top: 45%;
    right: -115px;
    border-radius: 48px 30px;
    animation-duration: 31s;
    animation-delay: 2.5s;
}

.cloud-10::before {
    width: 54px;
    height: 54px;
    top: -27px;
    left: 14px;
    border-radius: 54px;
}

.cloud-10::after {
    width: 64px;
    height: 64px;
    top: -32px;
    right: 14px;
    border-radius: 64px;
}

.cloud-11 {
    width: 55px;
    height: 28px;
    top: 70%;
    right: -75px;
    border-radius: 28px 18px;
    animation-duration: 20s;
    animation-delay: 8s;
}

.cloud-11::before {
    width: 38px;
    height: 38px;
    top: -19px;
    left: 4px;
    border-radius: 38px 22px;
}

.cloud-11::after {
    width: 48px;
    height: 48px;
    top: -24px;
    right: 4px;
    border-radius: 48px 28px;
}

.cloud-12 {
    width: 105px;
    height: 52px;
    top: 55%;
    right: -125px;
    border-radius: 52px;
    animation-duration: 33s;
    animation-delay: 4s;
}

.cloud-12::before {
    width: 58px;
    height: 58px;
    top: -29px;
    left: 16px;
    border-radius: 58px;
}

.cloud-12::after {
    width: 68px;
    height: 68px;
    top: -34px;
    right: 16px;
    border-radius: 68px;
}

.cloud-13 {
    width: 72px;
    height: 36px;
    top: 65%;
    right: -92px;
    border-radius: 36px 24px;
    animation-duration: 26s;
    animation-delay: 6.5s;
}

.cloud-13::before {
    width: 46px;
    height: 46px;
    top: -23px;
    left: 9px;
    border-radius: 46px 28px;
}

.cloud-13::after {
    width: 56px;
    height: 56px;
    top: -28px;
    right: 9px;
    border-radius: 56px 32px;
}

.cloud-14 {
    width: 88px;
    height: 44px;
    top: 75%;
    right: -108px;
    border-radius: 44px 28px;
    animation-duration: 28s;
    animation-delay: 5.5s;
}

.cloud-14::before {
    width: 53px;
    height: 53px;
    top: -26px;
    left: 11px;
    border-radius: 53px;
}

.cloud-14::after {
    width: 63px;
    height: 63px;
    top: -31px;
    right: 11px;
    border-radius: 63px;
}

.cloud-15 {
    width: 68px;
    height: 34px;
    top: 80%;
    right: -88px;
    border-radius: 34px 22px 34px 22px;
    animation-duration: 23s;
    animation-delay: 9s;
}

.cloud-15::before {
    width: 44px;
    height: 44px;
    top: -22px;
    left: 6px;
    border-radius: 44px 26px;
}

.cloud-15::after {
    width: 54px;
    height: 54px;
    top: -27px;
    right: 6px;
    border-radius: 54px 30px;
}

/* Flying Plane Animation */
.hero-flying-plane {
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 2;
    animation: planeFlyDiagonal 12s linear infinite;
    pointer-events: none;
}

.hero-flying-plane img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@keyframes planeFlyDiagonal {
    /* Position 1 - Start (Bottom Right) */
    0% {
        right: 0%;
        bottom: 0%;
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    /* Position 2 */
    25% {
        right: 20%;
        bottom: 15%;
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    /* Position 3 */
    50% {
        right: 40%;
        bottom: 30%;
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    /* Position 4 */
    75% {
        right: 60%;
        bottom: 45%;
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    /* Position 5 - End (Top Left) */
    100% {
        right: 80%;
        bottom: 60%;
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
}

.hero-sidebar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    display: flex;
    gap: 30px;
    padding: 20px;
    z-index: 10;
    pointer-events: auto;
}

.sidebar-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13.2px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    padding: 10px 8px;
    border-radius: 3px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    background: var(--white);
    color: var(--primary-orange);
    opacity: 1;
    transform: translateX(-5px);
}

/* Solutions Section - Now part of Services */
.services-section {
    background: var(--white);
    padding: 80px 0;
}

.services-section .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 46.2px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.section-subtitle {
    color: var(--text-dark);
    font-size: 16.5px;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.solution-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.solution-overlay h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26.4px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.3;
}

/* About Section - Modern Redesign */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bar {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background: linear-gradient(180deg, #FFA726, #FF7043);
    border-radius: 3px;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    width: 100%;
}

.about-image-main:hover {
    transform: translateY(-10px);
}

.about-image-main img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
    background: white;
    padding: 10px;
    transform: scale(1.4);
}

.about-content {
    padding: 20px 0;
    text-align: left;
}

.about-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 52.8px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFA726, #FF7043);
    border-radius: 2px;
}

.about-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 39.6px;
    font-weight: 700;
    color: #34495E;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: left;
    margin-left: 0;
    display: block;
    width: 100%;
}

.about-highlight {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
    font-size: 17.6px;
    font-weight: 600;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-left: 4px solid #FFA726;
    border-radius: 8px;
    line-height: 1.8;
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.1);
}

.about-text {
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.about-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features li {
    font-size: 15.4px;
    padding: 15px 20px 15px 50px;
    position: relative;
    color: #2C3E50;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-features li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 167, 38, 0.2);
}

.about-features li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 15.4px;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 10px 30px rgba(255, 167, 38, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 167, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 167, 38, 0.6);
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.service-highlight {
    background: var(--primary-orange);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    position: relative;
}

.service-highlight::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 0 solid transparent;
    border-top: 30px solid var(--primary-orange);
}

.service-highlight h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 35.2px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.service-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 39.6px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-text {
    font-size: 15.4px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 52.8px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.feature-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.feature-label {
    font-size: 12.1px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
}

/* Countries Section */
.countries-section {
    padding: 60px 0;
    background: var(--light-gray);
    text-align: center;
}

.countries-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 30.8px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.countries-flags {
    display: flex;
    gap: 40px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.countries-flags-wrapper {
    display: flex;
    gap: 40px;
    animation: scroll-countries 50s linear infinite;
}

.countries-flags-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll-countries {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.flag-item {
    width: 140px;
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.flag-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.flag-item img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.flag-item p {
    font-size: 14.3px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}


/* CTA Section */
.cta-section {
    background: var(--primary-orange);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 52.8px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.btn-cta {
    display: inline-block;
    background: var(--dark-gray);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17.6px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
.site-footer {
    background: #4A4A4A;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo .logo-img {
    height: 60px;
    width: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 0px;
    object-fit: contain;
}

.footer-description {
    font-size: 14.3px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--primary-orange);
}

.footer-links h3,
.footer-contact h3,
.footer-profile h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 19.8px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14.3px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.foot.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.company-name-small {
    font-size: clamp(3rem, 5.2vw, 4rem);
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideInScale 1.2s ease 0.5s forwards, neonTextGlow 6s ease-in-out 1.7s infinite;
    position: relative;
    padding: 10px 20px;
    z-index: 1;
    color: #FFFFFF;
    text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.56),
        0 0 10px rgba(255, 215, 0, 0.42),
        0 0 15px rgba(255, 193, 7, 0.35),
        0 0 20px rgba(255, 215, 0, 0.28),
        0 0 35px rgba(255, 193, 7, 0.21),
        0 0 50px rgba(255, 215, 0, 0.14);
}

.company-name-small::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 215, 0, 0.28) 20%,
        rgba(255, 193, 7, 0.49) 40%,
        rgba(255, 223, 0, 0.56) 50%,
        rgba(255, 193, 7, 0.49) 60%,
        rgba(255, 215, 0, 0.28) 80%,
        transparent 100%);
    background-size: 300% 100%;
    border-radius: 15px;
    z-index: -1;
    animation: neonGoldenSweep 8s ease-in-out infinite;
    filter: blur(14px);
    opacity: 0.63;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.35),
                0 0 60px rgba(255, 193, 7, 0.21),
                0 0 90px rgba(255, 215, 0, 0.14);
}

.company-name-small::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(ellipse at center,
        rgba(255, 215, 0, 0.14) 0%,
        rgba(255, 193, 7, 0.105) 30%,
        rgba(255, 215, 0, 0.07) 60%,
        transparent 100%);
    border-radius: 20px;
    z-index: -2;
    animation: neonGoldenPulse 6s ease-in-out infinite;
    filter: blur(17.5px);
    opacity: 0.49;
}

@keyframes neonGoldenSweep {
    0% {
        background-position: -300% 0;
        opacity: 0.49;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.21),
                    0 0 40px rgba(255, 193, 7, 0.14),
                    0 0 60px rgba(255, 215, 0, 0.07);
    }
    50% {
        background-position: 300% 0;
        opacity: 0.7;
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.49),
                    0 0 80px rgba(255, 193, 7, 0.35),
                    0 0 120px rgba(255, 215, 0, 0.21);
    }
    100% {
        background-position: -300% 0;
        opacity: 0.49;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.21),
                    0 0 40px rgba(255, 193, 7, 0.14),
                    0 0 60px rgba(255, 215, 0, 0.07);
    }
}

@keyframes neonGoldenPulse {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.63;
        transform: scale(1.1);
    }
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    60% {
        transform: translateX(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes neonTextGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(255, 215, 0, 0.56),
            0 0 10px rgba(255, 215, 0, 0.42),
            0 0 15px rgba(255, 193, 7, 0.35),
            0 0 20px rgba(255, 215, 0, 0.28),
            0 0 35px rgba(255, 193, 7, 0.21),
            0 0 50px rgba(255, 215, 0, 0.14),
            0 0 70px rgba(255, 193, 7, 0.105);
        filter: brightness(1);
    }
    50% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.7),
            0 0 20px rgba(255, 215, 0, 0.56),
            0 0 30px rgba(255, 193, 7, 0.49),
            0 0 40px rgba(255, 215, 0, 0.42),
            0 0 60px rgba(255, 193, 7, 0.35),
            0 0 80px rgba(255, 215, 0, 0.28),
            0 0 100px rgba(255, 193, 7, 0.21),
            0 0 120px rgba(255, 215, 0, 0.14);
        filter: brightness(1.14);
    }
}

.tagline-smaller {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    display: block;
    font-weight: 500;
    margin-top: 5px;
}

.footer-contact li {
    font-size: 14.3px;
    opacity: 0.8;
    line-height: 1.6;
}

.btn-profile {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14.3px;
    font-weight: 500;
    border-radius: 3px;
    transition: transform 0.3s;
}

.btn-profile:hover {
    transform: translateY(-2px);
}

.footer-member {
    margin-top: 25px;
    text-align: left;
}

.member-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 19.8px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-logo {
    max-width: 78px;
    height: auto;
    display: block;
    margin: 0 0 0 20px;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 4px;
}

.footer-member a {
    display: inline-block;
    cursor: pointer;
}

.footer-member a:hover .member-logo {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 13.2px;
    opacity: 0.7;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-circle {
        margin: 0 auto;
    }
    
    /* About Section Tablet Responsive */
    .about-section {
        padding: 70px 0;
    }
    
    .about-section::before {
        width: 400px;
        height: 400px;
        opacity: 0.1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-left-column {
        gap: 30px;
    }
    
    .about-bar {
        left: -20px;
        width: 5px;
    }
    
    .about-image-main img {
        height: 240px;
        transform: scale(1.3);
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title {
        font-size: clamp(40px, 6vw, 52.8px);
    }
    
    .about-subtitle {
        font-size: clamp(30px, 5vw, 39.6px);
    }
    
    .about-highlight {
        font-size: clamp(16px, 2.5vw, 17.6px);
        text-align: left;
    }
    
    .about-text {
        font-size: clamp(15px, 2.5vw, 16.5px);
        text-align: left;
    }
    
    .about-badge {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .badge-circle {
        width: 110px;
        height: 110px;
        font-size: 20px;
    }
    
    /* Services Section Tablet Responsive */
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(32px, 5vw, 46.2px);
    }
    
    .section-subtitle {
        font-size: clamp(15px, 2.5vw, 16.5px);
    }
    
    .services-section .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-highlight {
        padding: 50px 35px;
    }
    
    .service-highlight h2 {
        font-size: clamp(28px, 4vw, 35.2px);
    }
    
    .service-main-title {
        font-size: clamp(32px, 4.5vw, 39.6px);
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer Section Tablet Responsive */
    .site-footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-logo {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .footer-logo .logo-img {
        height: 55px;
        width: 55px;
    }
    
    .footer-description {
        font-size: clamp(13.5px, 2.2vw, 14.3px);
        margin-bottom: 18px;
    }
    
    .social-icon {
        width: 33px;
        height: 33px;
    }
    
    .footer-links h3,
    .footer-contact h3,
    .footer-profile h3 {
        font-size: clamp(18px, 3vw, 19.8px);
        margin-bottom: 18px;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: clamp(13.5px, 2.2vw, 14.3px);
    }
    
    .footer-bottom p {
        font-size: clamp(12px, 2vw, 13.2px);
    }
    
    /* Hero Sidebar Tablet Responsive */
    .hero-sidebar {
        gap: 20px;
        padding: 15px;
    }
    
    .sidebar-item {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .sidebar-box {
        padding: 10px 8px;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 6px 0;
        font-size: 10px;
    }
    
    .top-bar-content {
        flex-wrap: nowrap;
    }
    
    .top-bar-left {
        flex-shrink: 0;
        font-size: 9px;
        white-space: nowrap;
    }
    
    .top-bar-right {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        margin-left: 10px;
    }
    
    .scrolling-text {
        display: inline-block;
        white-space: nowrap;
        animation: scroll-left 20s linear infinite;
    }
    
    .site-header {
        position: relative;
    }
    
    .header-content {
        position: relative;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 10000;
        transition: left 0.3s ease-in-out;
        overflow-y: auto;
    }
    
    .main-nav.active {
        display: flex;
        left: 0;
    }
    
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: -5px;
        width: 5px;
        height: 100%;
        background: #FFA726;
        z-index: 1;
    }
    
    .main-nav::after {
        content: '';
        position: absolute;
        top: 0;
        right: -5px;
        width: 5px;
        height: 100%;
        background: #FFA726;
        z-index: 1;
    }
    
    /* Show mobile menu elements on mobile */
    .main-nav .menu-header {
        display: flex;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .main-nav .menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }
    
    .main-nav .menu-close {
        display: flex;
    }
    
    .main-nav .menu-links {
        display: flex;
    }
    
    .main-nav .menu-logo .logo-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .main-nav .menu-logo .logo-img {
        width: 100%;
        height: 100%;
    }
    
    .main-nav .menu-logo .logo-text {
        flex: 1;
    }
    
    .main-nav .menu-logo .logo-title {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .main-nav .menu-logo .logo-subtitle {
        font-size: 11px;
        margin-top: 2px;
    }
    
    .main-nav .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 28px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001;
    }
    
    .main-nav .menu-close:hover {
        opacity: 0.8;
    }
    
    .main-nav .menu-links {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    
    .main-nav a {
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
        color: var(--white);
        font-size: 16px;
        font-weight: 500;
        transition: background 0.3s ease;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .main-nav a.nav-apply {
        margin-top: 10px;
        background: #333;
        border: 1px solid #000;
        border-radius: 4px;
        text-align: center;
        font-weight: 600;
    }
    
    .main-nav a.nav-apply:hover {
        background: #444;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero-title {
        font-size: 39.6px;
    }
    
    .hero-image-circle {
        width: 300px;
        height: 300px;
    }
    
    .section-title {
        font-size: 35.2px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 35.2px;
    }
    
    /* Footer Section Mobile Responsive */
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .footer-logo .logo-img {
        height: 50px;
        width: 50px;
    }
    
    .footer-description {
        font-size: clamp(13px, 3.2vw, 14.3px);
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .footer-social {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-links h3,
    .footer-contact h3,
    .footer-profile h3 {
        font-size: clamp(17px, 4vw, 19.8px);
        margin-bottom: 15px;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: clamp(13px, 3.2vw, 14.3px);
    }
    
    .footer-contact li {
        font-size: clamp(13px, 3.2vw, 14.3px);
        line-height: 1.5;
    }
    
    .btn-profile {
        padding: 8px 18px;
        font-size: clamp(13px, 3.2vw, 14.3px);
        display: inline-block;
        width: auto;
    }
    
    .footer-member {
        margin-top: 20px;
        text-align: center;
    }
    
    .member-text {
        font-size: clamp(16px, 3.8vw, 19.8px);
        margin-bottom: 10px;
        text-align: center;
    }
    
    .member-logo {
        margin: 0 auto;
        max-width: 70px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: clamp(11px, 2.8vw, 13.2px);
        padding: 0 15px;
        line-height: 1.6;
    }
    
    /* Services Section Mobile Responsive */
    .services-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: clamp(28px, 7vw, 35.2px);
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: clamp(14px, 3.5vw, 16.5px);
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .services-section .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        border-radius: 8px;
    }
    
    .solution-image {
        height: 200px;
    }
    
    .solution-overlay h3 {
        font-size: clamp(20px, 5vw, 26.4px);
        padding: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .service-highlight {
        padding: 40px 25px;
        text-align: center;
    }
    
    .service-highlight::after {
        display: none;
    }
    
    .service-highlight h2 {
        font-size: clamp(24px, 6vw, 35.2px);
    }
    
    .service-main-title {
        font-size: clamp(28px, 6.5vw, 39.6px);
        margin-bottom: 15px;
    }
    
    .service-text {
        font-size: clamp(14px, 3.5vw, 15.4px);
        margin-bottom: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .feature-number {
        font-size: clamp(35px, 8vw, 52.8px);
    }
    
    .feature-content h3 {
        font-size: clamp(18px, 4.5vw, 22px);
    }
    
    .feature-label {
        font-size: clamp(11px, 2.5vw, 12.1px);
    }
    
    /* About Section Mobile Responsive */
    .about-section {
        padding: 50px 0;
    }
    
    .about-section::before {
        width: 300px;
        height: 300px;
        opacity: 0.08;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left-column {
        gap: 25px;
    }
    
    .about-bar {
        display: none;
    }
    
    .about-image-main {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .about-image-main:hover {
        transform: translateY(-5px);
    }
    
    .about-image-main img {
        height: 200px;
        padding: 8px;
        transform: scale(1.2);
    }
    
    .about-content {
        padding: 0;
        text-align: center;
    }
    
    .about-title {
        font-size: clamp(32px, 8vw, 52.8px);
        margin-bottom: 12px;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
    }
    
    .about-subtitle {
        font-size: clamp(24px, 6vw, 39.6px);
        margin-bottom: 20px;
        text-align: center;
    }
    
    .about-highlight {
        font-size: clamp(15px, 3.5vw, 17.6px);
        padding: 18px 20px;
        margin-bottom: 20px;
        border-left: 3px solid #FFA726;
        text-align: left;
    }
    
    .about-text {
        font-size: clamp(14px, 3.5vw, 16.5px);
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .about-features {
        gap: 12px;
    }
    
    .about-features li {
        font-size: clamp(13px, 3.2vw, 15.4px);
        padding: 12px 15px 12px 45px;
        border-radius: 8px;
    }
    
    .about-features li::before {
        left: 15px;
        width: 22px;
        height: 22px;
        font-size: 13px;
    }
    
    .about-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 30px auto 0;
        display: flex;
        justify-content: center;
    }
    
    .badge-circle {
        width: 100px;
        height: 100px;
        font-size: 18px;
    }
    
    /* Hero Sidebar Mobile Responsive */
    .hero-sidebar {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        writing-mode: horizontal-tb;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 20px;
        margin-top: 30px;
        z-index: 10;
    }
    
    .sidebar-item {
        font-size: 12px;
        letter-spacing: 1px;
        min-width: 80px;
        padding: 12px 8px;
        text-align: center;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
        touch-action: manipulation;
        user-select: none;
    }
    
    .sidebar-box {
        padding: 12px 10px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar-box:hover,
    .sidebar-box:active {
        transform: none;
        background: var(--white);
        color: var(--primary-orange);
    }
}
