:root {
    --primary: #1e3a8a;
    --primary-light: #2a5ca5;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #0f172a;
    --text: #334155;
    --spacing: 5rem;
    --radius: 0.5rem;

    --text-color: #333;
    --light-text: #6e6e73;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --primary-color: #3a36e0;
    --secondary-color: #6366f1;
    --text-color: #333;
    --text-color: #034ca7;
    --light-text: #6e6e73;
    --bg-color: #fff;
    --accent-bg: #f8f9ff;
    --card-bg: #fff;
    --border-radius: 12px;
}

* {
    font-family: "Manrope", sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

h1,
h2,
h3,
h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
}


.text-center {
    text-align: center;
}

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("/api/placeholder/1200/800") center/cover no-repeat;
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero h1,
.hero p {
    color: white;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#about-us-content {
    padding: 0px 15px;
    font-size: 5px;
}

/* #text-center {
    padding: 0px 15px;
} */

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-section {
    background-color: #f1f5f9;
}

.booking-section {
    text-align: center;
    /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: white;
}

.booking-section h2,
.booking-section p {
    color: white;
}

/* .btn-light {
            background-color: white;
            color: var(--primary);
        }

        .btn-light:hover {
            background-color: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        } */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Default: no break */
.break-line {
    display: inline;
}

/* Mobile view: force line break */
@media (max-width: 768px) {
    .break-line {
        display: block;
    }
}
/* Responsive styles */

@media (max-width: 1200px) {
    #about {
        margin-top: -10px;
    }
    #vision-our {
        margin-top: -50px;
    }
}

@media (max-width: 992px) {
    #about {
        margin-top: -100px;
    }
    #vision-our {
        margin-top: -100px;
    }

    #about-us-content {
        margin-top: 30px;
    }

    #our-service {
        margin-top: -50px;
    }
}
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
    }

    #about {
        margin-top: 0px;
    }

    #about-us-content {
        margin-top: 30px;
    }

    #vision-our {
        margin-top: -100px;
    }
}

@media (max-width: 576px) {
    #about {
        margin-top: -50px;
    }
    #about-us-content {
        margin-top: -30px;
    }

    #vision-our {
        margin-top: -110px;
    }

    #our-service {
        margin-top: -50px;
    }
    .break-line {
        display: block;
    }
}

@media (max-width: 480px) {
    #about {
        margin-top: -100px;
    }
    #about-us-content {
        margin-top: -30px;
    }
    #vision-our {
        margin-top: -150px;
    }
    #our-service {
        margin-top: -50px;
    }
    .break-line {
        display: block;
    }
}
