/* Navbar Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.logo h2 span {
    color: #f64f12;
}


.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover, .nav-link.active {
    color: #14568E;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(20, 86, 142, 0.1);
    color: #14568E;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 40px;
}

.get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #14568E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.get-in-touch:hover {
    background: #1a7ac2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 86, 142, 0.3);
}

.get-in-touch i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.get-in-touch:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
}

.blog-main {
    padding: 120px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-family: "Work Sans", sans-serif;
    font-size: 42px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.blog-header p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.blog-filters {
    margin-bottom: 40px;
}

.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-bar input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    background: transparent;
    color: var(--text-color);
    font-size: 14px;
    font-family: "Work Sans", sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: #14568E;
    color: white;
    border-color: #14568E;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(20, 86, 142, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-family: "Work Sans", sans-serif;
    backdrop-filter: blur(5px);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-content p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #14568E;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

.pagination {
    text-align: center;
}

#loadMore {
    background: transparent;
    border: 2px solid #14568E;
    color: #14568E;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

#loadMore:hover {
    background: #14568E;
    color: white;
}

/* Blog Post Page Styles */
.blog-post-container {
    max-width: 1000px;
    margin: 120px auto 40px;
    padding: 0 20px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-post-header {
    padding: 30px;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    color: #14568E;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 40px;
    color: #333;
    line-height: 1.8;
}

.post-content h2 {
    color: #14568E;
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

/* Social Share */
.social-share {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-share h3 {
    color: #14568E;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

/* Related Posts */
.related-posts {
    margin-bottom: 40px;
}

.related-posts h2 {
    color: #14568E;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comments-section h2 {
    color: #14568E;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.comment-form {
    margin-top: 40px;
}

.comment-form h3 {
    color: #14568E;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #14568E;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1a7ac2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 86, 142, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .post-image {
        height: 300px;
    }

    .post-content {
        padding: 20px;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
    }

    .post-image {
        height: 250px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Aurora Background Effect */
.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    z-index: -1;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 120px auto 40px;
    padding: 0 20px;
}

/* Blog Page Header */
.blog-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-page-header h1 {
    font-size: 2.5rem;
    color: #14568E;
    margin-bottom: 15px;
}

.blog-page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Container */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #14568E;
    background: transparent;
    color: #14568E;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #14568E;
    color: white;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    color: #14568E;
    margin-bottom: 10px;
}

.blog-card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.8rem;
}

.read-more {
    color: #14568E;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 40px auto;
    padding: 12px 30px;
    background: #14568E;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #1a7ac2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(20, 86, 142, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .blog-page-header h1 {
        font-size: 2rem;
    }

    .filter-container {
        gap: 10px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .blog-page-header h1 {
        font-size: 1.8rem;
    }

    .blog-page-header p {
        font-size: 1rem;
    }

    .filter-container {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
} 