/* =====================================================
   ORIENT GATE - CUSTOM STYLES
   Using 'og-' prefix to avoid conflicts
   ===================================================== */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --og-primary-color: oklch(51.1% .262 276.966);
    --og-primary-hover: oklch(58.5% .233 277.117);
    --og-bg-color: #f5f5f7;
    /* --og-text-dark: #1a1a2e; */
    -og-text-dark: #101828;
    /* -og-text-dark: #0a0a0a; */
    /* --og-text-gray: #555; */
    --og-text-gray: #717182;
    --og-content-width: 1152px;
}

body {
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    background-color: var(--og-bg-color);
    overflow-x: hidden;
}

/* Container Override for 1152px width */
.og-container {
    max-width: var(--og-content-width);
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.og-container-header {
    display: flex;
    justify-content: space-between;
}

/* =====================================================
   HEADER SECTION STYLES
   ===================================================== */

.og-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background-color: var(--og-bg-color); */
    transition: box-shadow 0.3s ease;
}

.og-header.og-header-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    /* background-color: rgba(245, 245, 247, 0.95); */
    /* backdrop-filter: blur(10px); */
    background-color: rgb(245 245 247 / 92%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.og-navbar {
    padding: 15px 0;
}

/* Logo Styles */
.og-logo {
    text-decoration: none;
}

.og-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.og-logo-icon {
    width: 120px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.og-logo-icon img {
    max-width: 100%;
    height: auto;
}

.og-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.og-logo-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--og-text-dark);
}

.og-logo-arabic {
    font-size: 12px;
    color: var(--og-text-dark);
    font-weight: 500;
}

.og-logo-subtitle {
    font-size: 9px;
    color: #666;
    letter-spacing: 0.5px;
}

/* Navigation Links */
.og-nav-links {
    gap: 10px;
}

