/* ===== STANDARD STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body, html {
    height: 100%;
    overflow-x: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    transition: 0.5s;
    z-index: 1000;
    color: #999;
}

header:hover {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 50px;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

header:hover .logo,
header:hover nav ul li a {
    color: #333;
}

header:hover nav ul li a:hover {
    color: #063438;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header-sub {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    background: #fff;
}

.header-sub-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-image {
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
    top: -40px;
    height: 60px;
}

.logo-white {
    opacity: 1;
}

.logo-black {
    opacity: 0;
}

.logo-black1 {
    opacity: 1;
}

    
    .service_extra {
    display:block
        }
    
    .service_extra_1 {
    display:none
        }

header:hover .logo-white {
    opacity: 0;
}

header:hover .logo-black {
    opacity: 1;
}

header {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    position: relative;
    display: inline-block;
    max-width: 300px;
}

.scrolled .logo-white {
    opacity: 0;
}

.scrolled .logo-black {
    opacity: 1;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 0.9rem;
    transition: all 0.5s ease;
    padding: 12px 25px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

nav ul li a:hover {
    color: #063438;
}

nav-sub ul {
    display: flex;
    list-style: none;
}

nav-sub ul li {
    margin-left: 15px;
}

nav-sub ul li a {
    color: #000;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 0.9rem;
    transition: all 0.5s ease;
    padding: 12px 25px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

nav-sub ul li a:hover {
    color: #063438;
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn-sub {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding-top: 40px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-logo {
    max-width: 15%;
    margin: 20px 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    margin-top: 20px;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
}

.mobile-menu-btn .fa-times,
.mobile-menu-btn-sub .fa-times {
    display: none;
}

.mobile-menu.active ~ header .logo-container,
.mobile-menu.active ~ header-sub .logo-container {
    display: none;
}

.mobile-menu.active ~ header .mobile-menu-btn .fa-bars,
.mobile-menu.active ~ header-sub .mobile-menu-btn-sub .fa-bars {
    display: none;
}

.mobile-menu.active ~ header .mobile-menu-btn .fa-times,
.mobile-menu.active ~ header-sub .mobile-menu-btn-sub .fa-times {
    display: block;
}

.content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 50px;
    color: white;
    max-width: 800px;
}

.content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 16px 35px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-family: "Cormorant", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.5s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #fff;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover:before {
    left: 0;
    right: 0;
}

.btn:hover {
    color: #000;
    background: rgba(255, 255, 255, 0);
}

footer {
    background-color: #063438;
    color: white;
    padding: 0 20px 30px 0;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    display: none;
}

.intro-section {
    text-align: center;
    padding: 150px 50px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section-second {
    text-align: center;
    padding: 40px 50px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h1 {
    font-family: "Cormorant", serif;
    font-size: 2.8rem;
    color: #063438;
    margin-bottom: 25px;
    font-weight: 400;
}

.intro-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.intro-section-second h1 {
    font-family: "Cormorant", serif;
    font-size: 2.8rem;
    color: #063438;
    margin-bottom: 25px;
    font-weight: 400;
}

.intro-section-second p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}



.main-content {
    display: flex;
    justify-content: center;
    padding: 0 20px 100px;
}

.content-container {
    display: flex;
    width: 60%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.image-section-about {
    flex: 0 0 50%;
    background: url('../img/image_about_us.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}

.image-section-services {
    flex: 0 0 50%;
    background: url('../img/image_our_services.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}


.image-section-contact {
    flex: 0 0 50%;
    background: url('../img/image_contact_us.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}

.image-section-london {
    flex: 0 0 50%;
    background: url('../img/image_london.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}

.image-section-dubai {
    flex: 0 0 50%;
    background: url('../img/image_dubai.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}

.text-section {
    flex: 0 0 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f0f3f3;
    box-sizing: border-box;
}

.text-section h2 {
    font-family: "Cormorant", serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #063438;
}

.text-section h3 {
    font-family: "Cormorant", serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #063438;
}

.text-section h3 a {
    font-family: "Cormorant", serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #063438;
}

.text-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.solutions-container {
    display: flex;
    width: 60%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 100px;
}

.solutions-image {
    flex: 0 0 25%;
    min-height: 300px;
    padding: 20px;
    box-sizing: border-box;
}

.solutions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.solutions-text {
    flex: 0 0 75%;
    padding: 40px;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

.solutions-contact {
    flex: 0 0 75%;
    padding: 40px;
    background: #ccc;
    color: #333;
    box-sizing: border-box;
}

.solutions-text h2 {
    font-family: "Cormorant", serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #063438;
}

.solutions-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.solution-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.solution-number {
    font-family: "Cormorant", serif;
    font-size: 3.5rem;
    color: #063438;
    min-width: 60px;
    line-height: 1;
    margin-right: 20px;
    margin-top: 0px;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    font-family: "Cormorant", serif;
    font-size: 2.2rem;
    color: #063438;
    margin: 12px 0 12px 0;
}

.solution-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.solutions-text > p:last-child {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 50px;
    color: 555;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #063438;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #063438;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.checkbox-group a {
    color: #063438;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.g-recaptcha {
    margin-bottom: 25px;
    transform: scale(0.95);
    transform-origin: 0 0;
}

.submit-btn {
    background: #063438;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	margin-bottom:20px
}

.submit-btn:hover {
    background: #000000;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}

.phone {
     font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;    
    color:#000
}

/* ===== 1024px MEDIA QUERY ===== */
@media (max-width: 1024px) {
    nav ul, nav-sub ul {
        display: none !important;
    }
    
    .mobile-menu-btn, .mobile-menu-btn-sub {
        display: block !important;
    }
    
    header, header-sub {
        padding: 15px 30px !important;
    }
    
    .logo-image {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        max-height: 50px;
        height: auto;
    }
    
    header:hover {
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 15px 30px !important;
    }
    
    header .logo-white {
        opacity: 1 !important;
    }
    
    header .logo-black {
        opacity: 0 !important;
    }
    
    header-sub .logo-container .logo-black1,
    .logo-black1 {
        display: block;
        opacity: 1;
        position: relative;
        top: -20px !important;
        height: auto;
    }
    
    nav ul li a {
        color: #fff !important;
    }
    
    .content {
        padding: 0 30px;
    }
    
    .content h1 {
        font-size: 2.2rem;
    }
    
    .intro-section {
        padding: 120px 30px 60px;
    }
    
    
    .intro-section h1 {
        font-size: 2.2rem;
    }
    
    .intro-section-second {
        padding: 0px 30px 60px;
    }
    
    .intro-section-second  h1 {
        font-size: 2.2rem;
    }
    
    .content-container, .solutions-container {
        width: 90%;
    }
    
    header-sub {
        padding: 15px 30px !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    header-sub:hover {
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 15px 30px !important;
        backdrop-filter: none !important;
    }
    
    header-sub .logo-black1 {
        opacity: 1 !important;
    }
    
    .solution-number {
        font-size: 3rem;
        min-width: 50px;
    }
    
    .solution-content h3 {
        font-size: 1.4rem;
    }
    
    /* Ensure close button is visible in mobile menu */
    .close-menu {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10001;
    }
}

/* ===== 768px MEDIA QUERY ===== */
@media (max-width: 768px) {
    header {
        padding: 15px 20px !important;
    }
    
    header-sub {
        padding: 25px 20px 0px 20px !important;
        height: 80px;
    }
    
    .logo {
        margin-top: -15px;
    }
    
    .logo-white {
        display: block;
        margin-top: 20px;
    }
    
    header {
        padding: 0px 20px;
    }
    
    .logo {
        margin-top: -20px;
    }
    
    header-sub .logo-container .logo-black1,
    .logo-black1 {
        display: block;
        opacity: 1;
        position: relative;
        top: -12px !important;
        height: auto;
    }
    
    nav-sub ul {
        display: none;
        list-style: none;
    }
    
    header:hover {
        background: transparent;
        padding: 30px 50px;
        backdrop-filter: none;
        opacity: 0;
    }
    
    .content {
        padding: 0 20px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-logo {
        max-width: 25%;
    }
    
    .image-section-about {
        max-height: 400px;
        min-height: 300px;
        border-top-left-radius: 12px; 
        border-top-right-radius: 12px; 
    }
    
    .image-section-services {
        max-height: 400px;
        min-height: 300px;
        border-bottom-left-radius: 12px; 
        border-bottom-right-radius: 12px; 
    }
    
    .image-section-about {
        max-height: 400px;
        min-height: 300px;
        border-top-left-radius: 12px; 
        border-top-right-radius: 12px; 
    }
    
    .text-section {
        padding-bottom: 50px;
        border-bottom-left-radius: 12px; 
        border-bottom-right-radius: 12px; 
    }
    
    .text-section-services {
        border-top-left-radius: 12px; 
        border-top-right-radius: 12px; 
        border-bottom-left-radius: 0px; 
        border-bottom-right-radius: 0px; 
    }
    
    .text-section-contact {
        border-top-left-radius: 12px; 
        border-top-right-radius: 12px; 
        border-bottom-left-radius: 0px; 
        border-bottom-right-radius: 0px; 
    }
    
    .image-section-location {
        border-top-left-radius: 12px; 
        border-top-right-radius: 12px; 
        border-bottom-left-radius: 0px; 
        border-bottom-right-radius: 0px; 
    }
    
    .image-section-contact {
        border-top-left-radius: 0px; 
        border-top-right-radius: 0px; 
        border-bottom-left-radius: 12px; 
        border-bottom-right-radius: 12px; 
        margin-bottom: 80px
    }
    
    header-sub:hover {
        padding: 25px 20px;
        background: #fff;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .logo {
        display: block;
        margin-top: -15px;
    }
    
    .intro-section {
        padding: 80px 20px 40px;
    }
    
    .intro-section h1 {
        font-size: 2rem;
    }
    
    .intro-section p {
        font-size: 0.9rem;
    }
    
    .intro-section-second {
        padding: 0px 20px 40px;
    }
    
    .intro-section-second h1 {
        font-size: 2rem;
    }
    
    .intro-section-second p {
        font-size: 0.9rem;
    }
    
    
    .text-section p {
        font-size: 0.9rem;
    }
    
    .content-container, .solutions-container {
        width: 100%;
        flex-direction: column;
        border-radius: 0;
        margin-bottom: 40px;
        box-shadow: none;
        display: flex;    
        background: white;
        border-radius: 12px;
        overflow: visible;            
    }
    
    .image-section {
        min-height: 250px;
        flex: 0 0 auto;
        width: 100%;
    }
    
    .text-section {
        padding: 30px;
        flex: 0 0 auto;
        width: 100%;
    }
    
    .text-section h3 {
        font-size: 1.2rem;
    }
    
    .text-section h3 a {
        font-size: 1.2rem;
    }
    
    .solutions-text p {
        font-size: 0.9rem;
    }
    
    .solution-content p {
        font-size: 0.9rem;
    }
    
    .solutions-text h2 {
        font-size: 1.8rem;
    }
    
    .solution-number {
        font-size: 2.5rem;
        min-width: 40px;
        margin-right: 15px;
    }
    
    .solution-content h3 {
        font-size: 1.3rem;
    }
    
    footer {
        padding: 0 20px 25px 20px;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;    
    }
    
    .footer-logo {
        max-width: 15%;
        display: block;
        margin: 0px auto 20px;
    }

    .logo-container {
        position: relative;
        width: auto;
    }
    
    .logo-image {
        max-width: 70%;
        position: relative;
        top: 10px;
        left: 0;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
        padding: 20px 0 0 0;
    }
    
    .mobile-menu-btn-sub {
        position: relative;
        top: -20px;
        right: 0;
    }
    
    /* Ensure close button is visible in mobile menu */
    .close-menu {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10001;
    }
    
    
.solutions-image {
    flex: 0 0 25%;
    min-height: 170px;
    padding: 20px;
    box-sizing: border-box;
}
    
    .service_extra {
    display:none
        }
    
    .service_extra_1 {
    display:block;
        margin-bottom:-100px
        }
    
}