@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* theme color  */

:root {
    --primary-color: #1757A8;
    --primary-dark: #114b97;
    --secondary-color: #EF3735;
    --secondary-dark: #d43532;
    --white-color: #fff;
}

/* font colors  */

:root {
    --gray-font: rgb(145, 145, 145);
    --white-font: #fff;
    --dark-font: #1b1b1b;
    --light-font: #e6e6e6;
}

/* background color  */

:root {
    --light-back: #fff;
    --gray-back: #F2F3F8;
}

* {
    font-family: "Poppins", sans-serif;
    color: var(--dark-font);
}

/******************* global component styling *************************** */

.heading-1 {
    font-size: 47px;
    font-weight: 700;
    line-height: 57px;
}

.heading-2 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 800;
}

.heading-3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

.tagline {
    font-size: 19px;
    line-height: 29px;
}

.para {
    font-size: 16px;
    line-height: 26px;
}

.section {
    padding: 60px 0;
}

.theme-text {
    color: var(--primary-color);
}

.theme-text-2 {
    color: var(--secondary-color);
}

.theme-primary-bg {
    background-color: var(--primary-color);
}
.theme-secondary-bg {
    background-color: var(--secondary-color);
}


.theme-dark-btn {
    font-size: 16px;
    text-decoration: none;
    padding: 7px 17px;
    color: var(--white-color);
    background-color: var(--primary-color);
    transition: .6s;
    border-radius: 7px;
    border: none;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.226);
}

.theme-dark-btn:hover {
    background-color: var(--primary-dark);
}

.theme-dark-btn-2 {
    font-size: 16px;
    text-decoration: none;
    padding: 7px 17px;
    color: var(--white-color);
    background-color: var(--secondary-color);
    transition: .6s;
    border-radius: 7px;
    border: none;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.226);
}

.theme-dark-btn-2:hover {
    background-color: var(--secondary-dark);
}

.theme-light-bg {
    background-color: var(--gray-back);
}

.theme-check-list {
    list-style: none;
    padding-left: 0;
}

.theme-check-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 16px;
    line-height: 26px;
}

.theme-check-list li::before {
    content: "\F270";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
}

.secondary-text {
    color: var(--secondary-color);
}


.corner-effect {
    position: relative;
    z-index: 1;
    /* Ensure content has a higher z-index than the pseudo-elements */
}

/* Top-right diamond */
.corner-effect::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    /* Dark navy color */
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}

/* Bottom-left diamond */
.corner-effect::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    /* Dark navy color */
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}



/***************** navigation bar styling  *****************/
/* Header styling */

.navbar {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
}

.navbar ul.navbar-nav {
    gap: 8px;
}

/* Social icons styling */
.header .social-icons a {
    font-size: 1.2rem;
}

/* Navbar styling */
.navbar-nav .nav-link {
    color: #fff !important;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 4px;
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

/* Positioning the Book Online button */
.navbar .btn-primary {
    margin-right: auto;
    /* Push the button to the left */
}

.header .social-icons i {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: bold;
    transition: .6s;
}

.header .social-icons i:hover {
    color: var(--secondary-color);
}

.navbar .navbar-toggler {
    border: 2px solid var(--light-font);
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}


/* *********************** Hero Section Styling *************************** */

.hero-section {
    padding: 40px 0;
}

.filter-buttons .btn {
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.678);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.678);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-buttons .btn.active {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.678);
}

.btn-group.filter-buttons .btn {
    color: white;
    border-color: white;
}

input#searchQuery {
    background: transparent;
    border-radius: 0;
    color: #ffffffb0;
    border: none;
    border-bottom: 2px solid white;
}


input#searchQuery:focus {
    box-shadow: none;
}

input#searchQuery::placeholder {
    color: #ffffffb0;
}


.trips-section .card-img-top {
    width: 100%;
    object-fit: fill;
    height: 380px;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: white;
    background-color: #007bff;
    border-radius: 50%;
    padding: 8px;
    margin: 5px;
}

