/* 
 * Base Styles & Variables
 */
:root {
    --primary-color: #0056b3;
    --primary-dark: #003d82;
    --primary-light: #e6f0fa;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f4f7fb;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a202c;
}

h2 {
    font-size: 2.3rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* Typography & Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-left: 8px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4%;
    height: 85px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.nav-links a {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

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

/* Nav items with dropdowns should align with other links */
.nav-links > li {
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown > a > i {
    font-size: 0.6rem;
    margin-left: 4px;
    color: #a0aec0;
    transition: var(--transition);
}

.dropdown:hover > a > i {
    color: var(--primary-color);
}

/* ===== Level 1 Dropdown ===== */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 230px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
    list-style: none;
}

.dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* ===== Dropdown Links ===== */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
    color: #4a5568 !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.25s ease;
}

.dropdown-menu > li:last-child > a {
    border-bottom: none;
}

.dropdown-menu > li > a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color) !important;
    padding-left: 22px;
}

/* ===== Level 2 Submenu ===== */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a > i {
    font-size: 0.6rem;
    color: #a0aec0;
    transition: var(--transition);
    margin-left: auto;
}

.dropdown-submenu.open > a > i {
    color: var(--primary-color);
    transform: translateX(3px);
}

.sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 0 8px 8px 8px;
    padding: 8px 0;
    z-index: 1001;
    border-top: 3px solid var(--primary-color);
    list-style: none;
    max-height: 65vh;
    overflow-y: auto;
}

/* Show submenu via CSS hover on desktop, or .open class for mobile */
.dropdown-submenu:hover > .sub-menu,
.dropdown-submenu.open > .sub-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

/* ===== Submenu Links ===== */
.sub-menu li a {
    display: block !important;
    padding: 10px 18px;
    color: #4a5568 !important;
    font-weight: 500 !important;
    font-size: 0.88rem !important;
    white-space: nowrap;
    border-bottom: 1px solid #f8f8f8;
    transition: all 0.25s ease;
}

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

.sub-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color) !important;
    padding-left: 22px;
}

/* ===== Custom Scrollbar ===== */
.sub-menu::-webkit-scrollbar {
    width: 5px;
}
.sub-menu::-webkit-scrollbar-thumb {
    background-color: #cbd5e0;
    border-radius: 10px;
}
.sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

/* ===== Foreign Languages: 2-column grid ===== */
.foreign-menu {
    min-width: 520px;
    /* Remove display: grid !important from here so it doesn't override display: none */
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Apply grid ONLY when foreign menu is hovered/open */
.dropdown-submenu:hover > .sub-menu.foreign-menu,
.dropdown-submenu.open > .sub-menu.foreign-menu {
    display: grid !important;
}

.foreign-menu li {
    width: 100%;
}

.foreign-menu li a {
    white-space: normal !important;
    font-size: 0.85rem !important;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    background-color: var(--primary-light);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.2;
}

.talk-expert {
    font-size: 0.75rem;
    color: var(--text-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Banner Slider */
.hero-section {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.banner-slider {
    width: 100%;
    position: relative;
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inquiry-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.inquiry-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.5;
    z-index: 0;
}

.inquiry-card > * {
    position: relative;
    z-index: 1;
}

.inquiry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 700;
}

.inquiry-card p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group i {
    position: absolute;
    left: 16px;
    top: 15px;
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.8;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: var(--transition);
}

.form-group textarea {
    height: 100px;
    resize: none;
    padding-left: 15px; 
}

.form-group i ~ textarea {
    padding-left: 45px;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.15);
}

.secure-notice {
    font-size: 0.75rem !important;
    text-align: center;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    color: #718096 !important;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    z-index: 10;
    transition: var(--transition);
}

.slider-nav:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Value Props */
.value-props {
    background-color: var(--white);
    padding: 35px 0;
    border-bottom: 1px solid var(--border-color);
}

.prop-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.prop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    min-width: 120px;
}

.prop-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #ffffff, #e6f0fa);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 5px 5px 12px rgba(0, 86, 179, 0.1), 
                -5px -5px 12px #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 5px;
}

