* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

h1, h2 { color: #003366; text-align: center;size: 300px; }
h3 { color: whitet-weight: normal; text-align: center; margin: 15px 0; }
p { text-align: center; max-width: 800px; margin: 0 auto 20px; }

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: -1; }
.hero-content { text-align: center; color: #fff; z-index: 1; max-width: 900px; padding: 20px; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.5rem; margin-bottom: 40px; }

/* Button */
.btn {
 
    color: #fff;
    padding: 15px 40px;
    border: white 2px solid;
    border-radius: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s, transform 0.3s;
}
.btn:hover { background:white;color: black ; transform: scale(1.05); }

.btn1{
 
    color: #fff;
    padding: 15px 40px;
    border: white 2px solid;
    border-radius: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s, transform 0.3s;
}
.btn:hover { background:white;color: black ; transform: scale(1.05); }

/* Split Sections (Image Left / Text Right) */
.split-section {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    min-height: 600px;
    background: #f9f9f9;
}
.split-section.reverse { flex-direction: row-reverse; }
.image-side { flex: 1; }
.image-side img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.text-side {
    flex: 1;
    padding: 40px;
    text-align: left;
}
.highlight { font-size: 1.3rem; font-weight: bold; margin: 30px 0; }

/* Services */


/* Services */
.services {
    padding: 80px 40px;
    text-align: center;
    background: #fff;
}

.services .subtitle {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-card {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 51, 0.5); /* Dark blue overlay */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    transition: background 0.5s ease;
    z-index: 2;
}

.card-overlay h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.card-overlay p {
    font-size: 1.1rem;
    max-width: 80%;
    line-height: 1.6;
}

/* Hover Effects */
.service-card:hover .card-image {
    transform: scale(1.15); /* Zoom in from behind */
}

.service-card:hover .card-overlay {
    background: rgba(0, 0, 102, 0.75); /* Deeper tint on hover */
}

/* Menu Showcase */
.menu-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-showcase img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        height: 450px;
    }
    .card-overlay h3 {
        font-size: 2.2rem;
    }
}

/* Contact Form */
form {
    max-width: 500px;
    margin-top: 40px;
}
form input, form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}
form textarea { height: 150px; resize: vertical; }

/* Responsive */
@media (max-width: 992px) {
    .split-section { flex-direction: column; padding: 60px 20px; min-height: auto; }
    .split-section.reverse { flex-direction: column; }
    .text-side { padding: 30px 0; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .service-card h3 { font-size: 1.8rem; }
}
/* === FOOTER === */
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .footer-left,
        .footer-center,
        .footer-right {
            flex: 1;
            min-width: 250px;
            text-align: center;
            margin-bottom: 10px;
        }

        .footer-right a {
            color: #0073aa;
            text-decoration: underline;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            border-top: 1px solid #ddd;
            padding-top: 20px;
        }

        .footer-social img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s;
            display: flex;
            justify-content: center;
        }

        .footer-social img:hover {
            transform: scale(1.1);
        }

        .footer-credit {
            font-size: 14px;
            margin: 0;
               display: flex;
            justify-content: center;

        }