body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7931e !important;
}

.header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.header h1 {
    font-size: 3.5rem;
    margin: 0;
}

.header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn-custom {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #e84118;
}

/* Carousel Styles */
.carousel-image {
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.carousel-item {
    position: relative;
}

.carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 15px;
    width: 100%;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

* {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 70px;
    max-height: 120px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}
.navbar-brand img:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 45px;
        max-height: 60px;
    }
    .navbar {
        padding: 0.5rem 0;
    }
}

/* Enhanced Hero Section Styles */
.carousel-image {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

.carousel-caption-custom h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
    line-height: 1.1;
}

.carousel-caption-custom .lead {
    font-size: 1.8rem;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.carousel-caption-custom .btn {
    animation: fadeInUp 1.4s ease;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.carousel-caption-custom .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.8);
    border-radius: 50%;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.6);
}

.carousel-indicators .active {
    background-color: #ffc107;
}

@media (max-width: 768px) {
    .carousel-caption-custom h1 {
        font-size: 2.5rem;
    }
    .carousel-caption-custom .lead {
        font-size: 1.2rem;
    }
    .carousel-caption-custom .btn {
        font-size: 0.9rem;
        padding: 12px 30px;
    }
    .carousel-image {
        height: 70vh;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption-custom h1 {
        font-size: 2rem;
    }
    
    .carousel-image {
        height: 80vh !important;
    }
    
    .hero-buttons a {
        display: block;
        margin: 10px auto !important;
        width: 80%;
    }
    
    .carousel-slide {
        height: 80vh !important;
    }
}

* {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
}
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 70px;
    max-height: 120px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}
.navbar-brand img:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 45px;
        max-height: 60px;
    }
    .navbar {
        padding: 0.5rem 0;
    }
}
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 80px;
    margin-top: 86px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    from {
        transform: translateX(0) translateY(0);
    }
    to {
        transform: translateX(40px) translateY(40px);
    }
}

.blog-header .container {
    position: relative;
    z-index: 1;
}

.blog-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
    letter-spacing: -1px;
}

.blog-header .lead {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-meta {
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.blog-meta span {
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-meta span:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .blog-header {
        padding: 120px 0 60px;
    }
    .blog-header h1 {
        font-size: 2.2rem;
    }
    .blog-header .lead {
        font-size: 1.1rem;
    }
    .blog-meta {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    .blog-meta span {
        padding: 0 8px;
        display: inline-block;
    }
}
.blog-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}
.info-card {
    background: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.location-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.location-card h4 {
    color: #667eea;
    margin-bottom: 10px;
}
.tips-list {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}
.tips-list ul {
    margin-bottom: 0;
}
.tips-list li {
    margin-bottom: 10px;
}
.author-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}
.author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 !important;
}
.tag-list {
    margin: 30px 0;
}
.tag-list .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}
.social-share {
    margin: 30px 0;
}
.social-share .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}
.related-posts {
    background: #f8f9fa;
    padding: 60px 0;
}
.visual-journey-img {
    height: 300px;
    object-fit: cover;
}

/* Blog Card Styles */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.blog-card .card-title {
    font-weight: 600;
    color: #2c3e50;
    min-height: 60px;
}

.blog-card .card-text {
    min-height: 70px;
}

.blog-card .btn-block {
    transition: all 0.3s ease;
}

.blog-card .btn-block:hover {
    transform: scale(1.02);
}