/* Remove bullet points */
.owl-theme .owl-dots {
    display: none;
}

.no-trips-message {
    text-align: center;
    font-size: 1.5rem;
    color: #6c757d;
    padding: 40px;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-top: 40px;
}

/* Initial state: hidden with no visibility */
.owl-carousel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    /* Animation duration */
    -webkit-transition: opacity 1s ease;
    /* Webkit compatibility */
}

/* Final state: visible with opacity animation */
.owl-carousel.delayed-visible {
    visibility: visible;
    opacity: 1;
}

.trip-card {
    border-radius: 25px;
    background-color: var(--secondary-color) !important;
}

.trip-card .card-body {
    padding: 10px !important;
}

.trip-card img {
    border-radius: 20px !important;
}


/* **************** about use section ****************** */

.review-vid-wrapper {
    position: relative;
    cursor: pointer;
}

.review-vid-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 3px 5px 7px rgba(0, 0, 0, 0.418);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--white-color);
    text-shadow: 3px 5px 8px black;
}

/******************** video section  ********************/


.video-grid-sec h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 500px;
    /* Set a fixed height for consistent layout */
}

.video-thumbnail,
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio and cover entire container */
    display: block;
}

.video {
    display: none;
}

.controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-pause {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 3em;
    color: white;
    transition: opacity 0.3s;
}

.play-pause i {
    color: white;
    font-size: 60px;
    text-shadow: 3px 4px 5px black;
}

.video.playing+.controls .play-pause {
    opacity: 0.4;
}




/* ************************* review tabs styling *********************** */

section.review-sec-tab.section .nav-link.active {
    background: var(--primary-color);
}

section.review-sec-tab.section .nav-link.active span {
    color: white;
}


section.review-sec-tab.section .tabs {
    padding: 20px;
    border: 2px solid lightgray;
    border-radius: 18px;
    box-shadow: 0px 1px 26px #00000024;
    margin-top: 40px;
}

section.review-sec-tab.section .tabs iframe {
    border-radius: 18px;
}

section.review-sec-tab.section .nav-link img {
    padding: 2px;
    border: 2px dashed var(--secondary-color);
}

section.review-sec-tab.section .nav-link.active img {
    border-color: white;
}


div#hide-marketing {
    width: 300px;
    height: 40px;
    background-color: white !important;
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

div#fb-review .SZtf {
    display: none;
}

/* bus section styling start  */

.bus-sec .bus-img img {
    border-radius: 20px;
    box-shadow: 16px -16px var(--secondary-color);
    border: 12px solid var(--white-color);
    border-left: none;
    border-bottom: none;
}



/******************* bus services ection styling  ************************/

.service-sec-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    cursor: pointer;
}

.service-sec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-sec-icon {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 3px 4px 5px lightgray;
}

.service-sec-icon i {
    color: white;
}

.service-sec-body {
    flex-grow: 1;
}

.service-sec-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-sec-text {
    color: #555;
}


.insta-sec {
    background-image: url("../images/insta-bg.JPG");
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}


/* ******************** About Page Styling *********************** */

.abt-info-sec .carousel-item img {

    /* height: 400px; */
    object-fit: contain;
}

.abt-info-sec .carousel-indicators li {
    background-color: var(--secondary-color);
    /* Customize indicator color */
}

.abt-info-sec .carousel-control-prev-icon,
.abt-info-sec .carousel-control-next-icon {
    background-color: var(--secondary-color);
    /* Customize arrow color */
}

/* ********************** Reviews section ***************************** */


/* reviews section styling  */

.custom-reviews .review-card {
    background: #f2f3f8;
    border-radius: 8px;
    padding: 22px;
    text-align: left;
    height: 100%;
}

.custom-reviews .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-reviews .review-name {
    font-weight: bold;
}

.custom-reviews .review-date {
    font-size: 0.85rem;
    color: #666;
}