.og-nav-link {
    color: #4a5565 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.og-nav-link:hover,
.og-nav-link.active {
    color: #4a5565 !important;
}

/* Right Side Navigation */
.og-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.og-globe-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.og-globe-icon:hover {
    border-color: var(--og-primary-color);
    color: var(--og-primary-color);
}

.og-contact-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.og-contact-link:hover {
    color: var(--og-primary-color);
}

.og-btn-get-started {
    background: var(--og-primary-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.og-btn-get-started:hover {
    background: var(--og-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Mobile Toggle */
.og-navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    position: relative;
    z-index: 1001;
}

.og-navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.og-navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.og-navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

/* =====================================================
   HERO SECTION STYLES
   ===================================================== */


.mainSection {
    background-image: linear-gradient(to bottom, #FEFEFF, #EDEDF1);
}



.og-hero {
    padding-top: 130px;
    padding-bottom: 70px;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
}



.og-hero-content {
    padding-right: 40px;
}

.og-hero-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--og-text-dark);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-align: left;
    padding-top: 20px;
}

.og-hero-description {
    font-size: 20px;
    color: var(--og-text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
    text-align: left;
}

.og-btn-book-inspection {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--og-primary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.og-btn-book-inspection:hover {
    background: var(--og-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.og-btn-book-inspection i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.og-btn-book-inspection:hover i {
    transform: translateX(4px);
}

/* Hero Image */
.og-hero-image-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.og-hero-image-wrapper {
    position: relative;
    max-width: 550px;
    width: 100%;
}

/* Background shape behind image */
.og-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    /* right: -15px; */
    left: 0;
    right: 0;
    width: 88%;
    height: 99%;
    /* background: linear-gradient(135deg, #e8e8ec 0%, #d8d8dc 100%); */
    background-color: #F0F0F0;
        border: 1px solid #E6E6EA;
    border-radius: 24px;
    z-index: 0;
    transform: skewX(-6deg);
    margin: auto;
}

.og-hero-image-inner {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: skewX(6deg);
    height: 560px;
    width: 85%;
    margin: auto;
}

.og-hero-image {

    display: block;
    object-fit: cover;
    object-position: center;

}

/* =====================================================
   TRUSTED BY SECTION STYLES
   ===================================================== */

.og-trusted-by {
    padding: 0px 0 60px;
    /* background-color: var(--og-bg-color); */
    text-align: center;
}

.og-trusted-by-text {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Carousel Container */

.og-carousel-container {
    overflow: hidden;
    width: 100%;
    background-color: #E6E6EA;
    padding: 25px 0;
}

/* Track */
.og-carousel-track {
    display: flex;
    width: fit-content;
    animation: og-scroll 20s linear infinite;
}

/* .og-carousel-track:hover {
    animation-duration: 10s;
} */

/* Animation */
@keyframes og-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.og-carousel-item {
    flex-shrink: 0;
    width: 220px;
    margin-right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F4F4F5;
    border-radius: 10px;
    padding: 20px;
}

.og-carousel-logo {
    height: 40px;
    width: auto;
        filter: grayscale(100%);
}


/* =====================================================
   QUALITY ASSURANCE SECTION STYLES
   ===================================================== */

.og-qa-section {
    padding: 120px 0 80px;
    background-color: #fff;
}

.og-qa-header {
    text-align: center;
    margin-bottom: 60px;
}

.og-qa-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #4F39F6;
    /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.og-qa-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.og-qa-subtitle {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.og-qa-subtitle strong {
    color: var(--og-text-dark);
    font-weight: 600;
}

.og-qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

.og-qa-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.og-qa-icon-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #f5f5f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.og-qa-icon {
    width: 20px;
    height: 20px;
    color: #4F39F6;
}

.og-qa-card-content {
    flex: 1;
}

.og-qa-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.og-qa-card-text {
    font-size: 14px;
    color: var(--og-text-gray);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   WHY CHOOSE ORIENT GATE SECTION STYLES
   ===================================================== */

.og-wc-section {
    padding: 80px 0;
    background-color: #fff;
}

.og-wc-header {
    /* text-align: center; */
    margin-bottom: 50px;
}

.og-wc-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #4F39F6;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}



.og-wc-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--og-text-dark);
    line-height: 1.2;
}



/* Grid Layouts */
.og-wc-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

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

/* Card Styles */
.og-wc-card {
    display: flex;
    flex-direction: column;
    /* padding: 40px; */
    border: 1px solid #E9E9E9;
    border-radius: 16px;
}

.og-wc-card-image {
    width: 100%;
    /* border-radius: 16px; */
    border-radius: 16px 16px 0px 0px;
    overflow: hidden;
    /* margin-bottom: 20px; */
}

.og-wc-card-large .og-wc-card-image {
    height: 320px;
}

.og-wc-card-small .og-wc-card-image {
    height: 100%;
}

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

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

.og-wc-card-content {
    padding: 25px;
}

.og-wc-card-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #4F39F6;
    margin-bottom: 8px;
}

.og-wc-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    /* text-decoration: underline; */
    text-decoration-color: #4F39F6;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.og-wc-card-text {
    font-size: 14px;
    color: var(--og-text-gray);
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   CONTACT FORM STYLES
   ===================================================== */

.og-cf-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
}

.og-cf-form {
    width: 100%;
}

.og-cf-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.og-cf-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.og-cf-group-full {
    width: 100%;
    margin-bottom: 20px;
}

.og-cf-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--og-text-dark);
    /* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}

.og-cf-input,
.og-cf-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--og-text-dark);
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.og-cf-input::placeholder,
.og-cf-textarea::placeholder {
    color: #9ca3af;
}

.og-cf-input:focus,
.og-cf-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.og-cf-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Error State Styles */
.og-cf-input.og-cf-error,
.og-cf-textarea.og-cf-error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.og-cf-input.og-cf-error:focus,
.og-cf-textarea.og-cf-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.og-cf-error-text {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

.og-cf-error-text.og-cf-show {
    display: block;
}

.og-cf-checkbox-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.og-cf-checkbox-error.og-cf-show {
    display: block;
}

.og-cf-submit-wrapper {
    margin-bottom: 16px;
}

.og-cf-submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background-color: var(--og-primary-color);
    /* background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificateBTN {
    width: 50%;
}

.og-cf-submit-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.og-cf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.og-cf-privacy {
    font-size: 14px;
    color: var(--og-text-gray);
    text-align: center;
    margin: 0;
}

.og-cf-privacy a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.og-cf-privacy a:hover {
    color: #4f46e5;
}

/* Success Message */
.og-cf-success {
    text-align: center;
    padding: 40px 20px;
}

.og-cf-success-icon {
    width: 64px;
    height: 64px;
    color: #22c55e;
    margin-bottom: 20px;
}

.og-cf-success-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 10px;
}

.og-cf-success-text {
    font-size: 16px;
    color: var(--og-text-gray);
    margin: 0;
}

/* Form Section Styles */
.og-cf-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.og-cf-section:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.og-cf-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--og-text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--og-primary-color);
    display: inline-block;
}

.og-cf-section-confirm {
    background-color: #f0f4ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Checkbox Styles */
.og-cf-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.og-cf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--og-text-dark);
}

