/* styles.css */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #1a3c50;
    overflow-x: hidden;
    position: relative;
    padding-top: 0;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}
.container-logo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
}

header {
    text-align: center;
    padding: 20px 0;
    background: transparent;
    color: #fff;
    border-radius: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    transition: opacity 0.8s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

header h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header .logo {
    margin: 0;
    padding-bottom: 5px;
}

header h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
}

header p {
    font-size: 1.3rem;
    margin: 10px 0;
    opacity: 0.9;
}

.header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.header-top .logo {
    margin: 0 0 -10px 0;
}

.header-top h2 {
    margin: 0;
}

.content {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 450px;
    position: relative;
    z-index: 20;
    line-height: 1.7;
    letter-spacing: 0.015em;
    color: #444;
    font-family: 'Poppins', sans-serif;
}

.content h2 {
    color: #333;
    border-bottom: 2px solid #10A5E5;
    padding-bottom: 8px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    font-size: 2.2rem;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    text-align: justify;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 400;
    hyphens: auto;
    line-height: 1.8;
}

.content blockquote {
    font-style: italic;
    color: #10A5E5;
    border-left: 3px solid #10A5E5;
    padding-left: 20px;
    margin: 30px 0;
    font-size: 1.1rem;
}

.content h2 + p::first-letter {
    font-size: 3.5em;
    line-height: 0.65;
    float: left;
    margin-right: 0.1em;
    color: #10A5E5;
}

.content .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0 40px;
}

.content .service-card {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #10A5E5;
}

.content .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content .service-card h3 {
    color: #10A5E5;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.content .service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #555;
}

.content .why-choose {
    background: rgba(16, 165, 229, 0.05);
    border-radius: 10px;
    padding: 30px;
    border-left: 5px solid #10A5E5;
    margin: 40px 0;
}

.content .why-choose h2 {
    margin-top: 0;
    color: #10A5E5;
    border-bottom: none;
    text-align: center;
    font-size: 2.2rem;
}

.content .why-choose ul {
    padding-left: 20px;
    margin-top: 15px;
}

.content .why-choose li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
    line-height: 1.6;
}

.content .why-choose li::before {
    content: "•";
    color: #10A5E5;
    font-weight: bold;
    display: inline-block;
    width: 15px;
    margin-left: -15px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.service-card {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, #10A5E5, #50C0F9);
    border-image-slice: 1;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #10A5E5;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #10A5E5, #50C0F9);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.why-choose {
    margin-top: 40px;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    font-size: 1.1rem;
    padding: 10px;
    background: #f0f4f8;
    margin: 10px 0;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-choose li:hover {
    transform: scale(1.02);
}

.book-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #10A5E5, #50C0F9);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

.book-btn:hover, .book-btn:focus {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.9);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.85); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7); }
}

footer {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin-top: 50px;
}

footer p {
    margin: 8px 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer a {
    color: #50C0F9;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Calendar Modal Styles */
.modal-logo {
    text-align: center;
    margin-bottom: 15px;
}

.modal-content h2 {
    margin-top: 0;
    color: #10A5E5;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