.prop-item:hover .prop-icon {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 8px 10px 18px rgba(0, 86, 179, 0.18), 
                -8px -10px 18px #ffffff;
    color: var(--primary-dark);
}

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.prop-icon i {
    animation: floatIcon 3s ease-in-out infinite;
}

.prop-item:nth-child(even) .prop-icon i {
    animation-delay: 1.5s;
}

.prop-item p {
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #2d3748;
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-left {
    flex: 1.2;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-left p {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-checklist {
    margin-bottom: 35px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2d3748;
    padding: 10px 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.about-checklist li:hover {
    border-left-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.about-checklist li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stat-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-box p {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
}

.about-form-side {
    flex: 0.8;
}

.inquiry-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.inquiry-card-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.inquiry-card-header h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.inquiry-card-header p {
    margin: 0;
    font-size: 0.9rem;
}

.form-group select {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    appearance: none;
    background-color: white;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.15);
}

.about-form-side .btn-primary {
    padding: 15px;
    font-size: 1.05rem;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25);
}

.about-form-side .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.35);
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 45px;
    text-align: center;
}

.section-header.dual-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.section-header.space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.section-header p {
    color: #4a5568;
    max-width: 600px;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #ffffff, #e6f0fa);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 5px 5px 12px rgba(0, 86, 179, 0.1), 
                -5px -5px 12px #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-circle i {
    animation: floatIcon 3s ease-in-out infinite;
}

.service-card:nth-child(even) .icon-circle i {
    animation-delay: 1.5s;
}

.service-card:hover .icon-circle {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 8px 10px 18px rgba(0, 86, 179, 0.2), 
                -8px -10px 18px #ffffff;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.service-card p {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Banner Stats */
.stats-banner {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 35px 0;
}

.stats-banner-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

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

.stats-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2), 
                inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-item:hover .stats-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 6px 8px 15px rgba(0, 0, 0, 0.3),
                inset 1px 1px 2px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

@keyframes pulseIcon {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.stats-icon i {
    animation: pulseIcon 2s infinite alternate;
}

.banner-item:nth-child(even) .stats-icon i {
    animation-delay: 1s;
}

.banner-item h4 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--white);
}

.banner-item p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.industry-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.industry-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.12);
}

.industry-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.industry-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.industry-card p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.testi-btn {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.testi-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.testimonials-slider-wrapper {
    margin-top: 30px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-grid {
    margin: 0 -12px;
}

.testimonial-card.google-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    margin: 15px 12px;
    display: flex !important;
    flex-direction: column;
    height: auto;
}

.g-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.g-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.g-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.g-user-info h4 {
    font-size: 1rem;
    margin: 0;
    color: #202124;
    font-family: 'Inter', sans-serif;
}

.g-user-info span {
    font-size: 0.8rem;
    color: #70757a;
}

.g-logo {
    color: #4285F4;
    font-size: 1.5rem;
}

.g-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.g-rating i {
    color: #fbbc04;
    font-size: 0.85rem;
}

.g-time {
    font-size: 0.8rem;
    color: #70757a;
}

.g-text {
    font-size: 0.95rem;
    color: #3c4043;
    line-height: 1.5;
    margin: 0;
}

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

.client-info img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.client-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
    color: #2d3748;
}

.client-info .role {
    color: #a0aec0;
    font-size: 0.8rem;
}

/* Zig-Zag Content Section */
.zigzag-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

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

.zigzag-img {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
}

.zigzag-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.zigzag-row:hover .zigzag-img img {
    transform: scale(1.03);
}

.zigzag-text {
    flex: 1;
}

.zigzag-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.zigzag-text p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.zigzag-list {
    margin-bottom: 30px;
}

.zigzag-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: #2d3748;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.zigzag-list li:last-child {
    border-bottom: none;
}

.zigzag-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.faq-image {
    flex: 1;
}

.faq-image img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.faq-content {
    flex: 1.2;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
}