.og-cf-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--og-primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.og-cf-checkbox-text {
    line-height: 1.5;
}

.og-cf-confirm-label .og-cf-checkbox-text {
    font-size: 13px;
    color: var(--og-text-gray);
}

/* File Input Styles */
.og-cf-file-input {
    padding: 12px 14px;
    cursor: pointer;
}

.og-cf-file-input::file-selector-button {
    padding: 8px 16px;
    margin-right: 12px;
    background: var(--og-primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s ease;
}

.og-cf-file-input::file-selector-button:hover {
    background: var(--og-primary-hover);
}

.og-cf-file-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Buttons Wrapper */
.og-cf-buttons-wrapper {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.og-cf-clear-btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--og-text-dark);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og-cf-clear-btn:hover {
    background: #f5f5f5;
    border-color: #d1d5db;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .og-cf-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .og-cf-wrapper {
        padding-top: 10px;
    }

    .og-cf-checkbox-group {
        flex-direction: column;
        gap: 12px;
    }

    .og-cf-buttons-wrapper {
        flex-direction: column;
    }

    .og-cf-section-title {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .og-cf-input,
    .og-cf-textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .og-cf-submit-btn,
    .og-cf-clear-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

    .certificateBTN {
        width: 100%;
    }
    
    .og-cf-success-title {
        font-size: 20px;
    }

    .og-cf-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .og-cf-section-confirm {
        padding: 15px;
    }
}

/* =====================================================
   CERTIFICATE PAGE STYLES
   ===================================================== */

.og-cert-section {
    padding: 120px 0 80px;
    background-color: #fff;
    min-height: calc(100vh - 200px);
}

.og-cert-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.og-cert-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--og-primary-color);
    margin-bottom: 16px;
}

.og-cert-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--og-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.og-cert-subtitle {
    font-size: 16px;
    color: var(--og-text-gray);
    line-height: 1.7;
    margin: 0;
}

.og-cert-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

/* Certificate Page Responsive */
@media (max-width: 768px) {
    .og-cert-section {
        padding: 100px 0 60px;
    }

    .og-cert-title {
        font-size: 30px;
    }

    .og-cert-wrapper {
        padding: 25px;
    }
}

@media (max-width: 575.98px) {
    .og-cert-section {
        padding: 90px 0 40px;
    }

    .og-cert-title {
        font-size: 26px;
    }

    .og-cert-subtitle {
        font-size: 14px;
    }

    .og-cert-wrapper {
        padding: 20px;
        border-radius: 12px;
    }
}

/* =====================================================
   TRUSTED BY INDUSTRY LEADERS SECTION STYLES
   ===================================================== */

.og-il-section {
    padding: 80px 0px 0px 0px;
    background-color: #fff;
}

.og-il-container {
    background-color: #020618;
    border-radius: 24px;
    padding: 48px;
}

.og-il-header {
    text-align: center;
    margin-bottom: 40px;
}

.og-il-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.og-il-subtitle {
    font-size: 18px;
    color: #D5D9E4;
    line-height: 1.7;
    /* max-width: 700px; */
    margin: 0 auto;
}

/* Stats Row */
.og-il-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.og-il-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.og-il-stat-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.og-il-stat-text {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

/* Video Wrapper */
.og-il-video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    /* background-color: #1a2642; */
    border: 1px solid #ECB084;
    margin: auto;
    width: 90%;
}

