@media screen and (max-width: 420px) {
	.navbar-brand img {
		width: 95% !important;
	}
}

@media screen and (max-width: 520px) {
	.navbar-brand img {
		width: 95% !important;
	}
}

#hero-video {
	margin-top: -200px;
}

#location-image {
	height: 350px;
}

@media (max-width: 992px) {
	#hero-video {
		margin-top: -190px;
	}

	.hero-carousel .carousel-item {
        height: 50vh;
    }
}

@media (max-width: 576px) {
	#hero-video {
		margin-top: 10px;
	}

	#location-image {
		height: 470px;
	}

	.dropdown-menu {
		background: var(--bs-gray-100) !important;
	}

	.dropdown-toggle.show {
		background-color: var(--bs-green-50) !important;
	}

	.hero-carousel .carousel-item {
        height: 30vh;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 12%;
    }

    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 28px;
        height: 28px;
    }
}

/* =====================================================
   BLOGS PAGE
===================================================== */


/* =====================================================
   HERO
===================================================== */

.blogs-hero {

    position: relative;

    width: 100%;

    height: 660px;

    margin: 0;

    overflow: hidden;
}


.blogs-hero-image {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.blogs-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.30);

    z-index: 1;
}


.blogs-hero-content {

    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 2;

    width: 100%;

    padding: 0 20px;

    transform:
        translate(-50%, -50%);

    text-align: center;

    color: #ffffff;
}

.blogs-hero-content h1 {

    margin: 0 0 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 72px;

    font-weight: 700;

    line-height: 1.1;
}


.blogs-hero-content p {

    margin: 0 0 55px;

    font-size: 30px;

    font-weight: 600;
}


.blogs-contact-btn {

    display: inline-block;

    padding: 18px 45px;

    background-color:
        var(--color-primary);

    border: 1px solid #ffffff;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.blogs-contact-btn:hover {

    background-color:#ffffff;

    color: #000000;

    transform:
        translateY(-2px);
}


/* =====================================================
   BLOG CONTENT
===================================================== */

.blogs-page {

    padding-top: 140px;

    padding-bottom: 100px;

    background-color: #ffffff;
}


.blog-post {

    padding-bottom: 28px;

    margin-bottom: 28px;

    border-bottom:
        1px solid #eeeeee;
}


.blog-image-link {

    display: block;

    text-decoration: none;
}


.blog-post-image {

    width: 100%;

    height: 315px;

    display: block;

    object-fit: cover;

    object-position: center;
}


.blog-post-title {

    margin: 0 0 10px;

    font-size: 29px;

    font-weight: 700;

    line-height: 1.15;
}


.blog-post-title a {

    color: #333333;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.blog-post-title a:hover {

    color:
        var(--color-primary);
}


.blog-meta {

    margin-bottom: 16px;

    color: #999999;

    font-size: 16px;
}


.blog-meta span {

    margin: 0 6px;
}


.blog-excerpt {

    margin-bottom: 15px;

    color: #777777;

    font-size: 17px;

    line-height: 1.65;
}


.blog-read-more {

    color: #2DBAB6 !important;

    font-size: 16px;

    font-weight: 500;

    text-decoration: none;
}


.blog-read-more:hover {

   color: #666666 !important;

    text-decoration: none;
}


/* =====================================================
   SIDEBAR
===================================================== */

.blog-sidebar {

    padding-left: 35px;

	margin-bottom: 40px;
}


.blog-search {

    margin-bottom: 45px;
}


.blog-search input {

    height: 50px;

    padding:
        10px 18px;

    border:
        1px solid #dddddd;

    border-radius: 3px;

    color: #555555;

    font-size: 14px;

    box-shadow: none;
}


.blog-search input:focus {

    border-color:
        var(--color-primary);

    box-shadow:
        0 0 0 2px
        rgba(45, 186, 182, 0.12);
}


/* =====================================================
   SIDEBAR CONTACT
===================================================== */

.sidebar-contact {

    margin-bottom: 40px;
}

/* =====================================================
   BLOG CATEGORIES
===================================================== */

.blog-categories {

    display: flex;

    flex-direction: column;

    gap: 9px;
}


