@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Engagement&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oleo+Script:wght@400;700&family=Questrial&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shadows+Into+Light&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
:root {
    --font-roboto: "Roboto", sans-serif;
    --font-notoSans: "Noto Sans", sans-serif;
    --font-Questrial: "Questrial", sans-serif;
    --font-oleoScript: "Oleo Script", system-ui;
    --font-shadowsIntoLight: "Shadows Into Light", cursive;
    --font-engagement: "Engagement", cursive;
    --font-cookie: "Cookie", cursive;
    --font-lobster: "Lobster",sans-serif
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: var(--font-roboto);
}

@font-face {
    font-family: 'Ravishing'; /* Name your font */
    src: url('../fonts/Ravishing Free.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}

/* #region Start Hero Section ===================================================== */

.mobile-menu-item {
    transition: all 0.3s ease;
}

.desktop-nav-item {
    position: relative;
    transition: color 0.3s ease;
}

    .desktop-nav-item::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #dc2626;
        transition: width 0.3s ease;
    }

    .desktop-nav-item:hover::after {
        width: 100%;
    }

.mobile-menu {
    transition: transform 0.3s ease-in-out;
}

    .mobile-menu.hidden {
        transform: translateX(-100%);
    }

.skyline-bg {
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
}

/* #endregion End Hero Section ===================================================== */

/* #region Start Our Service Section ===================================================== */
.handwritten-title {
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 2px;
}

/* Exact Dubai Skyline Background matching the image */
.dubai-skyline-bg {
    background-image: url('/assets/images/mobile_menu_bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.service-item {
    position: relative;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    border: 3px solid #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: white;
    transition: all 0.3s ease;
}

.service-item:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.learn-more-btn {
    border: 2px solid #dc2626;
    color: #dc2626;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-block;
}

    .learn-more-btn:hover {
        background: #dc2626;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    }

/* Mobile responsive background */
@media (max-width: 768px) {
    .dubai-skyline-bg {
        background-image: url('/assets/images/mobile_menu_bg.jpg');
        background-position: center right;
        object-fit: cover;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .service-item:hover .icon-wrapper {
        font-size: 14px;
    }

    .learn-more-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* #endregion End Our Service Section ===================================================== */


/* #region Start Accorading Section ===================================================== */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion.open .accordion-content {
    max-height: 500px;
}

.chart-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
}

@media (max-width: 768px) {
    .chart-container {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .chart-container {
        height: 250px;
    }
}

/* #endregion End Accorading Section ===================================================== */

/* #region Start Translation Info Section ===================================================== */
.bg-accent-gradient {
    background: linear-gradient(135deg, #c73948 0%, #d84f5f 50%, #c73948 100%);
    position: relative;
}

    .bg-accent-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-200 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-300 {
    animation-delay: 0.3s;
    opacity: 0;
}

@media (max-width: 640px) {
    .responsive-heading {
        font-size: 1.625rem;
        line-height: 2.125rem;
        letter-spacing: -0.01em;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .responsive-heading {
        font-size: 2rem;
        line-height: 2.5rem;
        letter-spacing: -0.015em;
    }
}

@media (min-width: 1024px) {
    .responsive-heading {
        font-size: 2.5rem;
        line-height: 3rem;
        letter-spacing: -0.02em;
    }
}

.highlight-text {
    position: relative;
    display: inline-block;
}

    .highlight-text::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, 0.4);
    }

/* #endregion End Translation Info Section ===================================================== */

/* #region Start Translation Section ===================================================== */
.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 2rem;
        bottom: -1.5rem;
        width: 2px;
        background: linear-gradient(180deg, #c73948 0%, transparent 100%);
    }

    .timeline-item:last-child::before {
        display: none;
    }

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #c73948 0%, #d84f5f 100%);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(199, 57, 72, 0.3);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 6px 16px rgba(199, 57, 72, 0.5);
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

    .stat-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 1rem;
        padding: 2px;
        background: linear-gradient(135deg, #c73948, #d84f5f);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stat-card:hover::before {
        opacity: 1;
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(199, 57, 72, 0.15);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-200 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-300 {
    animation-delay: 0.3s;
    opacity: 0;
}

.delay-400 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-500 {
    animation-delay: 0.5s;
    opacity: 0;
}

.decorated-heading {
    position: relative;
    display: inline-block;
}

    .decorated-heading::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #c73948, transparent);
    }

/* #endregion End Translation Section ===================================================== */

/* #region Start Help Section ===================================================== */
.bg-accent-gradient {
    background: #c73948;
    position: relative;
    overflow: hidden;
}

    .bg-accent-gradient::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: pulse 8s ease-in-out infinite;
    }

@keyframes pulse {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-200 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-300 {
    animation-delay: 0.3s;
    opacity: 0;
}

.btn-hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-hover-lift:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .btn-hover-lift:active {
        transform: translateY(-1px);
    }


.gradient-border {
    position: relative;
    background: white;
    border-radius: 1rem;
}

    .gradient-border::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 1rem;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

/* #endregion End Help Section ===================================================== */

/* #region Start Contact Section ===================================================== */
.timeline-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ea6666 0%, #a24b4b 100%);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

.timeline-line {
    position: absolute;
    left: 5.5px;
    top: 24px;
    bottom: -16px;
    width: 1px;
    background: linear-gradient(180deg, #ea6666 0%, #a24b4b 100%);
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #ea6666 0%, #a24b4b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s ease;
}

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.btn-gradient {
    background: linear-gradient(135deg, #ea6666 0%, #a24b4b 100%);
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

/* #endregion End Contact Section ===================================================== */

/* #region Start Swiper Slider Section ===================================================== */
.swiper {
    width: 100%;
    height: 80vh;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
        border-color: rgba(255, 255, 255, 0.8);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 24px;
        font-weight: bold;
        color: white;
    }

/* Custom Pagination */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 50px;
    border-radius: 8px;
    background: white;
}

/* Smooth fade effect */
.swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active {
    opacity: 1;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.swiper-slide-active img {
    animation: fadeIn 1s ease-out;
}

/* Progress bar for autoplay */
.swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.3);
    height: 4px;
}

.swiper-pagination-progressbar-fill {
    background: white;
}

@media (max-width: 768px) {
    .swiper {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .swiper {
        height: 40vh;
    }
}

/* #endregion End Swiper Slider Section ===================================================== */

/* #region Start Service Section ===================================================== */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.read-more-btn {
    color: #cd2122;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .read-more-btn:hover {
        color: #a01819;
    }

/* #endregion End Service Section ===================================================== */


/* #region Start Blog Section ===================================================== */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
    }

.blog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gradient-overlay {
    background: linear-gradient(135deg, rgba(205, 33, 33, 0.499) 0%, rgba(66, 66, 66, 0.477) 100%);
}

.bg-hero {
    background-image: url('/assets/images/bg-image-blog-header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-title-link {
    transition: color 0.3s ease;
}

    .blog-title-link:hover {
        color: #cd2122;
    }

.tag-link {
    transition: all 0.3s ease;
}

.tag-link {
    margin-left: -8px;
}

/* .tag-link:hover {
    color: #cd2122;
    background-color: rgba(205, 33, 34, 0.1);
} */

/* #endregion End Blog Section ===================================================== */


/* #region Start Contact Section ===================================================== */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

    .form-input:focus {
        outline: none;
        border-bottom-color: #cd2122;
        box-shadow: none;
    }

    .form-input::placeholder {
        color: #9ca3af;
    }

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

input,
textarea {
    outline: none;
}

.btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #cd2122;
    color: white;
}

    .btn-primary:hover {
        background-color: #a01819;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(205, 33, 34, 0.3);
    }

.btn-reset {
    background-color: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

    .btn-reset:hover {
        background-color: #f9fafb;
        border-color: #9ca3af;
    }

.file-upload-wrapper {
    margin-bottom: 1.5rem;
}

.file-upload-label {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.file-input {
    font-size: 0.9rem;
    color: #6b7280;
    padding: 0.5rem 0;
}

.contact-info h6 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-info address {
    line-height: 1.8;
}

.contact-info p {
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.contact-info dl {
    margin-bottom: 0.5rem;
}

.contact-info dt {
    display: inline;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-info dd {
    display: inline;
    margin-left: 0.5rem;
}

.contact-info a {
    color: #cd2122;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-info a:hover {
        color: #a01819;
    }

.contact-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

    .contact-section:last-child {
        border-bottom: none;
    }

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

    .error-message.show {
        display: block;
    }

.form-input.error {
    border-bottom-color: #dc2626;
}

/* #endregion End Contact Section ===================================================== */


/* #region Start Footer Section ===================================================== */
.footer-link {
    position: relative;
    transition: all 0.3s ease;
}

    .footer-link::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #dc2626;
        transition: width 0.3s ease;
    }

    .footer-link:hover::before {
        width: 100%;
    }

    .footer-link:hover {
        color: #dc2626;
        transform: translateX(5px);
    }

.social-icon {
    transition: all 0.3s ease;
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        color: #dc2626;
    }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 12px;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }

@keyframes pulse {

    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Alternative method - completely remove from layout */
.grecaptcha-badge {
    display: none !important;
}
/* #endregion End Footer Section ===================================================== */


/*Colors:*/
.bg-grey {
    background: #e2e0e0 !important;
}

.bg-light-grey {
    background: #f5f5f5 !important;
}



.bg-primary {
    background: #cd2122 !important;
}



.text-primary {
    color: #cd2122 !important;
}


/* Optional: Adjust for smaller mobile screens */
@media (max-width: 640px) {
    .video-section {
        /* Set the background image and adjust its positioning */
        background-image: url('images/video_background_bg.jpg');
        background-size: 170%; /* Ensure the background image covers the area */
        background-position: center -196px; /* Adjust the positioning */
        background-repeat: no-repeat;
        position: relative;
    }
}

.bg-hero-page {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 892px;
}

@media (max-width: 640px) {
    .bg-hero-page {
        height: calc(100vw * 0.55); /* Adjust ratio (0.55 = 55% of width) */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Desktop / Larger Screens */
@media (min-width: 1024px) {
    .bg-hero-page {
        height: calc(100vh - 160px);
        /* adjust -160px = your header + topbar height */
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .bg-hero-page {
        height: calc(100vw * 0.45);
        /* 0.45 = aspect ratio based on your hero image */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}


.hidden {
    display: none;
}


#CHART-homepage {
    width: 100%;
    height: auto;
}


.font-ravishing{
    font-family: 'Ravishing', sans-serif !important
}

.font-lobster{
    font-family: var(--font-lobster) !important;
}

.mobile-menu-img {
    margin-top: -118px;
    z-index: -9999;
    position: relative;
}




.text-dark-grey {
    color: #45474b !important;
}



@media (max-width: 380px) {
    .video-bg {
        background-size: 220%;
    }
}