.og-il-video-thumbnail {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.og-il-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og-il-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.og-il-play-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.og-il-play-btn svg {
    width: 48px;
    height: 48px;
    margin-left: 4px;
}

.og-il-video-info {
    padding: 25px 30px;
    /* background: linear-gradient(to top, rgba(15, 22, 41, 0.95), rgba(15, 22, 41, 0.8)); */
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.og-il-video-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.og-il-video-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   VIDEO LIGHTBOX STYLES
   ===================================================== */

.og-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.og-lightbox.og-lightbox-active {
    opacity: 1;
    visibility: visible;
}

.og-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.og-lightbox-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1000px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.og-lightbox.og-lightbox-active .og-lightbox-content {
    transform: scale(1);
}

.og-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.og-lightbox-close svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.og-lightbox-video-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.og-lightbox-video-container video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .og-hero-title {
        font-size: 48px;
        padding-top: 0px;
    }

    .og-hero-image-wrapper {
        max-width: 480px;
    }

    .og-qa-grid {
        gap: 30px 40px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .og-hero {
        padding-top: 150px;
        padding-bottom: 75px;
        /* min-height: 70vh; */
    }

    .og-hero-row {
        /* min-height: auto; */
    }

    .og-hero-content {
        padding-right: 15px;
        text-align: center;
        margin-bottom: 50px;
    }

    .og-hero-title {
        font-size: 42px;
        padding-top: 0px;
    }

    .og-hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .og-hero-image-col {
        justify-content: center;
    }

    .og-hero-image-wrapper {
        max-width: 500px;
    }

    /* Mobile Navigation */
    .og-navbar-collapse {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background-color: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .og-navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .og-nav-links {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .og-nav-link {
        padding: 12px 16px !important;
        display: block;
        text-align: center;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .og-nav-link:hover {
        background-color: #f5f5f7;
    }

    .og-nav-right {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
        align-items: center;
    }

    .og-nav-right .og-globe-icon {
        order: 1;
    }

    .og-nav-right .og-contact-link {
        order: 2;
    }

    .og-nav-right .og-btn-get-started {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .og-container-header {
        position: relative;
    }

    .og-carousel-container {
        padding: 20px 25px;
    }

    .og-carousel-item {
        padding: 0 25px;
        min-width: 130px;
    }

    /* QA Section Tablet */
    .og-qa-section {
        padding: 60px 0;
    }

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

    .og-qa-title {
        font-size: 36px;
    }

    .og-qa-header {
        margin-bottom: 40px;
    }

    /* Why Choose Section Tablet */
    .og-wc-section {
        padding: 60px 0;
    }

    .og-wc-title {
        font-size: 36px;
    }


    .og-wc-grid-top {
        gap: 25px;
    }

    .og-wc-grid-bottom {
        gap: 25px;
    }

    .og-wc-card-large .og-wc-card-image {
        height: 200px;
    }

    .og-wc-card-small .og-wc-card-image {
        height: 160px;
    }

    /* Industry Leaders Section Tablet */
    .og-il-section {
        padding: 60px 0px 0px 0px;
    }

    .og-il-container {
        padding: 50px 40px;
    }

    .og-il-title {
        font-size: 32px;
    }

    .og-il-stats {
        gap: 30px;
    }

    .og-il-video-thumbnail {
        height: 350px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) {
    .og-hero {
        /* min-height: auto; */
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .og-hero-title {
        font-size: 36px;
        padding-top: 0px;
    }

    .og-hero-description {
        font-size: 16px;
    }

    .og-hero-image-wrapper {
        max-width: 100%;
    }

    .og-hero-image-wrapper::before {
        top: -10px;
        right: -10px;
    }

    .og-hero-image {
        height: 320px;
    }

    .og-logo-text {
        display: none;
    }

    .og-carousel-container {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .og-carousel-item {
        /* flex: 0 0 calc((100% - 60px) / 4); */
        padding: 15px 20px;
        min-width: 100px;
    }

    .og-carousel-logo {
        height: 32px;
    }

    .og-btn-book-inspection {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 12px 24px;
        font-size: 14px;
        width: 35%;
    }

    .og-hero-image-inner {
        width: 90%;
    }

    /* Why Choose Section 768px */
    .og-wc-grid-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .og-wc-grid-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .og-wc-card-large .og-wc-card-image,
    .og-wc-card-small .og-wc-card-image {
        height: 220px;
    }

    .og-wc-header {
        margin-bottom: 40px;
    }

    /* Industry Leaders Section 768px */
    .og-il-container {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .og-il-stats {
        gap: 20px 30px;
        justify-content: flex-start;
    }

    .og-il-stat-item {
        flex: 0 0 calc(50% - 15px);
    }

    .og-il-video-thumbnail {
        height: 300px;
    }

    .og-il-video-info {
        padding: 20px 25px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .og-hero-title {
        font-size: 32px;
        padding-top: 0px;
    }

    .og-hero-description {
        font-size: 15px;
    }

    .og-btn-book-inspection {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 24px;
        font-size: 14px;
        width: 61%;
    }

    .og-hero-image-wrapper {
        max-width: 100%;
    }

    .og-hero-image-wrapper::before {
        top: -8px;
        right: -8px;
        border-radius: 16px;
        width: 95%;
        display: none;

    }

    .og-hero-image-inner {
        border-radius: 16px;
        transform: none;
        width: 100%;
        height: 300px;
    }

    .og-hero-image {
        height: 280px;
    }

    .og-trusted-by-text {
        font-size: 12px;
    }

    .og-carousel-item {
        /* flex: 0 0 calc((100% - 30px) / 2); */
        padding: 12px 15px;
        min-width: 80px;
    }

    .og-carousel-logo {
        height: 28px;
    }

    /* QA Section Mobile */
    .og-qa-section {
        padding: 50px 0;
    }

    .og-qa-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .og-qa-title {
        font-size: 28px;
    }

    .og-qa-subtitle {
        font-size: 15px;
    }

    .og-qa-header {
        margin-bottom: 30px;
        text-align: left;
    }

    .og-qa-card {
        gap: 14px;
    }

    .og-qa-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .og-qa-icon {
        width: 18px;
        height: 18px;
    }

    /* Why Choose Section Mobile */
    .og-wc-section {
        padding: 50px 0;
    }

    .og-wc-title {
        font-size: 28px;
    }


    .og-wc-header {
        margin-bottom: 30px;
    }

    .og-wc-card-large .og-wc-card-image,
    .og-wc-card-small .og-wc-card-image {
        height: 200px;
    }

    .og-wc-card-title {
        font-size: 16px;
    }

    .og-wc-card-text {
        font-size: 13px;
    }

    /* Industry Leaders Section Mobile */
    .og-il-section {
        padding: 40px 0px 20px 0px;
    }

    .og-il-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .og-il-title {
        font-size: 26px;
    }

    .og-il-subtitle {
        font-size: 14px;
    }

    .og-il-stats {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .og-il-stat-item {
        flex: none;
    }

    .og-il-stat-text {
        font-size: 13px;
    }

    .og-il-video-thumbnail {
        height: 220px;
    }

    .og-il-video-info {
        padding: 15px 20px;
        margin-top: 0px;
    }

    .og-il-video-title {
        font-size: 16px;
    }

    .og-il-video-text {
        font-size: 13px;
    }

    .og-il-play-btn {
        width: 56px;
        height: 56px;
    }

    .og-il-play-btn svg {
        width: 22px;
        height: 22px;
    }

    .og-il-video-wrapper {
        width: 100%;
    }
}

.video-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


strong {
    color: black !important;
    /* font-weight: bold; */
}

/* =====================================================
   FOOTER CTA SECTION STYLES
   ===================================================== */

.og-ft-cta-section {
    padding: 0px 0px 56px;
    /* background-color: #fff; */
}

.og-ft-cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FDFCFE;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px 40px;
    box-shadow:
  0 1px 3px 0 rgba(0,0,0,0.1),
  0 1px 2px -1px rgba(0,0,0,0.1);
}

.og-ft-cta-content {
    max-width: 650px;
}

.og-ft-cta-label {
    font-size: 12px;
    font-weight: 600;
    color: black;
    letter-spacing: 4.2px;
    margin-bottom: 16px;
    display: block;
}

.og-ft-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--og-text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.og-ft-cta-text {
    font-size: 16px;
    color: var(--og-text-gray);
    line-height: 1.7;
    margin: 0;
}

.og-ft-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--og-primary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.og-ft-cta-btn:hover {
    background: var(--og-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* =====================================================
   FOOTER MAIN SECTION STYLES
   ===================================================== */

.og-ft-footer {
    background-color: #f5f5f7;
    padding: 60px 0 60px;
}

.og-ft-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.og-ft-col-brand {
    padding-right: 20px;
}

.og-ft-logo {
    margin-bottom: 20px;
}

.og-ft-logo img {
    height: 45px;
    width: auto;
}

.og-ft-brand-desc {
    font-size: 14px;
    color: var(--og-text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.og-ft-tagline {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

.og-ft-tagline-highlight {
    /* background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    color: black;
}

.og-ft-social-label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

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

.og-ft-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.og-ft-social-link:hover {
    border-color: #030213;
    /* color: var(--og-primary-color); */
}

.og-ft-col-title {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.og-ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.og-ft-links li {
    margin-bottom: 12px;
}

.og-ft-links a {
    font-size: 14px;
    color: var(--og-text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.og-ft-links a:hover {
    color: black
}

.og-ft-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.og-ft-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--og-text-gray);
    padding: 8px;
     border: 1px solid transparent;
}

.og-ft-contact-list li:hover {
    background-color: white;
    border-radius: 15px;
    padding: 8px;
    border: 1px solid #030213;

}

.og-ft-contact-icon {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    color: #030213;
    margin-top: 2px;
}

.og-ft-contact-list a {
    color: #717182;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.og-ft-contact-list a:hover {
    opacity: 0.8;
}

/* Footer Bottom */
.og-ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #e5e5e5;
}

.og-ft-copyright {
    font-size: 14px;
    color: var(--og-text-gray);
    margin: 0;
}

.og-ft-legal {
    display: flex;
    gap: 24px;
}

.og-ft-legal a {
    font-size: 14px;
    color: var(--og-text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.og-ft-legal a:hover {
    color: black
}

/* =====================================================
   VIDEO POPUP STYLES
   ===================================================== */

.og-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.og-popup.og-popup-active {
    opacity: 1;
    visibility: visible;
}

.og-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.og-popup-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    background-color: #1a1a2e;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.og-popup.og-popup-active .og-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.og-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.og-popup-close:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.og-popup-close svg {
    width: 18px;
    height: 18px;
    color: #333;
}

.og-popup-video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.og-popup-video-container video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: contain;
}



/* Additional CSS  */
/* Error State */
.og-cf-error {
    border: 1px solid #ef4444 !important;
    background-color: #fef2f2;
}

/* Error Message */
.og-cf-error-text,
.og-cf-checkbox-error {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.4;
}

.og-cf-show {
    display: block;
}


.og-cf-uploaded-files {
    margin-top: 15px;
}

.og-cf-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fafafa;
    font-size: 14px;
}

.og-cf-remove-file {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}

.og-cf-remove-file:hover {
    opacity: 0.9;
}




/* Popup Responsive */
@media (max-width: 768px) {
    .og-popup-content {
        width: 95%;
        padding: 15px;
        border-radius: 16px;
    }

    .og-popup-close {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
    }

    .og-popup-close svg {
        width: 16px;
        height: 16px;
    }

    .og-popup-video-container {
        border-radius: 10px;
    }
}

@media (max-width: 575.98px) {
    .og-popup-content {
        padding: 10px;
        border-radius: 12px;
    }

    .og-popup-video-container video {
        max-height: 50vh;
    }
}

/* Footer Responsive - Tablet */
@media (max-width: 991.98px) {
    .og-ft-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .og-ft-cta-content {
        max-width: 100%;
    }

    .og-ft-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .og-ft-col-brand {
        padding-right: 0;
    }
}

/* Footer Responsive - 768px */
@media (max-width: 768px) {
    .og-ft-cta-section {
        padding: 60px 0 40px;
    }

    .og-ft-cta-title {
        font-size: 26px;
    }

    .og-ft-cta-card {
        padding: 30px 25px;
    }

    .og-ft-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer Responsive - Mobile */
@media (max-width: 575.98px) {
    .og-ft-cta-section {
        padding: 40px 0 50px;
    }

    .og-ft-cta-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .og-ft-cta-label {
        font-size: 11px;
    }

    .og-ft-cta-title {
        font-size: 22px;
    }

    .og-ft-cta-text {
        font-size: 14px;
    }

    .og-ft-footer {
        padding: 40px 0 64px;
    }

    .og-ft-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .og-ft-col-brand {
        text-align: center;
    }

    .og-ft-logo {
        /* display: flex;
        justify-content: flex-start; */
                display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }

    .og-ft-social {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .og-ft-social-links {
        justify-content: center;
    }

    .og-ft-tagline {
        text-align: left;
    }

    .og-ft-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0px 0px 10px;
        align-items: flex-start;
    }

    .og-ft-legal {
        gap: 16px;
    }


.og-ft-brand-desc
{
    text-align: left;
}


}
