@import url("mobile-side-menu.css");
:root {
    --bg-color: #212121;
    --theme-color: #151515;
    --secondary-color: #7CB79D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #0a0a0a; color: #fff; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 15px; }
.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 15px; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; margin-bottom: 30px; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.mt-80 { margin-top: 80px; }
.mb-15 { margin-bottom: 15px; }
.md-mb50 { margin-bottom: 50px; }
.order-md-2 { order: 2; }
.order-md-1 { order: 1; }
.ml-10 { margin-left: 10px; }

/* Navbar */
.navbar {
    position: absolute;
    left: 0;
    top: 30px;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    z-index: 9999999;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    position: fixed;
    top: 0;
    background: rgba(11, 13, 23, 0.8);
    backdrop-filter: blur(20px);
    padding: 10px 0;
}
.navbar .logo {
    padding: 0;
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .logo img {
    height: 40px;
}
.navbar .navbar-nav {
    padding: 7px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-left: 15px;
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}
.navbar .navbar-nav .nav-link {
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
}
.navbar .topnav .butn {
    padding: 7px 20px;
    background: #fff;
    color: #1d1d1d;
    margin-right: 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 20px; }
.topnav { display: flex; align-items: center; gap: 20px; }
.icon img { width: 16px; height: 16px; }

/* Mobile Menu Base Styles */
.hamenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 13, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamenu .menu-icon {
    display: none !important;
}

.hamenu.open {
    opacity: 1;
    visibility: visible;
}

/* Prevent background scrolling when mobile menu is open */
body:has(.hamenu.open) {
    overflow: hidden;
}

.hamenu.open ~ .navbar .menu-icon {
    display: none !important;
}

/* Hide menu icon when mobile menu is open */
.navbar .menu-icon.hidden {
    display: none !important;
}

.hamenu .menu-links ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 80px;
}

.hamenu .menu-links ul li {
    margin: 30px 0;
}

.hamenu .menu-links ul li a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hamenu .menu-links ul li a:hover {
    color: var(--secondary-color);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 999999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.8);
}

.close-menu:hover {
    background: rgba(255,255,255,0.2);
}

.close-menu:active {
    transform: scale(0.95);
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

/* Header */
.header-ms {
    padding-top: 200px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.header-ms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.4));
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.4));
    }
    50% {
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.6));
    }
}
.header-ms video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.header-ms .caption h1 {
    font-size: 76px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.5s forwards;
}
.header-ms .caption p {
    font-size: 20px;
    color: #BDBDBD;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
}
.caption { position: relative; z-index: 2; }
.butons { 
    display: flex; 
    gap: 20px; 
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
}

/* Global Button Style */
.btn {
    background: #fff;
    color: #1d1d1d;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    justify-content: center;
}
.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Button Variants */
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-primary {
    background: var(--secondary-color);
    color: #000;
}
.btn-primary:hover {
    background: #fff;
}
.cont { position: relative; z-index: 2; }
.arrow { width: 24px; height: 24px; margin-right: 15px; }
.arrow svg { width: 100%; height: 100%; }
.cont span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.cont p { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 15px; line-height: 1.6; }

/* Services */
.services-sa {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.services-sa.animate {
    opacity: 1;
    transform: translateY(0);
}
#services .services-sa,
#services .services-sa .item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}
.services-sa .item {
    background: rgba(33, 33, 33, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 20px;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.services-sa .item .cont {
    padding: 15px;
}
.services-sa .item .cont .icon {
    width: 52px;
    height: 52px;
    line-height: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.services-sa .item .cont .icon img {
    width: 25px;
    filter: brightness(0) invert(1);
}
.services-sa .item .cont .icon.invert img {
    -webkit-filter: invert(1);
    filter: invert(1);
}
.services-sa .item .cont .header {
    margin-bottom: 20px;
}
.services-sa .item .cont .header h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.services-sa .item .cont .text {
    margin-bottom: 20px;
}
.services-sa .item .cont .service-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.services-sa .item .cont .service-image img {
    width: 100%;
    height: auto;
    display: block;
}
.services-sa .item .cont .text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #fff;
}
.section-padding { padding: 100px 0; }
.mb-80 { margin-bottom: 80px; }
.mt-40 { margin-top: 40px; }

/* Stats Section */
.stats-section {
    background: transparent;
    color: white;
    padding: 100px 0 150px 0;
    text-align: center;
}
.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.stats-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}
.stats_layout {
    z-index: 2;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 3rem;
    display: grid;
    position: relative;
}
.stat_card-wr {
    background: transparent;
    border-radius: 1rem;
    padding: 1px;
    overflow: hidden;
}
.stat_card {
    padding: 30px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    border-radius: 0.95rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.5rem;
    display: flex;
}
.stat-value {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: #ccc;
    display: block;
}

/* Portfolio Cards */
.bord-thin-top-light {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mb-100 {
    margin-bottom: 100px;
}
.sub-color {
    color: #808080;
}
.sub-head {
    font-size: 20px;
    line-height: 28px;
    position: relative;
    padding-left: 25px;
}
.sec-head .sub-head:after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;
}
.work-card .card-item {
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    background: var(--bg-color);
    min-height: 500px;
    position: sticky;
    top: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
}

.work-card .card-item.animate {
    opacity: 1;
    transform: translateY(0);
}
.work-card .card-item .cont {
    height: 100%;
    padding: 40px 80px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}
.work-card .card-item .cont .tag {
    font-size: 12px;
    line-height: 1;
    padding: 7px 12px;
    margin-right: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}
.work-card .card-item .cont p {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.7);
}
.work-card .card-item .cont h5 a {
    color: #fff !important;
    text-decoration: none;
}
.work-card .card-item .cont h5 {
    color: #fff !important;
}
.work-card .card-item .cont p {
    color: rgba(255,255,255,0.8) !important;
}
.work-card .card-item .cont .tag {
    color: #fff !important;
}
.work-card .card-item .img {
    padding: 20px;
}
.work-card .card-item .img img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}
.butn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.butn:hover {
    background: #fff;
    color: #212121;
}
.butn-md {
    padding: 14px 28px;
}
.butn-bord {
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.butn-rounded {
    border-radius: 50px;
}
.inline {
    display: inline;
}
h4 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -2px;
    font-weight: 400;
    margin: 0;
}
h5 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 400;
    margin: 0;
}
h6 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin: 0;
}

