/* ==================== Root Variables ==================== */
:root {
    /* Primary Colors */
    --primary-color: #0f3460;
    --primary-dark: #0a2a4a;
    --primary-light: #1a4a7a;
    --accent-color: #f9b208;
    --accent-dark: #e67e22;
    
    /* Secondary Colors */
    --secondary: #2c3e50;
    --secondary-dark: #1a2a3a;
    --tertiary: #8c1c13;
    
    /* Text Colors */
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --white: #ffffff;
    
    /* Gray Scale */
    --gray-50: #f8f9fa;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --slate-50: #f8fafc;
    /* Background Colors */
    --light-gray: #f8f9fa;
    --border-color: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-custom-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Additional Colors */
    --primary: #0f3460;
    --accent: #f9b208;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

/* ==================== Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li {
    list-style: none !important;
}
a {
    text-decoration: none !important;
}
img, video {
    max-width: 100%;
    height: auto;
}
.linkcolor a {
    color: #0f3460;
    text-decoration: none;
    font-weight: 600;
}
.linkcoloryellow a {
    color: #ffc107;
    text-decoration: underline;
}
.linkcoloryellow a:hover {
    color: #ffca2c;
}
.linkcolor a:hover {
    text-decoration: underline;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
	.lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
}
	
}
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
/* ==================== Emergency Banner ==================== */
.emergency-banner {
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.5rem 0;
    position: relative;
    z-index: 60;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
}

.banner-icon {
    flex-shrink: 0;
    stroke: var(--primary-dark);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.banner-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.banner-phone {
    font-weight: bold;
    text-decoration: underline;
    color: var(--primary-dark);
    transition: var(--transition);
}

.banner-phone:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.banner-book {
    font-weight: bold;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
    transition: var(--transition);
}

.banner-book:hover {
    color: var(--primary-color);
}

.banner-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

@media (max-width: 640px) {
    .banner-close {
        position: static;
        margin-left: auto;
    }
    
    .emergency-banner .container {
        padding-right: 1rem;
    }
    
    .banner-text {
        font-size: 0.75rem;
    }
    
    .banner-icon {
        width: 14px;
        height: 14px;
    }
}

/* ==================== Header/Navbar ==================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-color);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-header.scrolled .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    transition: var(--transition);
}

.site-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.logo-text-primary {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-text-accent {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
	header#main-header {
    position: fixed;
    width: 100%;
    top: 0px;
}
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-text-primary,
    .logo-text-accent {
        font-size: 1.25rem;
    }
	html,body{overflow-x:hidden;}
}

/* Custom Logo Support */
.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}
.text-center {
    text-align: center;
}
/* ==================== Desktop Navigation ==================== */
.desktop-nav {
    display: none;
    align-items: center;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

/* Navigation Links */
.nav-link {
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown-wrapper {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.dropdown-btn:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown-wrapper:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 225px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 6px 5px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.875rem;
   
}

.dropdown-link:hover {
    color: var(--primary-color);
	background-color:#eaeaea;
    
}

/* Submenu Styles */
.submenu-wrapper {
    position: relative;
}

.menu-item-with-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 0.5rem;
}
.menu-item-with-arrow:hover {
    background-color: #eaeaea;
}
.submenu-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-gray);
    transition: transform 0.3s ease;
}

