body {
    background-color: #0F1427;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}
.hero-bg {
    background: url('https://images.unsplash.com/photo-1516321310766-61f6f5c0c0e8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 39, 0.8);
}
.boxed-logo {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2D3A5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.boxed-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(163, 191, 250, 0.3);
}
.header-logo {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #2D3A5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.header-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(163, 191, 250, 0.3);
}
.multicolor-text {
    background: linear-gradient(90deg, #A3BFFA, #60A5FA, #93C5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-link {
    transition: color 0.3s ease-in-out;
}
.nav-link:hover {
    color: #00DDEB;
}
.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
}
.slide.active {
    opacity: 1;
    transform: scale(1.05);
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    background: #A3BFFA;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: #00DDEB;
}
.package-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #2D3A5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(163, 191, 250, 0.3);
}
.testimonial-card {
    transition: transform 0.3s ease-in-out;
    background: #2D3A5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.testimonial-card.active {
    transform: scale(1.05);
}
.cta-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, #00DDEB, #A3BFFA);
    color: #0F1427;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.cta-button:hover {
    transform: scale(1.1);
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}
.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
.service-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: #2D3A5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(163, 191, 250, 0.3);
}