.custom-reviews .review-content .stars {
    font-size: 2rem;
    /* Increased star size */
    color: #ffc107;
    margin-bottom: 8px;
}

.custom-reviews .read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.custom-reviews .modal-header {
    border-bottom: none;
}

.custom-reviews .modal-content {
    border-radius: 10px;
    padding: 20px;
}

.custom-reviews .modal-stars {
    font-size: 1.5rem;
    color: #ffc107;
}

.review-main-header .stars {
    color: #f8bc07;
    line-height: 1;
    font-size: 36px !important;
    line-height: 1;
}

.custom-reviews .modal-body .modal-stars {
    font-size: 33px !important;
    line-height: 1;
}

.custom-reviews .modal-body {
    padding-top: 0 !important;
}

p#modalReviewText {
    margin-top: 20px;
}

/* ******************* about Hero Section ************************ */

.abt-hero-section .c-item {
    height: 403px;
    position: relative;
    /* Position relative to allow absolute positioning of overlay */
}

.abt-hero-section .c-img {
    height: 100%;
    object-fit: cover;
}

/* Add this new overlay class */
.abt-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity for darkness */
    z-index: 1;
    /* Position it below the text */
}

.abt-hero-section .slide-content {
    position: relative;
    /* Position relative to keep it above the overlay */
    padding-top: 8%;
    z-index: 2;
    /* Make sure content appears above overlay */
}

.abt-hero-section .slide-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 3px 4px black;

}

.abt-hero-section .slide-content h1 {
    font-size: 55px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 3px 4px black;
}

.abt-hero-section .slide-content p {
    font-size: 22px;
    color: white;
    font-weight: 400;
}

.ethics-card {
    text-align: center;
    padding: 20px;
    background-color: var(--gray-back);
    border: 2px solid lightgray;
    box-shadow: 2px 3px 8px #0000003b;
    height: 100%;
}

.ethics-card img {
    width: 104px;
    margin-bottom: 20px;
}


.ethics-card h3 {
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
}

.ethics-card p {
    font-size: 16px;
    line-height: 26px;
}

section.section.ethics-section .corner-effect::before,
section.section.ethics-section .corner-effect::after {
    background-color: #eaebf1 !important;
}


/* ***************** Contact Styling ********************/

.contact-page-sec .contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    height: 100%;
}

.contact-page-sec .contact-info-icon {
    margin-bottom: 15px;
}

.contact-page-sec .contact-info-item {
    background: var(--primary-color);
    padding: 30px 10px;
    height: 100% !important;
    border-radius: 20px;
    border: 4px solid var(--primary-color);
}

.contact-page-sec .contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0px;
}

.contact-page-sec .contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-sec .contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-sec .contact-page-form.contact-form input[type="submit"] {
    background: rgb(7, 28, 52);
    width: 150px;
    border-color: rgb(7, 28, 52);
}

.contact-page-sec .contact-info-icon i {
    font-size: 48px;
    color: white;
}

.contact-page-sec .contact-info-text p {
    margin-bottom: 0px;
}