.blog-categories a {

    color: #2DBAB6 !important;

    font-size: 14px;

	font-family: Georgia, 'Times New Roman', Times, serif;

    line-height: 1.45;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.blog-categories a:hover {

    color: #666666 !important;
}


/* =====================================================
   PAGINATION
===================================================== */

.blog-pagination {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-top: 35px;
}


.pagination-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    background-color: #2DBAB6 !important;

    color: #ffffff !important;

    border-radius: 4px;

    font-size: 16px;

    text-decoration: none !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.pagination-btn:hover {

    background-color: #666666 !important;

    color: #ffffff !important;

    text-decoration: none !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .blogs-hero {

        height: 560px;
    }


    .blogs-hero-content h1 {

        font-size: 54px;
    }


    .blogs-hero-content p {

        font-size: 25px;
    }


    .blog-sidebar {

        padding-left: 0;

        margin-top: 45px;

		margin-bottom: 50px;
    }


    .blog-post-image {

        height: 330px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .blogs-hero {

        height: 500px;
    }


    .blogs-hero-content h1 {

        font-size: 36px;

        line-height: 1.15;
    }


    .blogs-hero-content p {

        margin-bottom: 30px;

        font-size: 20px;
    }


    .blogs-contact-btn {

        padding:
            13px 30px;

        font-size: 14px;
    }


    .blogs-page {

        padding-top: 40px;
    	padding-bottom: 100px;
    	background-color: #ffffff;
    }


    .blog-post {

        padding-bottom: 25px;

        margin-bottom: 25px;
    }


    .blog-post-image {

        height: 260px;
    }


    .blog-post-title {

        font-size: 24px;
    }


    .blog-meta {

        font-size: 14px;
    }


    .blog-excerpt {

        font-size: 15px;
    }


    .blog-sidebar {

        margin-top: 25px;
    }


    .blog-pagination {

        flex-direction: column;

        width: 100%;
    }


    .pagination-btn {

        width: 100%;

        justify-content: center;
    }

}

/* ============================================================
   BLOG DETAIL PAGE
   ------------------------------------------------------------
   Dedicated styles for the individual blog/article page.
   These selectors use the "blog-detail" prefix so they do
   not conflict with the existing All Blogs page styles.
============================================================ */


/* ============================================================
   BLOG DETAIL PAGE
============================================================ */

.blog-detail-page {

    background-color: #ffffff;

    color: var(--color-text);

}


/* ============================================================
   BLOG ARTICLE HEADER
   ------------------------------------------------------------
   Contains:
   - Breadcrumb
   - Category
   - Blog title
   - Blog metadata
============================================================ */

.blog-detail-header {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 70px;
    text-align: center;
}


/* Hero image */

.blog-detail-header-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Dark overlay */

.blog-detail-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}


/* Content above image */

.blog-detail-header-content {
    position: relative;
    z-index: 2;
}


/* Breadcrumb */

.blog-detail-breadcrumb {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;

    font-size: 13px;

}


.blog-detail-breadcrumb a {

    color: var(--color-primary);

    text-decoration: none;

}


.blog-detail-breadcrumb a:hover {

    color: #666666;

}


.blog-detail-breadcrumb span {

    color: #888888;

}


/* Category */

.blog-detail-category {

    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 14px;

    background-color: var(--color-primary);

    color: #ffffff !important;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;

}


/* Blog title */

.blog-detail-title {

    max-width: 980px;

    margin: 0 auto 20px;

    color: #ffffff;

    font-family:
        "DM Serif Display",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    font-weight: 400;

    line-height: 1.15;
}


/* Blog metadata */

.blog-detail-meta {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    color: #888888;

    font-size: 14px;

}


.blog-detail-meta a {

    color: var(--color-primary) !important;

    text-decoration: none;

    transition: color 0.2s ease;

}


.blog-detail-meta a:hover {

    color: #666666 !important;

}


.blog-detail-meta span {

    color: #888888;

}


.blog-detail-meta i {

    color: var(--color-primary);

}


/* ============================================================
   MAIN BLOG SECTION
============================================================ */

.blog-detail-section {

    padding: 55px 0 80px;

}


/* ============================================================
   FEATURED IMAGE
============================================================ */

.blog-detail-featured-image {

    margin: 0 0 30px;

}


.blog-detail-featured-image img {

    width: 100%;

    height: 400px;

    display: block;

    object-fit: cover;

    border-radius: 8px;

}


/* ============================================================
   QUICK ANSWER
============================================================ */

.blog-detail-quick-answer {

    margin-bottom: 30px;

    padding: 20px 24px;

    background-color: #eef9f8;

    border-left: 4px solid var(--color-primary);

    color: #555555;

    font-size: 16px;

    line-height: 1.7;

}


.blog-detail-quick-answer strong {

    color: var(--color-secondary);

}


/* ============================================================
   ARTICLE TYPOGRAPHY
============================================================ */

.blog-detail-article {

    color: #444444;

}


.blog-detail-article > p {

    margin-bottom: 23px;

    color: #444444;

    font-size: 17px;

    line-height: 1.8;

}


/* Article headings */

.blog-detail-heading {

    margin-top: 50px;

    margin-bottom: 22px;

    color: var(--color-text);

    font-family:
        "DM Serif Display",
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    font-weight: 400;

    line-height: 1.3;
}


/* ============================================================
   ARTICLE IMAGES + CAPTIONS
============================================================ */

.blog-detail-content-image {

    margin: 32px 0;

}


.blog-detail-content-image img {

    width: 100%;

    height: auto;

    display: block;

    border-radius: 8px;

}


.blog-detail-content-image figcaption {

    margin-top: 10px;

    color: #777777;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;

    font-style: italic;

}


/* ============================================================
   ARTICLE LISTS
============================================================ */

.blog-detail-list {

    margin: 0 0 25px;

    padding-left: 25px;

}


.blog-detail-list li {

    margin-bottom: 10px;

    color: #444444;

    font-size: 16px;

    line-height: 1.7;

}


/* ============================================================
   VERDICT / HIGHLIGHT BOX
============================================================ */

.blog-detail-verdict {

    display: flex;

    gap: 16px;

    margin: 30px 0;

    padding: 22px;

    background-color: #f3fbfa;

    border: 1px solid #d8eeee;

    border-radius: 8px;

}


.blog-detail-verdict-icon {

    width: 42px;

    height: 42px;

    min-width: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background-color: var(--color-primary);

    color: #ffffff;

}


.blog-detail-verdict h3 {

    margin: 0 0 7px;

    color: var(--color-text);

    font-size: 18px;

    font-weight: 600;

}


.blog-detail-verdict p {

    margin: 0;

    color: #555555;

    font-size: 15px;

    line-height: 1.6;

}


/* ============================================================
   COMPARISON TABLE
============================================================ */

.blog-detail-table-section {

    margin-top: 20px;

}


.blog-detail-table-wrapper {

    width: 100%;

    overflow-x: auto;

}


.blog-detail-table {

    width: 100%;

    min-width: 650px;

    border-collapse: collapse;

}


.blog-detail-table th {

    padding: 14px 16px;

    background-color: var(--color-primary);

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    text-align: left;

}


.blog-detail-table td {

    padding: 13px 16px;

    border: 1px solid #e4e4e4;

    color: #555555;

    font-size: 14px;

    line-height: 1.5;

    vertical-align: top;

}


.blog-detail-table tbody tr:nth-child(even) td {

    background-color: #f8fafa;

}


/* ============================================================
   FAQ SECTION
============================================================ */

.blog-detail-faq {

    margin-top: 55px;

}


.blog-faq-item {

    border-bottom: 1px solid #e5e5e5;

}


.blog-faq-question {

    width: 100%;

    padding: 18px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: none;

    background-color: transparent;

    color: var(--color-text);

    font-size: 16px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

}


.blog-faq-question i {

    color: var(--color-primary);

    flex-shrink: 0;

}


.blog-faq-answer {

    padding: 0 35px 18px 0;

}


.blog-faq-answer p {

    margin: 0;

    color: #666666;

    font-size: 15px;

    line-height: 1.7;

}


/* ============================================================
   CONCLUSION
============================================================ */

.blog-detail-conclusion {

    margin-top: 55px;

}


.blog-detail-final-image {

    margin-top: 30px;

}


.blog-detail-final-image img {

    width: 100%;

    display: block;

    border-radius: 8px;

}


.blog-detail-final-image figcaption {

    margin-top: 10px;

    color: #777777;

    font-size: 13px;

    text-align: center;

    font-style: italic;

}


/* ============================================================
   AUTHOR SECTION
   ------------------------------------------------------------
   Contains:
   - Author image
   - Author name
   - Author bio
   - Instagram
   - LinkedIn
   - Facebook
============================================================ */

.blog-detail-author {

    display: flex;

    align-items: flex-start;

    gap: 22px;

    margin-top: 55px;

    padding: 28px;

    background-color: #f8fafa;

    border: 1px solid #e3e3e3;

    border-radius: 8px;

}


.blog-detail-author-image {

    flex-shrink: 0;

}


.blog-detail-author-image img {

    width: 90px;

    height: 90px;

    object-fit: cover;

    border-radius: 50%;

}


.blog-detail-author-content {

    flex: 1;

}


.blog-detail-author-content > span {

    display: block;

    margin-bottom: 3px;

    color: #888888;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .5px;

}


.blog-detail-author-content h3 {

    margin: 0 0 9px;

    color: var(--color-text);

    font-size: 22px;

    font-weight: 600;

}


.blog-detail-author-content p {

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;

}


/* Author social icons */

.blog-detail-author-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 17px;

}