.accordion-header i {
    color: #a0aec0;
    font-size: 0.9rem;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.accordion-body p {
    color: #4a5568;
    padding-bottom: 18px;
    font-size: 0.9rem;
}

.accordion-item.active .accordion-header {
    background-color: var(--primary-color);
}

.accordion-item.active .accordion-header h4,
.accordion-item.active .accordion-header i {
    color: var(--white);
}

.accordion-item.active .accordion-body {
    max-height: 250px;
    padding-top: 10px;
    background-color: #f8fbff;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #2d3748;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #718096;
}

.read-more {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA Bar */
.cta-bar {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--white);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: var(--white);
}

.cta-text p {
    opacity: 0.9;
    font-size: 1.05rem;
    max-width: 450px;
}

.cta-form {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cta-form .form-group {
    margin-bottom: 0;
}

.cta-form .form-group.full-width {
    grid-column: 1 / -1;
}

.cta-form .form-group i {
    top: 15px;
}

.cta-form input, .cta-form textarea {
    border: 1px solid var(--border-color);
    background-color: #f8fafc;
    padding: 12px 15px 12px 40px;
    color: var(--text-color);
}

.cta-form input:focus, .cta-form textarea:focus {
    background-color: var(--white);
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.brand-col {
    flex: 1.5;
}

.footer-logo {
    margin-bottom: 20px;
    max-height: 60px;
    background-color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
}

.brand-col p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: #374151;
    color: #d1d5db;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: #9ca3af;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col ul li i {
    margin-top: 4px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9ca3af;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--white);
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.call-btn:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

/* Inner Pages Styling (Privacy, Terms, Disclaimer) */
.inner-page-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.inner-page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.content-box h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box p {
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.content-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: #4a5568;
}

.content-box ul li {
    margin-bottom: 8px;
}

/* ===== Responsive Styles ===== */

/* --- Mobile Navigation (≤1080px) --- */
@media (max-width: 1080px) {
    .header-container {
        padding: 10px 20px;
    }

    /* Mobile menu: full-width dropdown from header */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--white);
        padding: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }
    .nav-links.active {
        display: flex !important;
    }

    /* Hide desktop-only elements */
    .header-right .contact-info,
    .header-right .btn {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* Stack nav items vertically */
    .nav-links > li {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        position: static;
    }
    .nav-links > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }

    /* Reset dropdowns for mobile */
    .dropdown-menu,
    .sub-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        display: none !important;
        padding-left: 15px;
        min-width: 100% !important;
        width: 100% !important;
        max-height: none !important;
        overflow-y: visible !important;
        background-color: #f8fafc !important;
    }

    /* Disable hover on mobile */
    .dropdown:hover > .dropdown-menu,
    .dropdown-submenu:hover > .sub-menu {
        display: none !important;
    }

    /* Show via JS toggle */
    .dropdown.active > .dropdown-menu {
        display: block !important;
    }
    .dropdown-submenu.open > .sub-menu {
        display: block !important;
    }

    /* Rotate caret icon when open */
    .dropdown.active > a > i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
    .dropdown-submenu.open > a > i {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }

    /* Foreign menu: single column on mobile */
    .foreign-menu {
        grid-template-columns: 1fr !important;
        min-width: 100% !important;
    }
    .dropdown-submenu.open > .sub-menu.foreign-menu {
        display: grid !important;
    }

    /* Dropdown links styling */
    .dropdown-menu > li > a,
    .sub-menu li a {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid #edf2f7 !important;
        width: 100%;
        white-space: normal !important;
    }
}