/* Modern Pricing Cards */
.modern-pricing-card {
    background: #040404;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.modern-pricing-card.highlighted {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(124, 183, 157, 0.3);
}
.modern-pricing-card.business {
    background: #040404;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}
.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}
.period {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 10px 0;
}
.feature-list li {
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    position: relative;
}
.feature-list li::before {
    display: none;
}
.modern-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}
.modern-btn.primary {
    background: #fff;
    color: #000;
}
.modern-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}
.modern-btn.secondary {
    background: var(--secondary-color);
    color: #000;
}
.modern-btn.secondary:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('images/section-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.solution-card {
    background: #040404;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(124, 183, 157, 0.2);
}

.solution-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.solution-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-card h5 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.solution-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 18px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: auto;
    min-height: 56px;
    vertical-align: top;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-row input,
.form-row select {
    flex: 1;
    min-width: 0;
}

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

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--secondary-color);
}

.radio-option span {
    font-weight: 500;
}

/* Step Form Styles */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}
.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    transition: all 0.3s ease;
}
.step.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.form-step h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}
.step-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.step-buttons .btn {
    flex: 1;
}
/* Input with Icon Styles */
.input-with-icon {
    position: relative;
    margin-bottom: 25px;
}
.input-with-icon i,
.input-with-icon img {
    position: absolute;
    left: 20px;
    top: 18px;
    color: #fff;
    font-size: 16px;
    z-index: 2;
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}
.input-with-icon input,
.input-with-icon textarea {
    padding-left: 50px !important;
    padding-right: 24px !important;
}
.input-with-icon textarea + i {
    top: 18px;
}

/* News Section */
.news-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('images/section-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.news-card {
    background: #040404;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(124, 183, 157, 0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content h5 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h5 a:hover {
    color: var(--secondary-color);
}

.news-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta span {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Language Dropdown Styles */
.language-switcher.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.lang-dropdown-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(11, 13, 23, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    min-width: 120px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px;
}

.language-switcher:hover .lang-dropdown-menu,
.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 14px;
    gap: 8px;
    font-weight: 500;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.lang-option.active {
    background: var(--secondary-color);
    color: black;
}

.flag-icon {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-chat a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(124, 183, 157, 0.4);
}

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

.scroll-to-top:hover {
    background: #fff;
    transform: translateY(-3px);
}

.scroll-to-top img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: url('../images/bg footer.png') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
}

/* Utility Classes */
.o-hidden {
    overflow: hidden;
}
.rest {
    margin: 0;
    padding: 0;
}
.valign {
    display: flex;
    align-items: center;
}
.full-width {
    width: 100%;
}
.cursor-pointer {
    cursor: pointer;
}
.ti-close::before {
    content: '✕';
}
.ti-align-right::before {
    content: '☰';
    font-size: 18px;
    color: #fff;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar .navbar-nav { display: none; }
    .menu-icon { display: block; }
    .navbar .topnav .butn { display: none; }
    .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
    .header-ms .caption h1 { font-size: 60px; }
    .order-md-2 { order: 1; }
    .order-md-1 { order: 2; }
    .md-mb50 { margin-bottom: 30px; }
    .card-item { height: auto; margin-bottom: 20px; }
    .card-item .row { flex-direction: column; }
    .services-sa .item { margin-bottom: 20px; }
    .stats_layout { grid-template-columns: 1fr; gap: 20px; }
    .stats-section h2 { font-size: 24px; }
    .work-card .card-item {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 767px) {
    .container { padding: 0 20px; }
    .header-ms .caption h1 { font-size: 40px; }
    .header-ms .caption p { font-size: 16px; }
    .butons { flex-direction: column; gap: 15px; }
    .navbar .logo, .navbar .navbar-nav, .navbar .topnav .butn { padding: 5px 15px; font-size: 12px; }
    .services-sa .item .cont { padding: 10px; }
    .section-padding { padding: 60px 0; }
    .stats-section h2 { font-size: 20px; line-height: 1.3; }
    .stat-value { font-size: 28px; }
    .stat-label { font-size: 12px; }
    .contact-form {
        padding: 30px 20px !important;
    }
    .contact-info h2 {
        font-size: 24px !important;
    }
    .contact-info p {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .header-ms .caption h1 { font-size: 32px; }
    .header-ms { padding-top: 150px; }
    .navbar .topnav { flex-direction: column; gap: 10px; }
}

@media (max-width: 768px) {
    .services-sa,
    .services-sa .item,
    .combined-section .services-sa,
    .combined-section .services-sa .item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}