.blog-detail-author-social a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background-color: var(--color-primary);

    color: #ffffff !important;

    font-size: 14px;

    text-decoration: none;

    transition:
        background-color .2s ease,
        transform .2s ease;

}


.blog-detail-author-social a:hover {

    background-color: #666666;

    color: #ffffff !important;

    transform: translateY(-2px);

}


/* ============================================================
   PREVIOUS / NEXT POST
============================================================ */

.blog-detail-post-navigation {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 40px;

    padding-top: 30px;

    border-top: 1px solid #eeeeee;

}


.blog-detail-navigation-link {

    display: flex;

    flex-direction: column;

    gap: 6px;

    color: var(--color-text);

    text-decoration: none;

}


.blog-detail-navigation-link span {

    color: var(--color-primary);

    font-size: 13px;

}


.blog-detail-navigation-link strong {

    color: var(--color-text);

    font-size: 15px;

    line-height: 1.45;

}


.blog-detail-navigation-link:hover strong {

    color: var(--color-primary);

}


/* ============================================================
   RELATED POSTS
============================================================ */

.blog-detail-related {

    margin-top: 55px;

}


.blog-related-card {

    display: block;

    height: 100%;

    overflow: hidden;

    border: 1px solid #e5e5e5;

    border-radius: 8px;

    background-color: #ffffff;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.blog-related-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.07);

}


