* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
/* Navigation Menu */
.navbar {
    background-color: #333;
    padding: 1rem;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: inline-block;
}

.navbar a:hover {
    background-color: #555;
}

.carousel-container {
    padding: 10px;
    max-width: 1250px;
    margin: 10px auto;
}

.carousel {
    position: relative;
    max-width: 1250px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.carousel img {
    width: 100%;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
/* Text-Image Block */
.text-image-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2c3e50;
    color: white;
    padding: 40px;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.text-image-section img {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
}

@media only screen and (max-width: 768px) {
    .text-image-section {
        flex-direction: column; /* Stack text and image vertically */
    }
    .text-image-section .text-content {
        width: 100%; /* Make the text container full width */
        margin: 0;                /* Remove any default margin */
        padding: 0;               /* Remove any default padding */
        box-sizing: border-box; /* Include padding/border in width calculation */
    }
    .text-image-section img {
        max-width: 100%; /* Full width on mobile */
    }
}

.text-content {
    max-width: 100%;
    margin-right: 20px;
}
/* Hero Banner */
.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-banner img {
    width: 100%;
    border-radius: 10px;
}
/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

.footer p {
    margin: 5px 0;
}
/* Website theme-based Know More button */
.btn-knowmore {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #2c3e50, #34495e); /* matches site dark tones */
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-knowmore:hover {
    background: linear-gradient(135deg, #1a252f, #2c3e50); /* darker hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}


