
/* General Reset */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Section */
header {
    background: linear-gradient(135deg, #003366 0%, #006633 100%); /* Blue to green gradient */
    color: white;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Align logo to the left and nav to the right */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#container_1{
    padding-top: 0.25rem; 
}

.lcontent {
    display: flex;
    align-items: center; /* Align logo and text vertically */
    font-size: 1.5rem;
    font-weight: bold;
    justify-content: flex-start; /* Ensure logo and text stay on the left */
}

.logo {
    width: 40px; 
    margin-right: 10px; /* Adds space between the logo and the company name */
   
}

.logo-text {
    font-size: 1.5rem; /* Size of the company name */
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: flex-start; /* Align nav links to the left */
    flex-wrap: wrap; /* Allow nav links to wrap on smaller screens */
    margin-top: 10px; /* Adds space between the logo + text and the nav */
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Custom Navbar Styling */
.custom-navbar {
    background: linear-gradient(135deg, #002147 0%, #004d26 100%); /* Dark blue to dark green */
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    background: linear-gradient(to right, #4F94CD, #4caf50); /* Blue to green gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-links a {
    color: white;
    margin: 0 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    background: linear-gradient(to right, #93c5fd, #8bc34a); /* Light blue to light green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.book-now-btn {
    background: linear-gradient(135deg, #4169E1 0%, #2e7d32 100%); /* Royal blue to green */
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #3457D5 0%, #1b5e20 100%); /* Darker blue to darker green */
    transform: translateY(-2px);
}

/* Dropdown Menu Styling */
.group:hover .group-hover\:block {
    display: block;
}

/* Mobile Menu Styling */
#mobile-menu {
    transition: opacity 0.3s ease;
}

#mobile-menu.hidden {
    opacity: 0;
    pointer-events: none;
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    display: flex !important;
}

#mobile-menu a {
    transition: transform 0.3s ease;
}

#mobile-menu a:hover {
    transform: translateX(5px);
}

/* Card Hover Effects */
.transition-transform {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Button Hover Effects */
.transition {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: no-repeat center center/cover;
    color: rgba(243, 243, 235, 0.034);
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 500px; /* Adjust based on design */
}

.hero-carousel .hero {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover !important; /* Ensure background covers the area */
    background-position: center !important; /* Ensure image is centered */
    transition: all 1s ease-in-out;
    opacity: 0;
    z-index: 0;
}

.hero-carousel .hero:nth-child(1) {
    background-image: url('img/carousel-1.jpg');
}

.hero-carousel .hero:nth-child(2) {
    background-image: url('img/carousel-2.jpg');
}

.hero-carousel .hero:nth-child(3) {
    background-image: url('img/carousel-3.jpg');
}

.hero-carousel .hero.active {
    left: 0;
    opacity: 1;
    z-index: 1; /* Bring the active slide to the front */
}

/* Add smooth animation */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 102, 51, 0.7) 100%); /* Blue to green gradient with transparency */
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-buttons .btn {
    background: linear-gradient(135deg, #00509E 0%, #2e7d32 100%); /* Blue to green */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    border-radius: 5px;
}

.hero-buttons .btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.hero-buttons .btn:hover {
    background: linear-gradient(135deg, #003366 0%, #1b5e20 100%); /* Darker blue to darker green */
}

/* Key Focus Areas Section */
.key-focus {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #f0fff0 100%); /* Very light blue to very light green */
}

.key-focus h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(to right, #003366, #006633); /* Blue to green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Columns Layout */
.columns {
    display: flex;
    justify-content: space-between; /* Distribute columns evenly */
    gap: 20px; /* Space between columns */
    max-width: 1200px;
    margin: 0 auto; /* Center the columns container */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.column {
    flex: 1; /* Make columns equal in size */
    max-width: 3500px; /* Limit column width for balance */
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    border-top: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(to right, #003366, #006633);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Image Styling */
.side-bar {
    width: 100%; /* Make image take full width of column */
    height: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Headings and Text */
.column h3 {
    margin: 10px 0;
    font-size: 1.1rem;
    background: linear-gradient(to right, #00509E, #2e7d32); /* Blue to green */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.column p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Button Styling */
.key-focus .btn {
    display: inline-block;
    margin-top: 2rem;
    background: linear-gradient(135deg, #003366 0%, #006633 100%); /* Blue to green */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.key-focus .btn:hover {
    background: linear-gradient(135deg, #00509E 0%, #2e7d32 100%); /* Lighter blue to lighter green */
}

/* Footer Section */
/* Footer Section */
footer {
    background: #003366; /* Reverted back to original blue */
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a:hover {
    text-decoration: underline;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container div {
    margin: 10px;
}


.footer-container div {
    margin: 10px;
}

footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

footer p,
footer ul {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .social-media a img {
    width: 30px;
    margin: 0 5px;
}

footer p {
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: flex-start; /* Align logo and nav to the left */
        text-align: left;
        padding: 0 15px; /* Adjust padding for smaller screens */
    }

    .custom-navbar {
        padding: 1rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* About Hero Section */
.about-hero {
    background: url('../img/deusel_about.jpg') no-repeat center center/cover;
    color: rgba(8, 212, 76, 0.781);
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.about-hero-overlay {
    
    padding: 2rem;
    border-radius: 10px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
}

/* About Us Content Section */
.about-content {
    background: #f9f9f9;
    padding: 2rem;
    text-align: left;
}

.about-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 1.5rem;
    color: #003366;
    font-size: 1.8rem;
}

.about-content p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
}

.focus_about h3{
    padding-top: 2rem;
    color: #091725f3;
    font-size: 20px;
}

/* Team Section */
.team {
    padding: 2rem;
    background: #fff;
    text-align: center;
}

.team h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #003366;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 10px 0;
    color: #00509E;
    font-size: 1.2rem;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}


/* Services Hero Section */
.services-hero {
    background: url('../img/service_img.jpg') no-repeat center center/cover;
    color: rgb(255, 255, 255);
    font-weight: bolder;
    
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.services-hero-overlay {
    
    padding: 2rem;
    border-radius: 10px;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
}

/* Services Content Section */
.services-content {
    background: #f9f9f9;
    padding: 2rem;
    text-align: center;
}

.services-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-content h2 {
    margin-bottom: 2rem;
    color: #003366;
    font-size: 2rem;
}

.services-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    flex: 1;
    max-width: 300px;
    background: white;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    margin-bottom: 10px;
}

.service-item h3 {
    color: #00509E;
    margin: 10px 0;
}

.service-item p {
    font-size: 1rem;
    color: #555;
}

/* Call-to-Action Section */
.cta-section {
    background: #003366;
    color: white;
    padding: 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cta-section .btn {
    background: #00509E;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-section .btn:hover {
    background: #002244;
}


/* Mission Hero Section */
.mission-hero {
    background: url('https://via.placeholder.com/1500x500') no-repeat center center/cover;
    color: white;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.mission-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.mission-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-hero p {
    font-size: 1.2rem;
}

/* Mission Content Section */
.mission-content {
    background: #f9f9f9;
    padding: 2rem;
    text-align: left;
}

.mission-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content h2 {
    color: #003366;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mission-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.mission-content ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.mission-content ul li {
    margin: 0.5rem 0;
}

/* Vision Section */
.vision-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
}

.vision-section h2 {
    font-size: 2rem;
    color: #00509E;
    margin-bottom: 1rem;
}

.vision-section p {
    font-size: 1.2rem;
    color: #333;
}


/* Contact Hero Section */
.contact-hero {
    background: url('/img/contact_img.jpg') no-repeat center center/cover;
    color: white;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.contact-hero-overlay {
    background-color: rgba(0, 0, 0, 0.123);
    padding: 2rem;
    border-radius: 10px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    background: #f9f9f9;
    padding: 2rem;
}

.contact-form-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    color: #333;
}

.form-group input, .form-group textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    padding: 12px 20px;
    background-color: #00509E;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #002244;
}

/* Contact Information Section */
.contact-info-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1.5rem;
}

.contact-info-section p {
    font-size: 1.2rem;
    color: #333;
}

.weather-grid {
    display: grid;
    grid-template-columns: 1fr; /* One column on small screens */
    gap: 1rem;

}

.weather-grid > div {
    text-align: left;
}
@media (min-width: 768px) {
    .weather-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on larger screens */
    }
}

/* FAQ Section Styling */
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    text-align: left;
    background-color: #f8fafc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question span {
    font-weight: 500;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
    padding: 0 1rem;
}

.faq-answer p {
    padding: 1rem 0;
    color: #4b5563;
}

.faq-icon {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.rounded-lg.overflow-hidden button {
    cursor: pointer;
    outline: none;
}

.rounded-lg.overflow-hidden button:focus {
    background-color: #f1f5f9;
}

.rounded-lg.overflow-hidden div[style*="max-height: 0"] {
    padding-top: 0;
    padding-bottom: 0;
}

.rounded-lg.overflow-hidden div {
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}
