:root {
    --mai-primary: #003366;
    /* Deep Navy blue */
    --mai-secondary: #008080;
    /* Teal */
    --mai-accent: #ffd700;
    /* Gold */
    --mai-text: #333333;
    --mai-light: #f8f9fa;
    --mai-white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--mai-text);
}

.mai-header {
    background: var(--mai-primary);
    color: var(--mai-white);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mai-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mai-nav {
    display: flex;
    gap: 2rem;
}

.mai-nav a {
    color: var(--mai-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mai-nav a:hover {
    color: var(--mai-accent);
}

.mai-carousel {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.mai-carousel-inner {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 15s infinite ease-in-out;
}

.mai-slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.mai-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.mai-slide-content {
    position: relative;
    z-index: 1;
}

.mai-slide-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mai-slide-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes slide {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-33.333%);
    }

    50%,
    70% {
        transform: translateX(-66.666%);
    }

    75%,
    95% {
        transform: translateX(-33.333%);
    }

    100% {
        transform: translateX(0);
    }
}

.content-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.btn-mai {
    background: var(--mai-accent);
    color: var(--mai-primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-mai:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Footer Styles */
.mai-footer {
    background: var(--mai-primary);
    color: var(--mai-white);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--mai-accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--mai-accent);
}

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

.social-icon {
    font-size: 1.5rem;
    color: var(--mai-white);
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.map-container {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Home Page Enhanced Styles */
.home-hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.bg-mai-gold {
    background-color: var(--mai-accent) !important;
}

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

.btn-outline-mai {
    border: 2px solid var(--mai-primary);
    color: var(--mai-primary);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-mai-white {
    background: white;
    color: var(--mai-primary);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-mai-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-img {
    border: 8px solid white;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--mai-accent);
    color: var(--mai-primary);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--mai-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--mai-secondary);
    margin-bottom: 1.5rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.animate__animated {
    animation-duration: 1s;
}

/* Connect With Us Page Styles */
.bg-mai {
    background: var(--mai-primary);
    background: linear-gradient(180deg, var(--mai-primary) 0%, var(--mai-secondary) 100%);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.connect-container .card {
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.connect-container .form-control {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.connect-container .form-control:focus {
    background: white;
    border-color: var(--mai-primary);
}

/* Utilities */
.opacity-90 {
    opacity: 0.9;
}

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