body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 80px;
    color: #34495e;
}

.navbar {
    /* background: rgba(0, 0, 0, 0.8) !important; */
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 16px 0;
}

.hero-carousel {
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-text {
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    /* display: none; */
    /* padding: 60px 0; */
    background: white;
    min-height: 500px;
}

.section.active {
    display: block;
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.test-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #3498db;
}

.fact-counter {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.gallery img {
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 20px;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
}

footer a:hover {
    color: #3498db;
}

.social-icons a {
    margin: 0 10px;
    color: #ecf0f1;
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 300px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 40px 0;
    }
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    z-index: 1;
    position: relative;
}

.hero-overlay {
    z-index: 2;
}

.hero-carousel {
    position: relative;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #34495e;
}

.hero-carousel {
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 100vh;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-in-out;
    z-index: 3;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    /* display: none; */
    padding: 10px 0;
    background: #fff;
    min-height: 500px;
}

.section.active {
    display: block;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}