.blog-related-card > img {

    width: 100%;

    height: 170px;

    display: block;

    object-fit: cover;

}


.blog-related-content {

    padding: 16px;

}


.blog-related-content span {

    display: block;

    margin-bottom: 6px;

    color: var(--color-primary);

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

}


.blog-related-content h3 {

    margin: 0;

    color: var(--color-text);

    font-size: 16px;

    line-height: 1.45;

}


/* ============================================================
   COMMENTS SECTION
   ------------------------------------------------------------
   Contains:
   - Comment textarea
   - Name
   - Email
   - Website
   - Post Comment button
============================================================ */

.blog-detail-comments {

    margin-top: 55px;

    padding-top: 35px;

    border-top: 1px solid #eeeeee;

}


.blog-comments-note {

    margin: -10px 0 25px;

    color: #888888;

    font-size: 14px;

}


.blog-comment-form label {

    display: block;

    margin-bottom: 7px;

    color: var(--color-text);

    font-size: 14px;

    font-weight: 500;

}


.blog-comment-form .form-control {

    min-height: 47px;

    border: 1px solid #dddddd;

    border-radius: 4px;

    color: #444444;

    font-size: 14px;

    box-shadow: none;

}


.blog-comment-form textarea.form-control {

    min-height: 145px;

    resize: vertical;

}


