/* For future development for the Company need I am adding the comments so other engineer can have a idea on css */

/* ========================================
   1. RESET AND BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    background: #FAF9F8;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   2. NAVIGATION BAR - FIXED ACTIVE STATE
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FAF9F8;
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
}

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

/* FIX: Separate class for logo image to prevent fade-in conflicts */
.logo-image {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: none;
    opacity: 1 !important;
    animation: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #494137;
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: #738063;
    text-shadow: none;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* FIXED: Persistent active state for current page */
.nav-menu li a.active {
    color: #738063 !important;
    font-weight: 700 !important;
}

.nav-menu li a.active::after {
    width: 100% !important;
    background: #738063 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #989187;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.banner-section {
    margin-top: 90px;
}

@supports (-webkit-touch-callout: none) {
    .hero {
        height: 100dvh;
        min-height: 540px;
    }
}

/* ========================================
   3. HERO SECTION - FIXED VIDEO DISPLAY
   ======================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* FIXED: Better video display without excessive zoom */
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FAF9F8;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-weight: 300;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.font-hero {
    font-size: 60px;
}

.font-small {
    font-size: 30px;
}

.title-line {
    font-weight: 300;
    letter-spacing: 2px;
}

.title-highlight {
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   4. CALL TO ACTION BUTTON
   ======================================== */
.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 45px;
    background: #738063;
    color: #FAF9F8;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px #333333;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #FAF9F8;
    color: #738063;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px #333333;
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.highlight {
    color: #738063;
    font-weight: 700;
}

.highlight-reverse {
    color: #333333;
    font-weight: 400;
}

/* ========================================
   5. CONTENT SECTIONS
   ======================================== */
.quality-section,
.speed-section {
    padding: 100px 40px;
    background: #FAF9F8;
}

.quality-section {
    background: #FAF9F8;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-wrapper.reverse {
    direction: rtl;
}

.content-wrapper.reverse > * {
    direction: ltr;
}

.text-content {
    padding: 20px;
}

.text-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #333;
}

.text-content p {
    font-size: 24px;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

.video-content {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    max-height: 450px;
}

.video-content video {
    width: 100%;
    height: 100%;
    max-height: 450px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.image-content {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    opacity: 1 !important;
}

.image-content:hover img {
    transform: scale(1.02);
}

/* ========================================
   6. PROCESS SECTION - DESKTOP CIRCLES
   ======================================== */
.process-section {
    background: #FAF9F8;
    padding: 40px 40px;
    overflow: hidden;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    color: #738063;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 80px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    width: 200px;
    height: 200px;
    padding: 30px 20px;
    background: #FAF9F8;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid #e0e0e0;
    position: relative;
}

.process-step:hover {
    background: #738063;
    border-color: #738063;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(115, 128, 99, 0.4);
}

.process-step:hover .step-icon svg {
    stroke: #FAF9F8;
}

.process-step:hover h3,
.process-step:hover p {
    color: #FAF9F8;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    stroke: #738063;
    transition: all 0.3s ease;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #738063;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.arrow-connector {
    font-size: 40px;
    color: #738063;
    font-weight: 300;
    flex-shrink: 0;
}

/* ========================================
   6.5 CONSULT BUTTON - CENTERED
   ======================================== */
.consult-button-container {
    text-align: center;
    padding: 60px 40px;
}

.consult-button {
    display: inline-block;
    padding: 18px 50px;
    background: #738063;
    color: #FAF9F8;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(115, 128, 99, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.consult-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.consult-button:hover::before {
    left: 100%;
}

.consult-button:hover {
    background: #FAF9F8;
    color: #738063;
    border-color: #738063;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(115, 128, 99, 0.4);
}

/* ========================================
   7. GLOBAL NETWORK SECTION - LEFT/RIGHT LAYOUT
   ======================================== */
.network-section {
    background: #EAE6E3;
    padding: 30px 40px;
}

.network-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.network-text-content {
    padding-right: 40px;
}

.network-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.network-content p {
    font-size: 24px;
}

.network-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.8;
    text-align: left;
}

.network-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    opacity: 1 !important;
    animation: none !important;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px 12px;
    background: #FAF9F8;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #FAF9F8;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: #738063;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #738063;
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    text-align: center;
}

/* ========================================
   8. PARTNERS/CERTIFICATIONS SECTION 
   ======================================== */
.partners-section {
    background: #FAF9F8;
    padding: 80px 40px;
}

.partners-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    color: #738063;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    margin: 40px auto 0;
    max-width: 1200px;
    padding: 0 10px;
}

.cert-card {
    background: #FFFFFF;
    border: 1px solid #E5E2DF;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(115, 128, 99, 0.25);
    border-color: #738063;
}

.cert-card-media {
    display: grid;
    place-items: center;
    padding: 40px;
    background: #FFFFFF;
    border-bottom: 1px solid #EEEAE7;
    min-height: 180px;
}

.cert-card-media img,
.cert-card-media svg {
    max-width: 180px;
    max-height: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1 !important;
    filter: none !important;
}

