/* Global Style Variables & Resets */
:root {
    --primary-color: #0047af;
    --hover-color: #199dec;
    --dark-color: #000000;
    --medium-color: #444444;
    --light-color: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #0f0f0f;
    --border-color: #ececec;
    
    --heading-font: 'Titillium Web', sans-serif;
    --body-font: 'Source Sans 3', sans-serif;
}

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

body {
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--medium-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

/* Site Layout Container */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------------------------------------------------- */
/* HEADER & NAVIGATION */
/* ---------------------------------------------------- */
.site-header-wrapper {
    height: 80px; /* Base height to prevent layout shift */
    position: relative;
    z-index: 999;
}

.site-header {
    background-color: var(--light-color);
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.15);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

/* Add shadow / compression on scroll */
.site-header.is-sticky {
    height: 70px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

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

.site-branding {
    flex-shrink: 0;
}

.site-branding img {
    height: 44px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.is-sticky .site-branding img {
    height: 38px;
}

/* Desktop Menu */
.main-navigation {
    display: block;
}

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

.main-navigation ul li a {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
}

/* Underline slide effect on hover */
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: 100%;
}

.main-navigation ul li.current-menu-item a {
    color: var(--primary-color);
}

/* Toggle for Mobile Menu */
.mobile-nav-toggle-wrapper {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 5px;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* ---------------------------------------------------- */
/* HERO / BANNER SECTION */
/* ---------------------------------------------------- */
.hero-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    width: 100%;
    margin-top: 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    color: var(--light-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
    text-transform: none;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--light-color);
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------- */
/* COMPREHENSIVE SOLUTIONS (SERVICES) SECTION */
/* ---------------------------------------------------- */
.solutions-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

.separator-line {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 20px auto;
}

.separator-line.left-align {
    margin: 0 0 20px 0;
}

.separator-line.center-align-white {
    background-color: var(--light-color);
    margin: 0 auto 20px auto;
}

.section-intro {
    font-size: 14px;
    color: var(--medium-color);
    line-height: 1.7;
}

/* Grid of Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    transition: transform 0.3s ease;
}

.service-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 157, 236, 0.15);
    background-color: var(--light-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    padding: 8px;
}

.service-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Icon card hover micro-animations */
.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.service-card:hover .service-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.service-card-title {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-card-text {
    font-size: 14px;
    color: var(--medium-color);
    line-height: 1.6;
}

/* Section Footer Button */
.section-footer-btn {
    text-align: center;
    margin-top: 20px;
}

/* Buttons style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background-color: var(--bg-light);
    color: var(--dark-color);
    border-color: var(--bg-light);
}

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

.btn-secondary {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* ---------------------------------------------------- */
/* SPLIT SECTIONS (APPROACH & TEAM) */
/* ---------------------------------------------------- */
.split-section {
    padding: 0;
    background-color: var(--light-color);
}

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

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.split-image-col {
    flex: 1;
    min-height: 480px;
    overflow: hidden;
}

.split-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 80px;
}

.approach-section .split-content-col {
    background-color: var(--bg-light);
}

.split-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.split-text p {
    font-size: 14px;
    color: var(--medium-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-text p:last-child {
    margin-bottom: 30px;
}

/* Layout reversal for layout variety */
.reverse-layout .split-container {
    flex-direction: row-reverse;
}

/* ---------------------------------------------------- */
/* CLIENTS SECTION */
/* ---------------------------------------------------- */
.clients-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.clients-left-col {
    flex: 5;
    min-height: 520px;
    overflow: hidden;
}

.clients-left-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.clients-right-col {
    flex: 7;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clients-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--light-color);
    text-align: center;
    margin-bottom: 15px;
}

.clients-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.client-logo-card {
    background-color: var(--light-color);
    border-radius: 4px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-card img {
    max-height: 90px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.client-logo-card:hover img {
    transform: scale(1.05);
}

/* ---------------------------------------------------- */
/* FOOTER SECTION */
/* ---------------------------------------------------- */
.site-footer {
    color: #cccccc;
    font-size: 14px;
}

.footer-top {
    background-color: var(--bg-dark);
    padding: 60px 20px 50px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.logo-col {
    flex: 4;
}

.logo-col img {
    max-height: 50px;
    width: auto;
}

.about-col {
    flex: 8;
}

.footer-block-title {
    color: var(--light-color);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    position: relative;
    padding-bottom: 10px;
}

.footer-block-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
}

.footer-about-text {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-email-wrap {
    font-size: 14px;
}

.footer-email-wrap a {
    color: var(--light-color);
    font-weight: 600;
}

.footer-email-wrap a:hover {
    color: var(--hover-color);
}

.footer-bottom {
    background-color: var(--dark-color);
    padding: 20px 20px;
    border-top: 1px solid #1a1a1a;
}

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

.site-info {
    font-size: 14px;
    color: #888888;
}

.site-info a {
    color: var(--light-color);
}

.site-info a:hover {
    color: var(--hover-color);
}

/* ---------------------------------------------------- */
/* MOBILE SIDEBAR DRAWER (HAMBURGER MENU) */
/* ---------------------------------------------------- */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px; /* Offscreen right */
    width: 300px;
    height: 100%;
    background-color: var(--light-color);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transition: right 0.3s cubic-bezier(0.77,0,0.175,1);
}

.mobile-sidebar.is-active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

#sidebar-nav-logo img {
    height: 40px;
    width: auto;
}

#close-sidebar-nav {
    font-size: 20px;
    color: var(--dark-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

#close-sidebar-nav:hover {
    color: var(--primary-color);
}

/* Mobile Sidebar Menu Navigation */
.mobile-navigation {
    margin-bottom: 40px;
}

.primary-menu-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.primary-menu-mobile li a {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    display: block;
    padding: 5px 0;
}

.primary-menu-mobile li a:hover,
.primary-menu-mobile li.current-menu-item a {
    color: var(--primary-color);
}

/* Mobile Sidebar Social Media Links */
.sidebar-nav-social .inner-header-social {
    display: flex;
    gap: 15px;
}

.social-media-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-media-item:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* ---------------------------------------------------- */
/* ABOUT PAGE SPECIFIC STYLES */
/* ---------------------------------------------------- */

/* 1. Page Title Banner */
.page-title-banner {
    background-color: var(--bg-light);
    padding: 45px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title-text {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.breadcrumbs {
    font-size: 14px;
    color: #888888;
}

.breadcrumbs a {
    color: var(--medium-color);
}

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

.breadcrumbs i {
    margin: 0 10px;
    font-size: 12px;
}

.breadcrumbs span {
    color: #888888;
}

/* 2. Story Section */
.about-story-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.story-content-col {
    flex: 9;
}

.story-blank-col {
    flex: 3;
}

.story-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.story-text p {
    font-size: 14px;
    color: var(--medium-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* 3. Statistic Counters */
.clients-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.stat-counter-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    border: 4px double rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--light-color);
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-counter-card:hover .stat-icon-wrapper {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--light-color);
}

.stat-label {
    font-family: var(--body-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* 4. Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-quote-box {
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.testimonial-quote-box::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--light-color) transparent transparent;
    display: block;
    width: 0;
    z-index: 1;
}

.testimonial-quote-box::before {
    content: '';
    position: absolute;
    bottom: -16.5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 16px 16px 0;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent;
    display: block;
    width: 0;
    z-index: 0;
}

.quote-icon {
    font-size: 20px;
    color: #4974af;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.quote-text {
    font-size: 14px;
    color: var(--medium-color);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--light-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-role {
    font-size: 13px;
    color: #888888;
}

.testimonial-card:hover .testimonial-quote-box {
    transform: translateY(-5px);
}

/* ---------------------------------------------------- */
/* SERVICES PAGE SPECIFIC STYLES */
/* ---------------------------------------------------- */
.services-details-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.services-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--light-color);
    transition: transform 0.3s ease;
}

.service-detail-image {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.service-detail-title {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-detail-text {
    font-size: 14px;
    color: var(--medium-color);
    line-height: 1.7;
    text-align: center;
}

/* ---------------------------------------------------- */
/* CONTACT PAGE SPECIFIC STYLES */
/* ---------------------------------------------------- */
.contact-intro-section {
    padding: 80px 20px 40px 20px;
    background-color: var(--light-color);
}

.contact-intro-text {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.contact-intro-text p {
    font-size: 14px;
    color: var(--medium-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-intro-text p:last-child {
    margin-bottom: 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-title {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 15px;
    color: var(--medium-color);
    line-height: 1.7;
}

.contact-info-value a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-value a:hover {
    color: var(--hover-color);
}

/* Map and Form splits */
.contact-map-form-section {
    padding: 40px 20px 80px 20px;
    background-color: var(--light-color);
}

.contact-map-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-maps-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-embed-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-embed-wrapper iframe {
    display: block;
}

.contact-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form-section-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-section-subtitle {
    font-size: 14px;
    color: var(--medium-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Contact form layout */
.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.form-control-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--medium-color);
    background-color: var(--light-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control-input:focus {
    border-color: var(--primary-color);
}

.form-control-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--medium-color);
    background-color: var(--light-color);
    outline: none;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-control-textarea:focus {
    border-color: var(--primary-color);
}

.btn-submit-form {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--light-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit-form:hover {
    background-color: var(--hover-color);
}

/* ---------------------------------------------------- */
/* PRIVACY POLICY PAGE SPECIFIC STYLES */
/* ---------------------------------------------------- */
.privacy-policy-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-article {
    display: flex;
    flex-direction: column;
}

.privacy-header {
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.privacy-subtitle-top {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
}

.privacy-meta {
    font-size: 13px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.privacy-meta i {
    font-size: 6px;
    color: #cccccc;
}

.privacy-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--medium-color);
}

.privacy-content h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content strong {
    color: var(--dark-color);
}

.privacy-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-content a:hover {
    color: var(--hover-color);
}

/* ---------------------------------------------------- */
/* RESPONSIVE DESIGN (MEDIA QUERIES) */
/* ---------------------------------------------------- */

/* Desktop / Laptop screens */
@media screen and (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }
}

/* Tablets (landscape and portrait) */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .split-content-col {
        padding: 40px 40px;
    }
    
    .clients-right-col {
        padding: 40px 40px;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small Tablets / Large Mobile (Portrait) */
@media screen and (max-width: 960px) {
    .main-navigation {
        display: none; /* Hide desktop menu */
    }
    
    .mobile-nav-toggle-wrapper {
        display: block; /* Show hamburger toggle */
    }
    
    .split-container {
        flex-direction: column;
    }
    
    .split-image-col {
        min-height: 350px;
    }
    
    .reverse-layout .split-container {
        flex-direction: column;
    }
    
    .clients-container {
        flex-direction: column;
    }
    
    .clients-left-col {
        min-height: 350px;
    }
    
    .story-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .story-blank-col {
        display: none;
    }

    .contact-map-form-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* Mobile Screens */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 380px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .solutions-section {
        padding: 60px 20px;
    }
    
    .section-title, .split-title, .clients-title, .story-title, .form-section-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-content-col, .clients-right-col {
        padding: 40px 20px;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo-card {
        height: 80px;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .logo-col {
        text-align: left;
    }
    
    .footer-block-title {
        margin-bottom: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .about-story-section {
        padding: 60px 20px;
    }

    .services-details-section {
        padding: 60px 20px;
    }

    .services-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-intro-section {
        padding: 60px 20px 30px 20px;
    }

    .contact-map-form-section {
        padding: 30px 20px 60px 20px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-policy-section {
        padding: 60px 20px;
    }

    .privacy-subtitle-top {
        font-size: 24px;
    }
    .client-logo-card img {
    max-height: 70px;
}
}

/* Small Mobile Screens */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .clients-logos-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .client-logo-card img {
    max-height: 70px;
}
}