.submenu-wrapper:hover .submenu-arrow {
    transform: translateX(4px);
    color: var(--primary-color);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.submenu-wrapper:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-link {
    display: block;
    padding: 0.625rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.875rem;
    transition: var(--transition);
}

.submenu-link:hover {
    background: rgba(230, 126, 34, 0.08);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

/* Desktop Navigation Submenu Level 2 */
@media (min-width: 768px) {
    .dropdown-menu.dropdown-level-2.dropdown-submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    top: 2px;
    position: absolute;
    left: 223px;
}
	.dropdown-menu.dropdown-level-2.dropdown-submenu a:hover{
		background-color:#eaeaea;
	}
    .submenu-wrapper:hover .dropdown-menu.dropdown-level-2.dropdown-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ==================== Desktop Contact ==================== */
.desktop-contact {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .desktop-contact {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.phone-link svg {
    transition: var(--transition);
}

.phone-link:hover svg {
    transform: scale(1.1);
}

.btn-book {
    padding: 0.625rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(230, 126, 34, 0.3);
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.4);
}

.btn-book:active {
    transform: translateY(0);
}

/* ==================== Mobile Toggle ==================== */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle:hover {
    background: var(--light-gray);
}

.mobile-toggle svg {
    stroke: var(--text-dark);
    transition: var(--transition);
}

/* ==================== Mobile Menu ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 92vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.mobile-primary-menu {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.mobile-primary-menu > li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.mobile-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-dropdown-btn:hover {
    color: var(--primary-color);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
}

.mobile-dropdown-menu.active {
    max-height: 800px;
}

/* Mobile Submenu */
.mobile-submenu {
    margin: 0.5rem 0;
    border-left: 0px solid var(--border-color);
}

.mobile-submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu-header .mobile-link {
    flex: 1;
    border-bottom: none;
    padding: 0.75rem 0;
    color: #0f3460;
}

.mobile-submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-submenu-toggle:hover {
    background: var(--light-gray);
}

.mobile-submenu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
}

.mobile-submenu-items.active {
    max-height: 400px;
}

.mobile-sub-link {
    display: block;
    padding: 0.625rem 0;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: var(--transition);
}

.mobile-sub-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Mobile Contact */
.mobile-contact {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    background: var(--light-gray);
    border-radius: 2rem;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.mobile-phone-link:hover {
    color: var(--primary-color);
    background: rgba(230, 126, 34, 0.1);
}

.mobile-book-btn {
    display: inline-block;
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.mobile-book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==================== Overlay for Mobile Menu ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.dropdown-menu,
.submenu {
    animation: fadeIn 0.2s ease-out;
}

.mobile-menu.active {
    animation: slideIn 0.3s ease-out;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .primary-menu {
        gap: 1rem;
    }
    
    .nav-link,
    .dropdown-btn {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 0.7rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}

/* ==================== Accessibility ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ==================== Print Styles ==================== */
@media print {
    .site-header,
    .emergency-banner {
        position: static;
        background: white;
        box-shadow: none;
        border: none;
    }
    
    .mobile-toggle,
    .banner-close,
    .btn-book {
        display: none;
    }
    
    .dropdown-menu,
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .dropdown-wrapper:hover .dropdown-menu {
        transform: none;
    }
}

/* ==================== Footer Styles ==================== */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Footer Column */
.footer-col {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-logo-primary {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-logo-accent {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Title */
.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 0.125rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    line-height: 1.4;
}

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

.contact-address {
    font-style: normal;
}

.contact-text {
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.bottom-link:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 767px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-title {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .footer-logo-primary,
    .footer-logo-accent {
        font-size: 1.25rem;
    }
    
    .footer-logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
	.mobile-left {
		text-align: left;
	}
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

@media (min-width: 768px) {
h4 {
    font-size: 1rem;
    line-height: 1.5;
}
    .text-4xl {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .text-3xl {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* ==================== BUTTON STYLES ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--gray-50);
    transform: translateY(-2px);
}

/* ==================== CARD STYLES ==================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
/*     overflow: hidden; */
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card img {
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Pricing Plans */
.pricing-plan {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.shadow-custom-lg {
    box-shadow: var(--shadow-custom-lg);
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==================== BACKGROUND COLORS ==================== */
.bg-primary {
    background-color: var(--primary-color);
}

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-tertiary {
    background-color: var(--tertiary);
}

.text-tertiary {
    color: var(--tertiary);
}

.bg-accent {
    background-color: var(--accent-color);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}
.bg-slate-50{
	   background-color: var(--slate-50);
}
/* ==================== TEXT COLORS ==================== */
.text-white {
    color: var(--white);
}

.text-primary {
    color: var(--primary-color);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.text-accent {
    color: var(--accent-color);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-success {
    color: var(--success);
}

/* ==================== BORDER STYLES ==================== */
.border {
    border: 1px solid var(--gray-200);
}

.border-gray-100 {
    border-color: var(--gray-100);
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-300 {
    border-color: var(--gray-300);
}

.border-accent {
    border-color: var(--accent-color);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}
.rounded-3xl {
    border-radius: var(--radius-3xl);
}
.rounded-full {
    border-radius: 9999px;
}

/* ==================== SPACING UTILITIES ==================== */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 3.5rem; }
.mb--6{margin-bottom:-6px;}
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.2rem; }
.mt-16 { margin-top: 3rem; }
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.left-1\/2 {
    left: 33%;
}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity));
}

.w-16{
	width:4rem;
}
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-12 {
    padding: 3rem;
}
/* ==================== FLEXBOX & GRID ==================== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-2 {
    gap: .75rem;
}
.gap-3 {
    gap: .75rem;
}
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 {gap:2.5rem;}
.gap-12 { gap: 3rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.p-4 {
    padding: 1rem;
}
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* 	 .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } */
    .md\:flex-row { flex-direction: row; }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:justify-start { justify-content: flex-start; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ==================== POSITIONING ==================== */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }

/* ==================== SIZING ==================== */
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-48 { height: 12rem; }
.h-16 { height: 4rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-24 { width: 6rem; }
.h-1 { height: 0.25rem; }
.w-52 { width: 13rem; }
.h-52 { height: 13rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-smxl { max-width: 35rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* ==================== OVERFLOW ==================== */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ==================== OBJECT FIT ==================== */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ==================== TRANSITIONS ==================== */
.transition { transition: all 0.2s ease; }
.transition-all { transition: all 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* ==================== SHADOWS ==================== */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ==================== HOVER EFFECTS ==================== */
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:text-accent:hover { color: var(--accent-color); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* ==================== GROUP HOVER EFFECTS ==================== */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:ml-2 { margin-left: 0.5rem; }
.group:hover .group-hover\:text-primary-dark { color: var(--primary-dark); }

/* ==================== BACKDROP ==================== */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ==================== OPACITY ==================== */
.opacity-10 { opacity: 0.1; }
.opacity-90 { opacity: 0.9; }

/* ==================== GRADIENT ==================== */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-primary {
    --tw-gradient-from: var(--primary-color);
    --tw-gradient-stops: var(--tw-gradient-from), rgb(15 52 96);
}
.via-primary\/80 { --tw-gradient-via: rgba(30, 58, 95, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to); }
.to-primary\/50 { --tw-gradient-to: rgba(30, 58, 95, 0.5); }

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

/* ==================== HOW IT WORKS STEPS ==================== */
.step-number {
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .step-number {
        top: -1rem;
        left: 65%;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: #f9fafb;
}

#faq-accordion .faq-item {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

/* Question button */
.faq-toggle {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    background: #f3f4f6;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-toggle:hover {
    background: #e5e7eb;
}

/* Arrow icon */
.faq-toggle svg {
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    max-height: 0px;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    color: #4b5563;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Open state */
.faq-item.active .faq-answer {
    padding: 15px 20px;
   
}

/* ==================== FORM INPUTS ==================== */
.input {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    transition: all 0.2s ease;
}

.input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

/* ==================== BRANDS SECTION ==================== */
.brands-section img {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brands-section img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Brand Swiper */
.brandSwiper {
    padding: 10px 0;
}

.brand-card {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card img {
    max-height: 60px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.brand-card img:hover {
    transform: scale(1.05);
}

/* ==================== EMERGENCY SECTION ==================== */
.emergency-section .btn {
    transition: all 0.2s ease;
}

.emergency-section .btn:hover {
    transform: translateY(-2px);
}

/* ==================== BOOKING SECTION ==================== */
.booking-section .btn {
    transition: all 0.2s ease;
}

.booking-section .btn:hover {
    transform: translateY(-2px);
}

/* ==================== ABOUT SECTION ==================== */
.about-section a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-section a:hover {
    color: var(--accent-color);
}

/* ==================== DUBAI MAINTENANCE SECTION ==================== */
.dubai-maintenance a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dubai-maintenance a:hover {
    color: var(--accent-color);
}

.whitebtnxc {
    background-color: #ffffff1a;
}

/* ==================== ADDITIONAL UTILITIES FROM SECOND BLOCK ==================== */
.block { display: block; }
.inline-block { display: inline-block; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.min-h-\[400px\] { min-height: 320px; }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-accent\/5 { background-color: rgba(255, 193, 7, 0.05); }
.bg-accent\/10 { background-color: rgba(255, 193, 7, 0.1); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.text-gray-500 { color: #6b7280; }
.text-yellow-600 { color: #ca8a04; }
.text-blue-100 { color: #cfe2ff; }
.text-sm {
    font-size: 1rem;
    line-height: 1.25rem;
}
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.50rem; }
.p-5 { padding: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 {
    padding-top: .625rem;
    padding-bottom: .625rem;
}
.px-8{padding-left:2rem; padding-right: 2rem;}
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.border-l-4 { border-left-width: 4px; }
.border-b { border-bottom-width: 1px; }
.border-primary { border-color: #0d6efd; }
.border-yellow-500 { border-color: #eab308; }
.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.ring-primary\/20 { --tw-ring-color: rgba(13, 110, 253, 0.2); }
.rotate-180 { transform: rotate(180deg); }
.overflow-x-auto { overflow-x: auto; }
.border-collapse { border-collapse: collapse; }
/* .whitespace-pre-line { white-space: pre-line; } */
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-primary-dark:hover { background-color: #0f3460; }
.hover\:bg-primary:hover { background-color: #0f3460; }
.hover\:bg-accent\/90:hover { background-color: rgba(255, 193, 7, 0.9); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:border-primary\/50:hover { border-color: rgba(13, 110, 253, 0.5); }
.hover\:underline:hover { text-decoration: underline; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.inset-x-0 { left: 0; right: 0; }
.-top-4 { top: -1rem; }
.space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.h-[400px]{
	height:400px;
}
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	
    .sm\:gap-12 { gap: 3rem; }
}
@media (min-width: 768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:text-left { text-align: left; }
    .md\:p-8 { padding: 2rem; }
    .md\:border-gray-200 { border-color: #e5e7eb; }
    .md\:hover\:border-primary\/50:hover { border-color: rgba(13, 110, 253, 0.5); }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.2; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1.2; }
}

@media (min-width: 1024px) {
    .lg\:gap-16 { gap: 4rem; }
}

/* Print Styles for Footer */

@media print {
    .site-footer {
        background: white;
        color: black;
        position: static;
    }
    
    .footer-link,
    .contact-link {
        color: black;
    }
    
    .social-links {
        display: none;
    }
}

.h-\[261px\] {
    height: 261px;
}
.w-\[580px\] {
	width:580px;
}
.w-\[280px\] {
    width: 280px;
}
button {
    border: none;
    background: none;
	cursor: pointer;
}
.bottom-4 {
    bottom: 1rem;
}
.left-4 {
    left: 1rem;
}

.-bottom-10{
	    bottom: 2rem;
}
.left-10{
	left:2rem;
}
.w-80{
	max-width:320px;
}
.text-left {
    text-align: left;
}
@media (max-width: 680px) {
	.w-\[280px\] {
    width: 100%;
}
	.sm-height{
		height:auto;
	}
}
.ac-repair-marina-page .hover\:text-primary:hover {
    color: #0056a0;
}

.ac-repair-marina-page .rotate-180 {
    transform: rotate(180deg);
}

.ac-repair-marina-page .hidden {
    display: none;
}

.ac-repair-marina-page .backdrop-blur-md {
    backdrop-filter: blur(12px);
}



.ac-repair-marina-page .border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-2 {
    border: 2px solid black;
}

@media (min-width: 1024px) {
    .lg\:w-1\/2 {
        width: 50%;
    }
}

.btn-green{
	background-color:#1ab152;

}
.btn-green{
  background: linear-gradient(45deg, #15803d,#22c55e );
}

.outer-bg1 br{display:none;}
.outer-bg1 input{padding:15px 20px;}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.9rem important!;
    font-weight: normal;
    display: block;
}
.list-disc.list-disc-add{padding-left:20px;}
html {
    scroll-behavior: smooth;
}
.list-disc.list-disc-add li{list-style-type:disc !important;padding:3px 0px}

.upload-text img{height:200px;object-fit:cover !Important;}
@media (max-width: 1024px) {
.mdx {
    flex-direction: column;
}
}