/* ========================================
   9. FOOTER - FIXED WITH ACTIVE STATE
   ======================================== */
.footer {
    background: #989187;
    color: #FAF9F8;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

/* LEFT: Logo + Socials */
.footer-section.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-logo svg {
    width: 80px;
    height: 80px;
    fill: white;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #738063;
    border-color: #738063;
    transform: translateY(-3px);
}

.footer-social-icons a svg {
    width: 22px;
    height: 22px;
    fill: #FAF9F8;
}

/* CENTER: Site Map - FIXED WITH ACTIVE STATE */
.footer-section.footer-sitemap-section {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-sitemap {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-sitemap li {
    margin-bottom: 12px;
    list-style-type: none;
}

.footer-sitemap li::marker,
.footer-sitemap li::before {
    content: none !important;
    display: none !important;
}

.footer-sitemap li a {
    color: #FAF9F8;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-sitemap li a:hover {
    color: #738063;
    transform: scale(1.15);
    font-weight: 700;
}

/* FIXED: Active state in footer - larger and bold */
.footer-sitemap li a.active {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #738063 !important;
}

/* RIGHT: Contact Info */
.footer-section.footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-info h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #FAF9F8;
}

.footer-contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #FAF9F8;
}

.footer-contact-info a {
    color: #FAF9F8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: rgb(101, 241, 7);
}

/* Footer bottom copyright */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ===== FIX FOOTER LOGO AND SOCIAL ICONS OPACITY ===== */
.footer-logo img,
.footer-social-icons svg {
    opacity: 1 !important;
    filter: none !important;
    transform: scale(1) !important;
}

.footer-social-icons .social-icon {
    width: 50px;
    height: 50px;
}

.footer-social-icons .social-icon svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   10. ANIMATION CLASSES
   ======================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-play-state: paused;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-play-state: paused;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease forwards;
    animation-play-state: paused;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
    animation-play-state: paused;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

/* ========================================
   11. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .process-steps {
        gap: 25px;
    }
    
    .process-step {
        width: 180px;
        height: 180px;
    }
    
    .arrow-connector {
        font-size: 35px;
    }

    .certifications-row {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .text-content h2,
    .network-content h2 {
        font-size: 40px;
    }

    .content-wrapper {
        gap: 50px;
    }

    .network-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .network-text-content {
        padding-right: 0;
    }

    .network-content h2,
    .network-description,
    .network-content p {
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .footer-section.footer-logo-section,
    .footer-section.footer-sitemap-section,
    .footer-section.footer-contact-section {
        align-items: center;
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .process-step {
        width: 160px;
        height: 160px;
    }
    
    .arrow-connector {
        display: none;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
    }
}

/* ========================================
   12. RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #FAF9F8;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        gap: 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #FAF9F8;
    }

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

    .nav-menu li a {
        color: #333 !important;
        text-shadow: none !important;
    }

    .hero {
        height: 75vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .quality-section,
    .speed-section,
    .process-section,
    .partners-section {
        padding: 30px 20px;
    }

    .consult-button-container {
        padding: 40px 20px;
    }

    .content-wrapper,
    .content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .text-content {
        padding: 10px;
    }

    .text-content h2,
    .network-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text-content p,
    .network-description,
    .section-subtitle {
        font-size: 16px;
    }

    .network-section {
        padding: 30px 20px;
    }

    .network-content {
        grid-template-columns: 1fr;
    }

    .network-text-content {
        padding-right: 0;
    }

    .network-content h2,
    .network-description,
    .network-content p {
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .stat-label {
        font-size: 13px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .logo-image {
        height: 60px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .process-step {
        width: 100%;
        height: auto;
        border-radius: 12px;
        padding: 25px 20px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        min-height: auto;
    }
    
    .step-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .process-step div:last-child {
        flex: 1;
    }
    
    .process-step h3 {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: left;
    }
    
    .process-step p {
        font-size: 13px;
        text-align: left;
        line-height: 1.6;
    }
    
    .arrow-connector {
        display: none;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 520px;
    }
    
    .cert-card-media {
        min-height: 110px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero {
        height: 70vh;
        min-height: 420px;
    }

    .text-content h2,
    .network-content h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .step-icon {
        margin-bottom: 15px;
    }
    
    .process-step h3,
    .process-step p {
        text-align: center;
    }

    .certifications-row {
        gap: 15px;
    }

    .cert-item {
        min-width: 70px;
    }

    .cert-icon {
        width: 45px;
        height: 45px;
    }

    .cert-icon svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 380px) {
    .video-container video {
        object-fit: cover;
        background: #000;
    }
}

/* Prevent horizontal overflow globally */
html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
   .font-hero {
       font-size: 32px;
       line-height: 1.15;
   }
   .font-small {
       font-size: 18px;
   }
}

@media (max-width: 480px) {
   .font-hero {
       font-size: 26px;
   }
   .font-small {
       font-size: 16px;
   }
}


/* End of styles.css */