@font-face {
    font-family: 'Sharp Sans';
    src: url('./fonts/sharp-sans/SharpSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Sharp Sans', sans-serif;

    background-color: black;
}
.heroimage {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;  
    object-fit: cover;
    z-index: -1;   
   
}
.hero-section {
   height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;    flex-direction: column;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-height: none;
    overflow: visible;
    padding: 20px; transition: all 0.4s ease;
}

#heroContent {
    transition: all 0.4s ease;
    will-change: transform, opacity;
}

#logoSection {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.2s ease;
}

#logoSection.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hero-content::-webkit-scrollbar {
    width: 6px;
}

.hero-content::-webkit-scrollbar-track {
    background: transparent;
}

.hero-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0);
    border-radius: 10px;
}

.hero-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0);
}

.hero-title span {

    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.hero-title .thin {
    font-size: 70px
}

.hero-title .big {
    font-size: 13rem;
 
   
    
}

.hero-title span:nth-child(1) {
    animation-delay: 0.2s, 1s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.4s, 1s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.6s, 1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    margin-top: 15px;
    font-size: 1.8rem;
    text-transform: capitalize;
    color: #ccc;
}

.hero-btn {
    margin-top: 25px;
    padding: 6px 29px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #7f5af0, #2cb67d);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1.4rem;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.5);
}

.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: rgba(20, 25, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    color: #fff;
    overflow: hidden;
}

.modal-header-modern {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.modal-header-modern h4 {
    margin: 0;
    font-weight: 700;
}

.modal-body {
    padding: 30px;
}

.input-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    color: #fff;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.3s;
}

.input-modern:focus {
    outline: none;
    border-color: #7f5af0;
    box-shadow: 0 0 10px rgba(127, 90, 240, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #ff7a18, #ff3d77);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(255, 61, 119, 0.25);
}

.submit-btn:focus,
.submit-btn:active {
    outline: none;
    box-shadow: 0 6px 18px rgba(255, 61, 119, 0.25);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 61, 119, 0.35);
}

.submit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(255, 61, 119, 0.2);
}

.btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.modal.fade .modal-dialog {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-backdrop.fade {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-content {
    animation: popupGlow 0.5s ease;
}

@keyframes popupGlow {
    0% {
        transform: scale(0.9);
        opacity: 0;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    }
}

@media (min-width: 768px) and (max-width: 1124px) {
     .hero-title .big {
        font-size: 10rem;line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .hero-title .thin {
        font-size: 3rem;
    }

    .hero-title .big {
        font-size: 6rem;
        line-height: 1.5;
        font-weight: bold !important;
    }

    .hero-content {

        max-height: 38vh;

    }

    .social-fab {

    bottom: 130px !important;

}

    .hero-subtitle {
        font-size: .8rem;
    }

    .hero-btn {
        font-size: .8rem;
    }

}

.hero-regions {
    position: fixed;
    bottom: 25px;

    display: flex;
    gap: 30px;
    z-index: 2;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
}

.hero-regions span {
    position: relative;
    padding: 0 10px;
}

.hero-regions span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-regions span:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .hero-regions {
        gap: 15px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.hero-contact {
    position: fixed;
    top: 25px;
    right: 30px;
    display: flex;
    gap: 20px;
    z-index: 2;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}
.contact-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    letter-spacing: 3px;
}

.contact-list {
    display: flex;
    gap: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-toggle {
        display: block;
    }

    .contact-list {
        position: absolute;
        top: 30px;
        right: 0;
        background: rgba(0,0,0,0.8);
        padding: 10px 15px;
        border-radius: 10px;
        flex-direction: column;
        gap: 8px;
        display: none;
        width: max-content;
    }

    .contact-list.show {
        display: flex;
    }
}
.hero-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    
}
.social-fab {
        position: fixed;
    bottom: 45px;
    right: 35px;
    z-index: 999;
}

.fab-btn {
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7f5af0, #2cb67d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.fab-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.3s ease;
    text-decoration: none;
}

.fab-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.fab-icons.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
    align-items: center;
}
.hero-contact span {
    position: relative;
    padding: 0 10px;
}

.hero-contact span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-contact span:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .hero-contact {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .hero-contact span::after {
        display: none;
    }
}

.toast-container {
    z-index: 9999;
}

#successToast {
    background: rgba(20, 25, 45, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    min-width: 280px;
    position: relative;
}

#successToast .toast-body {
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
    padding: 14px 16px;
}

#successToast::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: linear-gradient(180deg, #2cb67d, #7f5af0);
}

#successToast .btn-close {
    opacity: 0.8;
    filter: invert(1);
}

#successToast .btn-close:hover {
    opacity: 1;
}

.toast.show {
    animation: toastSlideIn 0.4s ease;
}

@keyframes toastSlideIn {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.spinner-border-sm {
    vertical-align: middle;
}
.hero-logos-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 999;
}

.hero-logos-wrapper.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.hero-logos-wrapper.center {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%) scale(1.1);
}
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 3vw, 20px);
    padding: 15px;
    flex-wrap: wrap;
}

.hero-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(110px, 25vw, 200px);
    height: clamp(60px, 12vw, 100px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.logo {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    opacity: 0.85;
    transition: 0.3s ease;
}

.logo-ixb { max-height: 55%; }
.logo-sitedecode { max-height: 35%; }
.logo-emirates { max-height:100%; }
.hero-logos a:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.hero-logos a:hover img {
    opacity: 1;
}
.brand-text {
    position: absolute;
    bottom: 55px;
    font-size: 1rem;
    color: rgb(255, 255, 255);
    z-index: 2;
   margin: 0;
}
@media (min-width: 361px) and (max-width: 480px) {

    .hero-title .big {
        font-size:5rem;
        line-height: 1.2;
    }
    .hero-title .thin {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 12px;
    }

    .hero-btn {
        padding: 7px 20px;
        font-size: 15px;
    }

    .hero-regions {
        gap: 12px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-contact {
        font-size: 0.75rem;
        top: 12px;
        right: 12px;
        gap: 8px;
    }

    .modal-body {
        padding: 22px 18px;
    }

    .input-modern {
        padding: 11px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 11px;
        font-size: 15px;
    }
}
.wechat-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wechat-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    width: 260px;
}

.wechat-box img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.wechat-box p {
    margin-top: 10px;
    font-size: 14px;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 18px;
}