/* --- Tablet and below (≤992px) --- */
@media (max-width: 992px) {
    .hero-content,
    .about-wrapper,
    .faq-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text-side {
        text-align: center;
        max-width: 100%;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.15;
    }

    .features-grid {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header.dual-header,
    .section-header.space-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* About section image */
    .about-wrapper {
        gap: 30px;
    }
    .about-form-side {
        width: 100%;
    }

    /* Page header responsive */
    .page-header h1,
    .inner-page-header h1 {
        font-size: 2rem !important;
    }
    .page-header p,
    .inner-page-header p {
        font-size: 1rem !important;
    }
    .page-header {
        padding: 60px 0 40px !important;
    }
    .inner-page-header {
        padding: 60px 0 40px;
    }
}

/* --- Phone landscape and below (≤768px) --- */
@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    .hero-text-side h1 {
        font-size: 2rem;
    }

    .prop-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 12px;
    }

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cta-form-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-box {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    .stat-box h3 {
        font-size: 1.4rem;
    }
    .stat-box p {
        font-size: 0.7rem;
    }

    .about-stats-row {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .zigzag-row,
    .zigzag-reverse {
        flex-direction: column;
        gap: 25px;
    }
    .zigzag-row {
        margin-bottom: 40px;
    }
    .zigzag-text h2 {
        font-size: 1.5rem;
    }

    .faq-container {
        gap: 25px;
    }
    .faq-image {
        display: none;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Industries grid */
    .industries-grid {
        grid-template-columns: 1fr;
    }

    /* Page header responsive */
    .page-header h1,
    .inner-page-header h1 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    .page-header {
        padding: 50px 0 30px !important;
    }

    /* CTA bar */
    .cta-bar {
        padding: 40px 0;
    }

    /* Section padding */
    .services-section,
    .industries-section,
    .testimonials-section,
    .faq-section,
    .about-section {
        padding: 50px 0;
    }

    /* Floating buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* --- Small phones (≤480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text-side h1 {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .prop-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-row {
        gap: 10px;
    }

    .stat-box {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    .stat-box h3 {
        font-size: 1.1rem;
    }
    .stat-box p {
        font-size: 0.6rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .page-header h1,
    .inner-page-header h1 {
        font-size: 1.4rem !important;
    }

    .content-box {
        padding: 20px 15px;
    }
}

/* ===== Inner Page Responsive Overrides ===== */
/* These override inline styles on language pages, about-us, services, contact etc. */

@media (max-width: 768px) {
    /* Hero Modern (language pages) */
    .hero-modern {
        padding: 60px 0 40px !important;
    }
    .hero-modern .container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .hero-modern .container > div {
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    .hero-desc {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
    .hero-form-card {
        padding: 25px 20px !important;
    }
    .hero-stats {
        justify-content: center;
    }
    .stat-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    /* Page header with background image (about-us) */
    .page-header[style*="padding: 160px"] {
        padding: 80px 0 50px !important;
    }
    .page-header[style*="font-size: 4rem"] h1,
    .page-header h1[style*="font-size: 4rem"] {
        font-size: 1.8rem !important;
    }
    .page-header h1[style*="font-size: 3rem"] {
        font-size: 1.6rem !important;
    }
    .page-header p[style*="font-size: 1.3rem"],
    .page-header p[style*="font-size: 1.15rem"] {
        font-size: 0.95rem !important;
    }

    /* ZZ rows (language pages inline zig-zag) */
    .zz-row {
        flex-direction: column !important;
        gap: 25px !important;
        margin-bottom: 50px !important;
    }
    .zz-content,
    .zz-img {
        min-width: 100% !important;
    }
    .zz-title {
        font-size: 1.5rem !important;
    }

    /* Section title (language pages) */
    .section-title {
        font-size: 1.8rem !important;
    }
    .section-subtitle {
        font-size: 1rem !important;
    }

    /* Feature cards (language pages) */
    .feature-card {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    /* Bottom CTA (language pages) */
    .bottom-cta {
        padding: 50px 0 !important;
    }
    .bottom-cta h2 {
        font-size: 1.8rem !important;
    }
    .bottom-cta p {
        font-size: 1rem !important;
    }
    .cta-form-row {
        flex-direction: column !important;
    }
    .cta-input {
        min-width: 100% !important;
    }

    /* Contact page sections */
    .contact-section .container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .contact-info-blocks,
    .contact-form-wrapper {
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* SEO section */
    .seo-box h2 {
        font-size: 1.6rem !important;
    }
    .seo-box h3 {
        font-size: 1.3rem !important;
    }

    /* About/Why-us rows */
    .about-row,
    .service-row {
        flex-direction: column !important;
        gap: 25px !important;
    }
    .about-row > div,
    .service-row > div {
        min-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        padding: 40px 0 30px !important;
    }
    .hero-title {
        font-size: 1.5rem !important;
    }
    .hero-form-card {
        padding: 20px 15px !important;
    }
    .hero-form-card h3 {
        font-size: 1.1rem !important;
    }
    .stat-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        gap: 6px !important;
    }
    .stat-badge i {
        font-size: 1rem !important;
    }
    .zz-title {
        font-size: 1.3rem !important;
    }
    .section-title {
        font-size: 1.4rem !important;
    }
    .bottom-cta h2 {
        font-size: 1.4rem !important;
    }
}