.blog-comment-form .form-control:focus {

    border-color: var(--color-primary);

    box-shadow:
        0 0 0 2px rgba(45, 186, 182, 0.12);

}


.blog-post-comment-btn {

    margin-top: 22px;

    padding: 12px 25px;

    border: none;

    border-radius: 4px;

    background-color: var(--color-primary);

    color: #ffffff;

    font-size: 15px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease;

}


.blog-post-comment-btn:hover {

    background-color: #666666;

    color: #ffffff;

}


/* =====================================================
   BLOG DETAIL SIDEBAR
===================================================== */

.blog-detail-sidebar {
    position: sticky;
    top: 95px;
}


/* White sidebar boxes */

.blog-sidebar-box {
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}


/* =====================================================
   SEARCH
===================================================== */

.blog-sidebar-search-input {
    position: relative;
}

.blog-sidebar-search-input input {
    width: 100%;
    height: 42px;
    padding: 8px 40px 8px 12px;
    border: 1px solid #ddd;
    font-size: 13px;
    outline: none;
}

.blog-sidebar-search-input button {
    position: absolute;
    top: 0;
    right: 0;

    width: 40px;
    height: 42px;

    border: 0;
    background: transparent;
    color: var(--color-text);
}


/* =====================================================
   CATEGORY LINKS
===================================================== */

.blog-sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar-categories a {
    color: var(--color-primary) !important;
    font-size: 13px;
    text-decoration: none;
}

.blog-sidebar-categories a:hover {
    color: #666 !important;
}


/* =====================================================
   SPACE BEFORE FORM
===================================================== */

.blog-sidebar-spacer {
    height: 20px;
}


/* =====================================================
   TRAVEL ENQUIRY FORM
===================================================== */

.blog-sidebar-form {
    padding: 0 !important;
    margin-top: 40px;
}

.sidebar-form-group {
    margin-bottom: 16px;
}

.sidebar-form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
}

.sidebar-form-group label span {
    color: #e53935;
}

.sidebar-form-group input,
.sidebar-form-group select {
    width: 100%;
    height: 42px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    outline: none;
}

.sidebar-form-submit {
    padding: 12px 30px;
    border: 0;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.sidebar-form-submit:hover {
    background: #666;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991.98px) {

    .blog-detail-sidebar {
        position: static;
        margin-top: 25px;
    }

}


/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 991.98px) {

    .blog-detail-header {

        padding-top: 120px;

    }


    .blog-detail-title {

        font-size: 38px;

    }


    .blog-detail-sidebar {

        position: static;

        margin-top: 10px;

    }

}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 767.98px) {

    .blog-detail-header {

        padding: 110px 20px 45px;

    }


    .blog-detail-title {
        font-size: 34px;
    }


    .blog-detail-section {

        padding-top: 40px;

    }


    .blog-detail-heading {
        font-size: 26px;
    }


    .blog-detail-article > p {

        font-size: 16px;

        line-height: 1.75;

    }


    .blog-detail-post-navigation {

        grid-template-columns: 1fr;

    }


    .blog-detail-navigation-link.text-end {

        text-align: left !important;

    }

}


/* ============================================================
   RESPONSIVE — SMALL MOBILE
============================================================ */

@media (max-width: 575.98px) {

    .blog-detail-header {

        padding: 100px 15px 40px;

    }


    .blog-detail-title {

        font-size: 27px;

    }


    .blog-detail-meta {

        flex-direction: column;

        gap: 7px;

    }


    .blog-detail-section {

        padding: 30px 15px 55px;

    }


    .blog-detail-heading {

        font-size: 23px;

    }


    .blog-detail-quick-answer {

        padding: 17px;

        font-size: 15px;

    }


    .blog-detail-author {

        flex-direction: column;

        padding: 20px;

    }


    .blog-detail-author-image img {

        width: 75px;

        height: 75px;

    }


    .blog-detail-author-social {

        margin-top: 14px;

    }


    .blog-detail-sidebar {

        margin-top: 25px;

    }


    .blog-sidebar-section {

        padding: 20px;

    }


    .blog-detail-table {

        min-width: 600px;

    }


    .blog-post-comment-btn {

        width: 100%;

    }

}