.contact-page-sec .contact-info-text h2 {
    color: rgb(255, 255, 255);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-page-sec .contact-info-text span {
    color: rgb(229, 229, 229);
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

.contact-page-sec .contact-page-form input {
    background: none 0px 0px repeat scroll rgb(249, 249, 249);
    border: 1px solid rgb(249, 249, 249);
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-sec .contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
}

.contact-page-sec .single-input-field textarea {
    background: none 0px 0px repeat scroll rgb(249, 249, 249);
    border: 1px solid rgb(249, 249, 249);
    width: 100%;
    height: 163px;
    padding: 12px 16px;
    border-radius: 4px;
}

.contact-page-sec .single-input-field h4 {
    color: rgb(70, 70, 70);
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-sec .contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-sec .contact-page-map {
    margin-top: 36px;
}

.contact-page-sec .contact-page-form form {
    padding: 20px 15px 0px;
}


/* footer styling  */

.footer-section a,
.footer-section a:active,
.footer-section a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section img {
    max-width: 100%;
    height: auto;
    width: 188px;
    filter: brightness(0) invert(1);
}


.footer-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.footer-section:before {
    content: '';
    position: absolute;
    top: -146%;
    left: -18%;
    width: 44%;
    height: 257%;
    transform: rotate(54deg);
    background-color: var(--primary-dark);
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    -o-transform: rotate(54deg);
    z-index: -10;
}

.footer-section:after {
    position: absolute;
    content: '';
    background-color: var(--primary-dark);
    top: -24%;
    right: 4%;
    width: 26%;
    height: 264%;
    transform: rotate(44deg);
    -webkit-transform: rotate(44deg);
    -moz-transform: rotate(44deg);
    -ms-transform: rotate(44deg);
    -o-transform: rotate(44deg);
    z-index: -10;
}

.footer-section .footer-top {
    padding-top: 60px;
    padding-bottom: 50px;
}

.footer-section .footer-top p,
.footer-section .company-footer-contact-list li {
    color: #ffffff;
}

.footer-section .company-footer-contact-list {
    margin-top: 10px;
}

.footer-section .company-footer-contact-list li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.footer-section .company-footer-contact-list li+li {
    margin-top: 5px;
}

.footer-section .company-footer-contact-list li i {
    margin-right: 10px;
    font-size: 20px;
    display: inline-block;
}

.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 188px;
}

.widget-title {
    text-transform: capitalize;
}

.footer-top .widget-title {
    color: #ffffff;
    margin: 25px 0;
}

.courses-link-list li+li {
    margin-top: 10px;
}

.courses-link-list li a {
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--para-font);
    font-weight: 400;
}

.courses-link-list li a:hover {
    color: var(--secondary-color);
}

.courses-link-list li i {
    margin-right: 5px;
}

.footer-top .small-post-title a {
    font-family: var(--para-font);
    color: #ffffff;
    font-weight: 400;
}

.small-post-item .post-date {
    color: var(--white-font);
    margin-bottom: 3px;
    font-family: var(--para-font);
    font-weight: 400;
}

.small-post-list li+li {
    margin-top: 30px;
}

.news-letter-form {
    margin-top: 15px;
}

.news-letter-form input {
    width: 100%;
    padding: 12px 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
}

.news-letter-form input[type="submit"] {
    width: auto;
    border: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
    padding: 9px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bolx;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: var(--white-font);
    margin-top: 10px;
}

.footer-bottom {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
    color: #ffffff;
}

.copy-right-text a {
    color: var(--white-font);
}

.terms-privacy li+li {
    margin-left: 30px;
}

.terms-privacy li a {
    color: #ffffff;
    position: relative;
}

.terms-privacy li a:after {
    /* position: absolute; */
    /* content: '-'; */
    color: #ffffff;
    display: inline-block;
    top: 0;
    right: -18px;
}

.terms-privacy li+li a:after {
    display: none;
}

.footer-contact .social-icons {
    margin-top: 10px;
}

.footer-contact .social-icons i:hover {
    color: var(--secondary-color);
}

.footer-contact .social-icons i {
    font-size: 25px;
    color: var(--white-font);
}

/* #preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    font-size: 24px;
    font-weight: bold;
    color: #333;
} */


/* ********************** Blog Page Styling *********************** */


section.blogs-sec .blog-card p.blog-cat {
    margin-bottom: 4px;
    display: inline-block;
    padding: 3px 5px;
    background: #c5e9ff;
    font-size: 13px;
    border-radius: 9px;
    line-height: 1rem;
    border: 1px solid lightskyblue;
}

section.blogs-sec .blog-card h2.blog-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

section.blogs-sec .blog-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 2px 2px 4px #00000034;
    border: 2px solid lightgray;
    cursor: pointer;
}

section.blogs-sec .blog-card p.blog-excerpt {
    font-size: 14px;
    line-height: 24px;
}

