/* General Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

footer {
    margin-top: auto;
    background-color: #343a40;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0056b3 !important;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Sections */
.hero-section, .about-hero, .contact-hero {
    position: relative;
    overflow: hidden;
}

/* Hero Section Slideshow */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero Content Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 1.5s forwards;
    opacity: 0;
}

/* Card Styles */
.tour-card {
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card, .contact-info-card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover, .contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Timeline Styles */
.timeline-item {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-item h4 {
    color: #0056b3;
    margin-bottom: 10px;
}

/* Testimonial Cards */
.testimonial-section .card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-section .card:hover {
    transform: translateY(-5px);
}

/* Sections */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.cta-section {
    background-color: #0056b3;
    color: white;
    padding: 60px 0;
}

/* Button Styles */
.btn {
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #003d82;
    border-color: #003d82;
    transform: translateY(-2px);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(0,86,179,0.25);
}

/* Dashboard Stats */
.stats-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Custom Alert Styles */
.alert-float {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated Elements */
.feature-card, .team-member, .timeline-item {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section, .about-hero, .contact-hero {
        height: 60vh;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 45px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0056b3;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003d82;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-dot.active {
    background: #fff;
}