.blog-img img {
    border-radius: 20px;
    box-shadow: 1px 2px 3px #00000042;
}

/* ************************ Blog Hero Section ************************ */

.blog-hero {
    padding: 100px 0 200px 0;
}

section.blog-content-section h3.heading-3 strong,
section.blog-content-section h3.heading-3 * {
    color: var(--primary-color) !important;
}

.content-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0px 0px 40px #0000003d;
    margin-top: -160px;
}

.content-card p,
.content-card li {
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    line-height: 32px;
}

.content-card p strong,
.content-card li strong {
    font-weight: 600 !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.social-icons a.facebook {
    background-color: #3b5998;
}

.social-icons a.facebook:hover {
    background-color: #2d4373;
}

.social-icons a.x {
    background-color: #1da1f2;
}

.social-icons a.x:hover {
    background-color: #0c85d0;
}

.blog-content-section.theme-light-bg .content-card h3.heading-3 {
    color: var(--primary-color) !important;
}

/* responsive styling  */

@media (max-width: 1024px) {
    .slide-content h3 {
        font-size: 20px;
    }

    .slide-content h1 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .slide-content {
        padding-top: 13%;
    }

    section#hero-section {
        padding-top: 65px !important;
    }
}

@media (max-width: 991px) {
    .header .social-icons {
        order: 2;
        margin-top: 1rem;
        justify-content: end;
        width: 100%;
    }

    .header {
        display: none;
    }

    .navbar {
        flex-wrap: wrap;
        /* Ensure navbar items wrap on smaller screens */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .navbar .navbar-nav {
        margin-top: 27px;
    }

    .header .social-icons i {
        font-size: 18px;
        color: var(--primary-color);
        font-weight: bold;
        transition: .6s;
    }

    .header .logo img {
        width: 120px;
    }

    .slide-content {
        padding-top: 19%;
    }

    section.about-sec img {
        margin-top: 35px;
    }

    div#review-tabContent {
        padding-top: 30px;
    }

    .section {
        padding: 30px 0;
    }

    .bus-img {
        padding: 30px !important;
    }

    section.about-sec.section {
        /* padding: 100px 0 !important; */
    }

    .abt-hero-section .slide-content h1 {
        font-size: 37px;
    }

    .abt-hero-section .slide-content {
        padding-top: 18%;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 30px;
    }

    .abt-hero-section .slide-content p {
        font-size: 16px;
    }

    div#gallerySlider,
    div#customGallerySlider {
        margin-top: 30px;
    }

    section.section.ethics-section .row {
        gap: 30px;
    }

    .review-main-header {
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-sec .col-md-4 {
        margin-bottom: 30px;
    }

    .hero-section .btn-group.filter-buttons {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        text-align: center;
        display: flex;
        margin-bottom: 12px;
    }
}

@media (max-width: 800px) {}

@media (max-width: 768px) {}

@media (max-width: 690px) {
    .abt-hero-section .slide-content {
        padding-top: 28%;
    }

    .blog-hero {
        padding: 130px 0 156px 0;
    }

    .content-card p,
    .content-card li {
        font-size: 16px;
        line-height: 30px;
    }

    .content-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .slide-content h3 {
        font-size: 17px;
    }

    .slide-content h1 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-content {
        padding-top: 29%;
    }

    .para {
        font-size: 14px;
    }

    .heading-2 {
        font-size: 26px;
        line-height: 36px;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 27px;
    }

    .abt-hero-section .slide-content {
        padding-top: 34%;
    }

    br {
        display: none;
    }
}

@media (max-width: 414px) {
    .abt-hero-section .c-item {
        height: 350px;
        position: relative;
    }

    .abt-hero-section .slide-content {
        padding-top: 29% !important;
    }
}

@media (max-width: 375px) {
    .abt-hero-section .slide-content {
        padding-top: 42%;
    }
}

@media (max-width: 360px) {}