body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.container {
    max-width: 1140px;
}
select,
textarea,
input {
    font-size: 16px;
}
.form-control:focus {
    box-shadow: none;
}
.form-control {
    font-size: 16px;
}
.table-border-0,
.table-border-0 tr,
.table-border-0 tr th,
.table-border-0 tr td {
    border: none!important;
}
.tar {
    text-align: right;
}
.w-100-p {width: 100% !important;}
.w-30-p {width: 30% !important;}
.w-40-p {width: 40% !important;}
.w-60-p {width: 60% !important;}
.w-70-p {width: 70% !important;}
.w-100 {width: 100px !important;}
.w-150 {width: 150px !important;}
.w-200 {width: 200px !important;}
.w-300 {width: 300px !important;}
.w-400 {width: 400px !important;}

.h-50 {height: 50px !important;}
.h-60 {height: 60px !important;}
.h-70 {height: 70px !important;}
.h-80 {height: 80px !important;}
.h-100 {height: 100px !important;}
.h-120 {height: 120px !important;}
.h-150 {height: 150px !important;}
.h-180 {height: 180px !important;}
.h-200 {height: 200px !important;}
.h-220 {height: 220px !important;}
.h-250 {height: 250px !important;}
.h-280 {height: 280px !important;}
.h-300 {height: 200px !important;}

.btn:first-child:hover,
:not(.btn-check) + .btn:hover {
    color: #fff;
    background-color: #2d2d2d;
    border-color: #2d2d2d;
}

.badge.bg-success {
    background: #11af33 !important;
}
.badge.bg-danger {
    background: #ff3c23 !important;
}
.clearfix {
    width: 100%;
    clear: both;
}
.bg-website {
    background: #f09c1c !important;
    border: 0;
}
.ml-auto {
    margin-left: auto !important;
}
a {
    transition: 0.35s;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
p {
    font-weight: 400;
}
.pagi {
    text-align: left;
}
.pagi nav {
    display: inline-block;
}
.bg_f3f3f3 {
    background: #f3f3f3;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #f09c1c;
}

/* Enhanced Header Area Styling */
.navbar-area {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-secondary, #2c2c2c) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.navbar-area .main-nav {
    background: transparent;
    position: relative;
    z-index: 10;
}

.navbar-area .main-nav .navbar-brand img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar-area .main-nav .navbar-brand:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

/* Sticky Header Enhancement */
.navbar-area.sticky {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-secondary, #2c2c2c) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 3px 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-area.sticky .main-nav .navbar-nav .nav-link {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #2c3e50;
}

.navbar-area.sticky .main-nav .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    color: #000000;
}

/* Modern Frontend Navigation Menu Styling */
.navbar-area .main-nav .navbar-nav .nav-link {
    padding: 4px 10px !important;
    margin: 0 2px;
    border-radius: 12px;
    background: var(--theme-primary, #f09c1c);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 13px;
}

/* Enhanced Active State */
.navbar-area .main-nav .navbar-nav .nav-item.active .nav-link,
.navbar-area .main-nav .navbar-nav .nav-link.active {
    background: var(--theme-secondary, #2c2c2c) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-2px) scale(1.02) !important;
    animation: activePulse 2s infinite !important;
}

/* Sticky Active State Override */
.navbar-area.sticky .main-nav .navbar-nav .nav-item.active .nav-link,
.navbar-area.sticky .main-nav .navbar-nav .nav-link.active {
    background: var(--theme-primary, #f09c1c) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Modern Active Animation */
@keyframes activePulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
}

/* Active State Icon Indicator */
.navbar-area .main-nav .navbar-nav .nav-item.active .nav-link::before,
.navbar-area .main-nav .navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
    animation: indicatorBounce 2s infinite;
}

@keyframes indicatorBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.navbar-area .main-nav .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.navbar-area .main-nav .navbar-nav .nav-link:hover {
    background: var(--theme-primary-dark, #f09c1cdd);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Banner Section Styling */
.page-top {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-secondary, #2c2c2c) 50%, var(--theme-accent, #ff6b6b) 100%) !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.page-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.page-top .container {
    position: relative;
    z-index: 2;
}

.page-top h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: left !important;
}

.page-top .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 12px 24px;
    margin: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    justify-content: flex-start !important;
}

.page-top .breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.page-top .breadcrumb:hover::before {
    left: 100%;
}

.page-top .breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.page-top .breadcrumb .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-top .breadcrumb .breadcrumb-item a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transform: translateY(-1px);
    display: inline-block;
}

.page-top .breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-top .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 18px;
}

/* Hide social media from breadcrumb banners */
.page-top .banner-social {
    display: none;
}

.navbar-area .main-nav .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.navbar-area .main-nav .navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-area .main-nav .navbar-nav .nav-item {
    position: relative;
}

.navbar-area .main-nav .navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-primary, #f09c1c), var(--theme-secondary, #2c2c2c));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-area .main-nav .navbar-nav .nav-item.active::after {
    width: 80%;
}

/* Mobile navigation improvements */
.navbar-area .mobile-nav .mean-container .mean-nav ul li a {
    padding: 12px 20px !important;
    margin: 2px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--theme-secondary, #2c2c2c);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.navbar-area .mobile-nav .mean-container .mean-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--theme-primary, #f09c1c);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-area .mobile-nav .mean-container .mean-nav ul li.active a {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-secondary, #2c2c2c) 100%);
    color: #ffffff;
    border-color: var(--theme-primary, #f09c1c);
}
.primary-color {
    color: #f09c1c;
}
.primary-color:hover {
    color: #333;
}
select {
    width: 100% !important;
}

.button-style-1 a {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #f09c1c;
    color: #fff;
    text-decoration: none;
    border: 1px solid #f09c1c;
    border-radius: 6px;
    padding: 14px 45px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.button-style-1 a:hover {
    transition: all 0.3s;
    background: #b6d1fc;
    border: 1px solid #b6d1fc;
    color: #f09c1c;
}
.button-style-2 a {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #f09c1c;
    color: #fff;
    text-decoration: none;
    border: 1px solid #f09c1c;
    border-radius: 6px;
    padding: 8px 35px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.button-style-2 a:hover {
    transition: all 0.3s;
    background: transparent;
    border: 1px solid #f09c1c;
    color: #f09c1c;
}
.see-more {
    text-align: center;
}
.see-more .button-style-1 {
    display: inline-block;
}
.package .item .text .review {
    margin-bottom: 15px;
    font-size: 14px;
    border-bottom: 1px dashed #b7b7b7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.package .item .text .review i {
    color: #f4c150;
}
/* Modern Glassmorphism Topbar with Gradient */
.top {
    min-height: 55px;
    color: #fff;
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-secondary, #2c2c2c) 100%) !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.top .container {
    position: relative;
    z-index: 2;
}

.top .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 5px 0;
}

.top .info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.top .info-item i {
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.top .info-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.top .info-item span,
.top .info-item a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top .info-item a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.top .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top .social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top .social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Glassmorphism Topbar Enhancement */
.top.glass-topbar {
    background: var(--theme-primary, #f09c1c) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

.top.glass-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.top ul {
    margin-bottom: 0;
    padding-left: 0;
}
.top ul li {
    list-style-type: none;
    line-height: 38px;
    float: left;
    margin-right: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}
.top ul li i {
    margin-right: 6px;
}
.top ul li a {
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 15;
    pointer-events: auto;
}
.top ul li a:hover {
    color: var(--theme-accent, #ffffff);
    opacity: 0.85;
}
.top ul.right {
    float: right;
    position: relative;
    z-index: 10;
}
.top ul.right li {
    margin-right: 0;
    padding-left: 15px;
    margin-left: 10px;
}
.top ul.right li:before {
    content: "|";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.top ul.right li:first-child:before {
    display: none;
}

/* Topbar Social Media Icons */
.topbar-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.topbar-social li {
    list-style: none;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

.topbar-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-social li a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.center-side {
    text-align: center;
}

@media (max-width: 991px) {
    .top {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .top ul li {
        line-height: 32px;
    }
    .top ul.right {
        padding-top: 0;
    }
    .top .left-side,
    .top .left-side ul {
        width: 100%;
    }
    .top .left-side ul {
        text-align: center;
    }
    .top .left-side ul li {
        float: none;
        display: inline-block;
        margin-left: 8px;
        margin-right: 8px;
    }
    .top .right-side,
    .top .right-side ul {
        width: 100%;
    }
    .top .right-side ul {
        text-align: center;
    }
    .top .right-side ul li {
        float: none;
        display: inline-block;
    }
    .top ul.right {
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .top.glass-topbar {
        padding: 10px 0;
    }
    .top ul {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    .top ul li {
        float: none;
        display: inline-block;
        line-height: 28px;
        margin-right: 10px;
        padding-left: 0;
        font-size: 13px;
    }
    .top ul.right {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        padding-top: 5px;
    }
    .top ul.right li {
        float: none;
        display: inline-block;
    }
    .top ul.right li:first-child {
        margin-left: 0;
        padding-left: 0;
    }
    .top ul.right li:before {
        display: none;
    }
    .topbar-social {
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .topbar-social li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .top ul li {
        font-size: 12px;
        margin-right: 5px;
    }
    .top ul li i {
        margin-right: 4px;
    }
}


/* Heading Area */
.main-nav {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    min-height: 30px;
    text-align: center;
}
.main-nav .navbar {
    padding-left: 0;
    padding-right: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-nav nav .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.main-nav nav .navbar-nav .nav-item {
    padding-top: 3px;
    padding-bottom: 3px;
    display: flex;
    align-items: center;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    top: 32px !important;
    background: #ffffff !important;
    padding: 0 !important;
    border: 2px solid #f5f5f5 !important;
    border-radius: 0 !important;
    width: 200px !important;
    z-index: 999999 !important;
}
.main-nav nav .navbar-nav .nav-item a {
    color: #333;
    font-weight: 500;
    text-transform: none !important;
    font-size: 14px !important;
    position: relative;
    padding: 6px 12px !important;
}
.main-nav nav .navbar-nav .nav-item.active a {
    color: #f09c1c;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    color: #444;
    border-bottom: 1px solid #dbdbdb;
}
.mobile-nav.mean-container .mean-nav ul li a.active,
.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active,
.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav
    nav
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #f09c1c;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: #f09c1c !important;
}
.main-nav img {
    height: 10px;
    vertical-align: middle;
}
.mobile-nav img {
    height: 10px;
    vertical-align: middle;
}
.mean-container .mean-bar {
    background-color: #fff;
    height: 18px;
    z-index: 999999 !important;
}
.mean-container .logo {
    top: 1px;
}
.mean-container img {
    height: 10px;
    vertical-align: middle;
}
.mean-container a.meanmenu-reveal span {
    background: #f09c1c;
}
.mean-container a.meanmenu-reveal {
    color: #f09c1c;
}

/* Scroll to Top */
.scroll-top {
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    background: #f09c1c;
    color: #fff;
    opacity: 0.7;
    z-index: 999999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scroll-top:hover {
    opacity: 1;
    color: #fff;
    background: #313131;
}


/* Home Slider */
.slider .item {
    position: relative;
    height: 620px;
    transition: all 0.5s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.slider .item .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #454545;
}
.slider .text {
	position: relative;
	z-index: 99999;
    height: 100%;
}
.slider .text .container,
.slider .text .row {
    height: 100%;
}
.slider .text-wrapper {
    height: 100%;
    position: relative;
    display: table;
}
.slider .text-content {
    display: table-cell;
    vertical-align: middle;
    height: auto;
}
.slider .text h2 {
    font-size: 56px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
}
.slider .text p {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.7;
}
.slide-carousel.owl-carousel .owl-nav .owl-prev,
.slide-carousel.owl-carousel .owl-nav .owl-next {
	position: absolute;
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 45px;
    font-size: 18px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.slide-carousel.owl-carousel .owl-nav .owl-prev {
	top: 47%;
    left: 0;
    margin-left: 40px;
}
.slide-carousel.owl-carousel .owl-nav .owl-next {
    top: 47%;
    right: 0;
    margin-right: 40px
}
.slide-carousel.owl-carousel .owl-nav .owl-prev:hover,
.slide-carousel.owl-carousel .owl-nav .owl-next:hover {
    color: #f09c1c;
    border: 2px solid #f09c1c;
}
@media (max-width: 1310px) {
    .slider .text {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media (max-width: 767px) {
    .slider .item {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 560px) {
    .slider .item {
        height: auto;
    }
    .slider .text-wrapper {
        display: block;
    }
}


.special {
	background: #f2f2f2;
}
.special .left-side {
    height: 100%;
    display: table;
}
.special .left-side .inner {
	padding: 0 30px;
    display: table-cell;
    vertical-align: middle;
}
.special .left-side h3 {
	color: #f09c1c;
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 30px;
}
.special .left-side p {
	color: #333;
	font-size: 15px;
}
.special .left-side .read-more {
	margin-top: 30px;
}
.special .left-side .read-more a {
	border: 0;
	padding: 10px 30px;
	display: inline-block;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 600;
	text-transform: uppercase;
}
.special .left-side .read-more a:hover {
	background: transparent;
	border-color: #fff;
}
.special .right-side {
	width: 100%;
	min-height: 400px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
    border-radius: 6px;
}
.special .right-side .video-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	padding: 24px 18px 18px 28px;
}
.special .right-side .video-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 66px;
	height: 66px;
    background: #f09c1c;
	border-radius: 50%;
	animation: video-pop 1500ms ease-out infinite;
}
.special .right-side .video-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 66px;
	height: 66px;
	background: #f09c1c;
	border-radius: 50%;
	transition: all 200ms;
}
.special .right-side .video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 28px solid #fff;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}
@keyframes video-pop {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
@media only screen and (max-width: 768px) {
	.special .right-side .video-section {
		margin-top: 40px;
	}
    .special .left-side {
        margin-bottom: 60px;
        display: block;
        height: auto;
    }
}



.destination .heading {
    text-align: left;
    margin-bottom: 30px;
}
.destination .heading h2 {
    font-size: 30px;
    font-weight: 700;
}
.destination .heading p {
    color: #696969;
}
.destination .row {
    display: flex;
    flex-wrap: wrap;
}
.destination .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.destination .item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.destination .item .photo {
    overflow: hidden;
    flex-shrink: 0;
    height: 200px;
    position: relative;
}
.destination .item .photo img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: block;
}
.destination .item .text {
    background: #e8e8e8;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}
.destination .item .text h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    width: 100%;
}
.destination .item .text h2 a {
    color: #333;
    display: block;
    padding: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}





.destination-detail .main-item {
    margin-bottom: 30px;
}
.destination-detail .main-item .main-photo {
    margin-bottom: 25px;
}
.destination-detail .main-item .main-photo img {
    width: 100%;
    height: auto;
}
.destination-detail .main-item h2 {
    color: #f09c1c;
    font-weight: 700;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 24px;
}
.destination-detail .summary table tr td:nth-of-type(1) {
    width: 200px;
}
.destination-detail .summary table tr tr,
.destination-detail .summary table tr td {
    border: 1px solid #c7c7c7;
    vertical-align: middle;
}
.destination-detail .summary .price {
    font-size: 30px;
    font-weight: 700;
}
.destination-detail .location-map iframe {
    width: 100%;
    height: 500px;
}
@media (max-width: 991px) {
    .destination-detail .location-map iframe {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .destination-detail .location-map iframe {
        height: 300px;
    }
}
@media (max-width: 575px) {
    .destination-detail .location-map iframe {
        height: 350px;
    }
}


.photo-all .item {
    position: relative;
    margin-bottom: 25px;
}

.photo-all .item-delete {
    margin-bottom: 0px;
}

.photo-all img {
    width: 100%;
    height: auto;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}
.video-all .item {
    position: relative;
    margin-bottom: 25px;
}
.video-all .item-delete {
    margin-bottom: 0px;
}
.video-all img {
    width: 100%;
    height: auto;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
}
.video-all .item .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.video-all .item .icon {
    font-size: 70px;
}
.video-all .item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.3;
    border-radius: 6px;
}
@media only screen and (max-width: 1199px) {
    .photo-all img,
    .video-all img {
        height: 120px;
    }
}
@media only screen and (max-width: 991px) {
    .photo-all img,
    .video-all img {
        height: 260px;
    }
}
@media only screen and (max-width: 767px) {
    .photo-all img,
    .video-all img {
        height: 390px;
    }
}
@media only screen and (max-width: 575px) {
    .photo-all img,
    .video-all img {
        height: 320px;
    }
}
@media only screen and (max-width: 475px) {
    .photo-all img,
    .video-all img {
        height: 280px;
    }
}
@media only screen and (max-width: 400px) {
    .photo-all img,
    .video-all img {
        height: 220px;
    }
}



.package .heading {
    text-align: center;
    margin-bottom: 30px;
}
.package .heading h2 {
    font-size: 30px;
    font-weight: 700;
}
.package .heading p {
    color: #696969;
}
.package .item .photo {
    overflow: hidden;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: relative;
}
.package .item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.package .item .photo .wishlist {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 999;
}
.package .item .photo .wishlist a {
    color: #fff;
    font-size: 30px;   
}
.package .item .text {
    border: 1px solid #d0d0d0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    padding: 15px;
    position: relative;
}
.package .item .text .price {
    position: absolute;
    right: 10px;
    top: -30px;
    background: #ce0d0d;
    color: #fff;
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 18px;
    font-weight: 700;
}
.package .item .text .price del {
    color: #faff5b;
}
.package .item .text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0px;
}
.package .item .text h2 a {
    color: #333;
}
.package .item .text .review {
    margin-bottom: 15px;
    font-size: 14px;
    border-bottom: 1px dashed #b7b7b7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.package .item .text .review i {
    color: #f4c150;
}
.package .item .text .element {
    font-size: 14px;
    color: #696969;
    font-weight: 600;
    margin-bottom: 7px;
    overflow: hidden;
}
.package .item .text .element-left {
    width: 50%;
    float: left;
}
.package .item .text .element-right {
    width: 50%;
    float: right;
    text-align: right;
}
.package .item .text .element i {
    color: #696969;
}
@media (max-width: 1199px) {
    .package .item .photo img {
        height: 220px;
    }
}
@media (max-width: 991px) {
    .package .item .photo img {
        height: 290px;
    }
}
@media (max-width: 767px) {
    .package .item .photo img {
        height: auto;
    }
}



.package-sidebar .widget {
    border: 1px solid #d0d0d0;
    margin-bottom: 25px;
}
.package-sidebar .widget h2 {
    font-size: 18px;
    padding: 15px;
    background: #efefef;
    border-bottom: 1px solid #d0d0d0;
}
.package-sidebar .widget .box {
    padding: 15px;
}
.package-sidebar .widget .box .form-check-review {
    color: #f4c150;
}
.package-sidebar .widget .box .form-check-review-1 {
    color: #000;
}
/* Package Page Navigation Override */
.package .navbar-area .main-nav .navbar-nav .nav-link {
    padding: 4px 10px !important;
    margin: 0 2px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}

/* Modern Package Page Layout */
.package {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.package .container {
    position: relative;
    z-index: 2;
}

/* Package Sidebar Glassmorphism */
.package-sidebar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.package-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
    pointer-events: none;
}

.package-sidebar .widget {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.package-sidebar .widget h2 {
    color: var(--theme-secondary, #2c2c2c);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.package-sidebar .widget .box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
}

.package-sidebar .form-control,
.package-sidebar .form-select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.package-sidebar .form-control:focus,
.package-sidebar .form-select:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--theme-primary, #f09c1c);
    box-shadow: 0 0 15px rgba(var(--theme-primary-rgb, 240, 156, 28), 0.2);
}

/* Modern Package Cards with Enhanced Glassmorphism */
/* Package item styles removed - now using glass-package-card-enhanced in custom.css */

/* Card Loading Animation */
@keyframes cardShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Modern Pagination Styling */
.modern-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pagination-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.pagination-btn,
.pagination-container .pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--theme-primary, #f09c1c);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}

.pagination-btn:hover,
.pagination-container .pagination-btn:hover {
    background: var(--theme-secondary, #2c2c2c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.pagination-btn:disabled,
.pagination-container .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn i,
.pagination-container .pagination-btn i {
    font-size: 12px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number,
.pagination-container .pagination-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination-number:hover,
.pagination-container .pagination-number:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.pagination-number.active,
.pagination-container .pagination-number.active {
    background: var(--theme-primary, #f09c1c);
    border-color: var(--theme-primary, #f09c1c);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(var(--theme-primary-rgb, 240, 156, 28), 0.4);
    animation: pulseActive 2s infinite;
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 16px;
    padding: 0 5px;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        gap: 10px;
        padding: 10px 15px;
    }
    
    .pagination-btn,
    .pagination-container .pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .pagination-btn span,
    .pagination-container .pagination-btn span {
        display: none;
    }
    
    .pagination-number,
    .pagination-container .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .pagination-dots {
        font-size: 14px;
    }
}
/* Package Sidebar Filter Button */
.package-sidebar .filter-button button {
    width: 100%;
    background: var(--theme-primary, #f09c1c);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-sidebar .filter-button button:hover {
    background: var(--theme-secondary, #2c2c2c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.package-sidebar .widget .box ul {
    padding: 0;
    margin: 0;
}
.package-sidebar .widget .box ul li {
    list-style-type: none;
    margin-bottom: 7px;
}
.package-sidebar .widget .box ul li a {
    color: #212529;
}



.package-detail .main-item {
    margin-bottom: 30px;
}
.package-detail .main-item .main-photo {
    margin-bottom: 25px;
}
.package-detail .main-item .main-photo img {
    width: 100%;
    height: auto;
}
.package-detail .main-item h2 {
    color: #f09c1c;
    font-weight: 700;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}
.package-detail .summary table tr td:nth-of-type(1) {
    width: 200px;
}
.package-detail .summary table tr tr,
.package-detail .summary table tr td {
    border: 1px solid #c7c7c7;
    vertical-align: middle;
}
.package-detail .summary .price {
    font-size: 30px;
    font-weight: 700;
}
.package-detail .enquery-form input, 
.package-detail .enquery-form textarea {
    font-size: 16px;
}
.package-detail .enquery-form button {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #f09c1c;
    color: #fff;
    text-decoration: none;
    border: 1px solid #f09c1c;
    border-radius: 6px;
    padding: 8px 35px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.package-detail .enquery-form button:hover {
    transition: all 0.3s;
    background: transparent;
    border: 1px solid #f09c1c;
    color: #f09c1c;
}
.package-detail ul {
    padding-left: 0;
}
.package-detail ul li {
    list-style: none;
    margin-bottom: 10px;
}
.package-detail ul li a {
    color: #242424;
    font-weight: 400;
}
.package-detail .location-map iframe {
    width: 100%;
    height: 500px;
}
.package-detail .nav-tabs {
    margin-bottom: 15px;
    border: 0;
}
.package-detail .nav-tabs .nav-item {
    margin-right: 10px;
}
.package-detail .nav-tabs .nav-item button {
    border: 0;
    background: #e9e9e9;
    border-radius: 6px;
    font-weight: 700;
}
.package-detail .amenity .fa-check {
    color: #1e9e39;
    font-size: 16px;
}
.package-detail .amenity .fa-times {
    color: #e32e2e;
    font-size: 16px;
}
.package-detail .tour-plan h2 {
    font-size: 18px;
}
.package-detail .tour-plan table tr td:nth-of-type(1) {
    width: 200px;
}
@media (max-width: 991px) {
    .package-detail .location-map iframe {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .package-detail .location-map iframe {
        height: 300px;
    }
}
@media (max-width: 575px) {
    .package-detail .location-map iframe {
        height: 350px;
    }
}


.review-package {
    margin-top: 40px;
}
.review-package h2 {
    font-size: 18px;
    font-weight: 700;
    color: #f09c1c;
    margin-bottom: 20px;
}
.review-package .review-package-section {
    margin-bottom: 20px;
}
.review-package .review-package-box {
    background: #eeeeee;
    padding: 15px;
}
.review-package .review-package-box .left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #b6b6b6;
    margin-right: 10px;
}
.review-package .review-package-box .right .name {
    font-size: 18px;
    font-weight: 600;
}
.review-package .review-package-box .right .date {
    font-size: 14px;
    color: #515151;
    margin-bottom: 0px;
}
.review-package .review-package-box .right .text {
    font-size: 16px;
}
.review-package input,
.review-package textarea,
.review-package button {
    font-size: 14px;
}
.review-package textarea {
    height: 200px;
}
.review-package button {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #f09c1c;
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 6px;
    padding: 8px 35px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.review-package button:hover {
    transition: all 0.3s;
    background: #f09c1c;
    color: #f09c1c;
}
.review-package button:hover {
    background: #000!important;
}
@media only screen and (max-width: 767px) {
    .review-package button {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 450px) {
    .review-package .reply-box {
        padding-left: 40px;
    }
}

.give-review-auto-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
}

.give-review-auto-select input {
    display: none;
}

.give-review-auto-select label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.give-review-auto-select input:checked ~ label {
    color: #f5b301;
}

.give-review-auto-select label:hover,
.give-review-auto-select label:hover ~ label {
    color: #f5b301;
}



/* Modern Why-Choose Section with Glassmorphism */
.why-choose {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, color-mix(in srgb, var(--theme-primary, #f09c1c) 85%, var(--theme-secondary, #2c2c2c)) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose .heading {
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.why-choose .heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.why-choose .heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.why-choose .inner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose .inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.why-choose .inner:hover::before {
    left: 100%;
}

.why-choose .inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-choose .inner .icon {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.why-choose .inner .icon i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-choose .inner:hover .icon i {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.why-choose .inner .text {
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-choose .inner .text h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-choose .inner .text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}



.blog .heading {
    text-align: left;
    margin-bottom: 30px;
}
.blog .heading h2 {
    font-size: 30px;
    font-weight: 700;
}
.blog .heading p {
    color: #696969;
}
.blog .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
}
.blog .item .photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1);
	transition: all 0.4s ease;
    border-radius: 6px;
}
.blog .item .text h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}
.blog .item .text h2 a {
    color: #333;
}
.blog .item .text .short-des p {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
}
.blog .item .text .button a {
    background: #f09c1c;
    border: 0;
}
@media (max-width: 1199px) {
    .blog .item .photo img {
        height: 220px;
    }
}
@media (max-width: 991px) {
    .blog .item .photo img {
        height: 290px;
    }
}
@media (max-width: 767px) {
    .blog .item .photo img {
        height: auto;
    }
}


/* Modern Footer with Glassmorphism */
.footer {
    background: linear-gradient(135deg, var(--theme-secondary, #2c2c2c) 0%, color-mix(in srgb, var(--theme-secondary, #2c2c2c) 90%, black) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer .item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.footer .item:hover::before {
    left: 100%;
}

.footer .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer h2.heading {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.footer p,
.footer ul li,
.footer ul li a,
.footer .list-item .right {
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--theme-primary, #f09c1c);
    transform: translateX(5px);
    display: inline-block;
}

.footer input[type="text"] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.footer input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--theme-primary, #f09c1c);
    box-shadow: 0 0 20px rgba(var(--theme-primary-rgb, 240, 156, 28), 0.3);
}

.footer input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer input[type="submit"] {
    width: 100%;
    background: var(--theme-primary, #f09c1c);
    border: 0;
    margin-top: 10px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer input[type="submit"]:hover {
    background: var(--theme-secondary, #2c2c2c);
    color: var(--theme-primary, #f09c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.footer .list-item {
    overflow: hidden;
    margin-bottom: 10px;
    font-weight: 400;
}
.footer .list-item .left {
    width: 30px;
    height: auto;
    float: left;
    padding-top: 2px;
}
.footer .list-item .left i {
    font-size: 20px;
    color: #a2a2a2;
}
.footer .list-item .right {
    width: calc(100% - 40px);
    height: auto;
    float: left;
}
.footer ul.social {
    padding: 0;
    margin-bottom: 25px;
    overflow: hidden;
}
.footer ul.social li {
    list-style-type: none;
    float: left;
    margin-right: 6px;
    margin-bottom: 6px;
}
.footer ul.social li a {
    color: #fff;
    background: #f09c1c;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    display: block;
}
.footer ul.social li a:hover {
    color: #f09c1c;
    background: #fff;
}
.footer ul.useful-links {
    padding: 0;
}
.footer ul.useful-links li {
    list-style-type: none;
    margin-right: 6px;
    margin-bottom: 6px;
    position: relative;
}
.footer ul.useful-links li a {
    color: #a2a2a2;
}
.footer ul.useful-links li a:hover {
    padding-left: 6px;
    color: #f09c1c!important;
}


.footer-bottom {
    background: #202020;
    color: #fff;
    border-top: 1px solid #3c3c3c;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-bottom .copyright {
    text-align: center;
    font-size: 14px;
}


.page-top {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
}
.page-top:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222;
    color: #fff;
    opacity: 0.5;
    z-index: 9;
}
.page-top h2 {
    font-weight: 700;
    font-size: 40px;
    position: relative;
    z-index: 99;
    color: #fff;
    opacity: 1;
    text-align: center;
}
.page-top .button {
    position: relative;
    z-index: 99;
    text-align: center;
}
.page-top .button a {
    background: #f09c1c;
    border: 0;
}
.page-top .button a:hover {
    background: #f09c1c;
    opacity: 0.8;
}
.page-top .breadcrumb-container {
    position: relative;
    z-index: 99;
    opacity: 1;
}
.page-top .breadcrumb {
    margin-bottom: 0;
    justify-content: center;
}
.page-top .breadcrumb-item.active {
    color: #ffffff;
}
.page-top .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #ffffff;
}
.page-top .breadcrumb a {
    color: #ffffff;
}
.page-top .breadcrumb a:hover {
    color: #f09c1c;
}

/* Banner Social Icons */
.page-top:after {
    background: var(--banner-overlay, #222);
}
.banner-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 99;
}
.banner-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}
.banner-social a:hover {
    background: var(--theme-primary, #f09c1c);
    border-color: var(--theme-primary, #f09c1c);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.banner-social a i {
    transition: transform 0.3s ease;
}
.banner-social a:hover i {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .page-top {
        margin-top: 60px;
    }
    .banner-social {
        justify-content: center;
        margin-top: 20px;
    }
    .page-top h2 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .banner-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .banner-social {
        gap: 8px;
    }
}

.page-top-package {
    padding-top: 100px;
    padding-bottom: 100px;
}
.page-top-package h3 {
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 99;
    opacity: 1;
}
.page-top-package .review {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 99;
    opacity: 1;
}
.page-top-package .review i {
    color: #f4c150;
}
.page-top-package .review span {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.page-top-package .price {
    font-size: 32px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 99;
    opacity: 1;
    font-weight: 700;
}
.page-top-package .price del {
    color: #e9fca8;
}
.page-top-package .person {
    font-size: 16px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 99;
    opacity: 1;
}



.team .heading {
    text-align: center;
    margin-bottom: 30px;
}
.team .heading h2 {
    font-size: 30px;
    font-weight: 700;
}
.team .heading p {
    color: #696969;
}
.team .item .photo {
    margin-bottom: 10px;
    overflow: hidden;
}
.team .item .photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transform: scale(1);
	transition: all 0.4s ease;
}
.team .item .text {
    text-align: center;
}
.team .item .text h2 {
    font-size: 20px;
    font-weight: 700;
}
.team .item .text h2 a {
    color: #333;
}
.team .item .text .designation {
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
}
.team ul {
    padding: 0;
    overflow: hidden;
    text-align: center;
}
.team ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 2px;
}
.team ul li a {
    color: #fff;
    background: #f09c1c;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    display: block;
}
@media (max-width: 1199px) {
    .team .item .photo img {
        height: 280px;
    }
}
@media (max-width: 991px) {
    .team .item .photo img {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .team .item .photo img {
        height: auto;
    }
}



.team-single .photo {
    height: 100%;
}
.team-single .photo img {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
    object-fit: cover;
}
.team-single ul {
    width: 100%;
    display: block;
    padding-left: 0;
    margin-bottom: 0;
}
.team-single ul li {
    list-style-type: none;
    display: inline-block;
}
.team-single ul li a {
    background: #5ac736;
    color: #fff!important;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
    margin-right: 6px;
    font-size: 16px;
    transition: all 0.4s ease;
}
.team-single ul li a:hover {
    background: #333;
}
.team-single table {
    background: #fff;
    margin-bottom: 0;
}
.team-single table tr td {
    background: #fff;
}



.page-content .sub {
    overflow: hidden;
    border-top: 1px solid #c7c7c7;
    border-bottom: 1px solid #c7c7c7;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.page-content .sub .item {
    float: left;
    margin-right: 15px;
    color: #969696;
}
.page-content .sub .item a {
    color: #969696;
    text-decoration: underline;
}
.page-content .main-text {
    margin-bottom: 25px;
}
.page-content h2 {font-weight: 700;}
.page-content h3 {font-weight: 700;}
.page-content h4 {font-weight: 700;}
.page-content h5 {font-weight: 700;}
.page-content h6 {font-weight: 700;}



.contact-price-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.contact-price-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.55);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    background: rgba(255, 255, 255, 0.18);
}
.contact-form label {
    font-weight: 600;
}
.contact-form textarea {
    height: 200px;
}
.contact-form button {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: #f09c1c;
    color: #fff;
    text-decoration: none;
    border: 1px solid #f09c1c;
    border-radius: 6px;
    padding: 8px 35px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.contact-form button:hover {
    transition: all 0.3s;
    background: transparent;
    border: 1px solid #f09c1c;
    color: #f09c1c;
}
.map iframe {
    width: 100%;
    height: 450px;
}
@media (max-width: 1199px) {
    .map iframe {
        height: 400px;
    }
}



.faq .accordion {
    width: 70%;
}
.faq .accordion-button {
    color: #f09c1c;
    font-weight: 700;
    background: #ebebeb;
    font-size: 18px;
}
.faq .accordion-button.collapsed {
    background: none;
}
.faq .accordion-button:focus {
    box-shadow: none !important;
}
.faq .accordion-item {
    margin-bottom: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}
.faq .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 700;
    background-image: none;
    transform: none;
    color: #f09c1c;
}
.faq .accordion-button.collapsed::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 700;
    background-image: none;
}
.faq .accordion-item .accordion-button {
    border-radius: 0 !important;
}
.faq .accordion-body {
    font-weight: 400;
}
.faq .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faq .accordion-item:last-of-type {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
@media (max-width: 991px) {
    .faq .accordion {
        width: 100% !important;
    }
}



.faq-package .accordion-header {
    border-bottom: 0!important;
    margin-bottom: 0!important;
    padding-bottom: 0!important;
}
.faq-package .accordion-button {
    color: #242424;
    font-weight: 600;
    background: #ebebeb;
    font-size: 16px;
    padding-top: 10px!important;
    padding-bottom: 10px!important;
}
.faq-package .accordion-button.collapsed {
    background: none;
}
.faq-package .accordion-button:focus {
    box-shadow: none !important;
}
.faq-package .accordion-item {
    margin-bottom: 8px!important;
    border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}
.faq-package .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 700;
    background-image: none;
    transform: none;
    color: #f09c1c;
}
.faq-package .accordion-button.collapsed::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 700;
    background-image: none;
}
.faq-package .accordion-item .accordion-button {
    border-radius: 0 !important;
}
.faq-package .accordion-body {
    font-weight: 400;
}
.faq-package .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faq-package .accordion-item:last-of-type {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
@media (max-width: 991px) {
    .faq-package .accordion {
        width: 100% !important;
    }
}


/* Previous testimonial styles removed - now using custom.css for simplified design */



.counter-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #f2f2f2;
}
.counter-section .counter-items {
    text-align: center;
}
.counter-section .counter-item {
    text-align: center;
    color: #f09c1c;
}
.counter-section .counter-item .counter {
    font-size: 50px;
    font-weight: 700;
    color: #f09c1c;
}
.counter-section .counter-item .text {
    font-size: 20px;
}
@media only screen and (max-width: 767px) {
    .counter-section .counter-item {
        margin-bottom: 30px;
    }
}




.post .left-item {
    margin-bottom: 30px;
}
.post .left-item .main-photo {
    margin-bottom: 25px;
}
.post .left-item .main-photo img {
    width: 100%;
    height: auto;
}
.post .left-item h2 {
    color: #222;
    font-weight: 700;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.post .left-item .sub {
    display: block;
    margin-bottom: 20px;
}
.post .left-item .sub ul {
    padding-left: 0;
    margin-bottom: 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding-top: 6px;
    padding-bottom: 6px;
}
.post .left-item .sub ul li {
    list-style: none;
    margin-right: 20px;
    display: inline-block;
    color: #646464;
    font-weight: 400;
    font-size: 14px;
}
.post .left-item .sub ul li a {
    color: #646464;
    font-weight: 400;
    font-size: 14px;
}
.post .left-item .sub ul li i {
    color: #f09c1c;
}
.post .left-item .description {
    display: block;
}
.post .right-item {
    margin-bottom: 30px;
}
.post .right-item h2 {
    color: #222;
    font-weight: 700;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.post .right-item ul {
    padding-left: 0;
}
.post .right-item ul li {
    list-style: none;
    margin-bottom: 10px;
}
.post .right-item ul li a {
    color: #242424;
    font-weight: 400;
}
.post .right-item ul.tag {
    padding-left: 0;
}
.post .right-item ul.tag li {
    list-style: none;
    margin-bottom: 15px;
    float: left;
    margin-right: 5px;
}
.post .right-item ul.tag li a {
    background: #242424;
    color: #fff;
    font-weight: 400;
    padding: 5px 10px 7px;
    border-radius: 3px;
}
.post .right-item ul.tag li a:hover {
    background: #f09c1c;
}



.login-form .nav-item {
    margin-right: 10px;
}
.login-form .nav-link {
    background: #bbcdff;
    color: #3661ef;
    font-weight: 600;
}


.user-panel {
    padding-bottom: 50px;
}

.user-panel h3 {
    font-size: 18px;
    font-weight: 600;
}

.user-panel h4 {
    font-size: 16px;
    font-weight: 600;
}

.user-panel .card {
    width: 100% !important;
    padding: 0;
    border-radius: 0;
}

.user-panel .list-group-item {
    padding: 0;
    width: 100%;
}

.user-panel .list-group-item a {
    display: block;
    color: #f09c1c;
    font-weight: 600;
    transition: 0.4s;
    padding: 8px 15px;
}

.user-panel .list-group-item a:hover {
    background: #f09c1c;
    color: #fff;
}

.user-panel .list-group .active {
    border-color: #f09c1c !important;
}

.user-panel .list-group .active a {
    background: #f09c1c !important;
    color: #fff !important;
}

.user-panel .box1,
.user-panel .box2,
.user-panel .box3 {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.user-panel .box1 h4,
.user-panel .box2 h4,
.user-panel .box3 h4 {
    font-weight: 700;
    font-size: 28px;
}

.user-panel .box1 {
    background: #c0d5ff;
}

.user-panel .box2 {
    background: #ffc3c8;
}

.user-panel .box3 {
    background: #dcffe2;
}

.user-panel input[type="submit"] {
    background: #f09c1c;
    border: 0;
}

.user-panel .logo {
    height: 80px;
}

.user-panel .user-photo {
    width: 150px;
}

.user-panel label {
    font-weight: 600;
}

.user-panel table.upgrade-plan-table tr td:first-child {
    width: 250px;
}

.user-panel table.upgrade-plan-table .select2-selection--single {
    width: 100%;
}

.user-panel table.upgrade-plan-table .buy-button {
    width: 200px;
}
.user-panel .modal-header {
    border-bottom-color: #b9b9b9;
}
.user-panel .modal-seperator {
    border-bottom: #b9b9b9 1px solid;
    padding-bottom: 10px;
    margin-top: -5px;
}
.user-panel .message-item {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #cecece;
}
.user-panel .message-item .message-top {
    background: #f2f2f2;
    padding: 15px;
}
.user-panel .message-item .message-top .left {
    display: inline-block;
}
.user-panel .message-item .message-top .left img {
    width: 80px;
    height: 80px;
    border: 1px solid #cecece;
    border-radius: 50%;
    margin-right: 5px;
}
.user-panel .message-item .message-top .right {
    display: inline-block;
    vertical-align: middle;
}
.user-panel .message-item .message-top .right h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
}
.user-panel .message-item .message-top .right h5 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 15px;
    font-weight: 400;
}
.user-panel .message-item .message-top .right .date-time {
    font-size: 14px;
    color: #9e9e9e;
}
.user-panel .message-item .message-bottom {
    padding: 15px;
}
.user-panel .message-item-admin-border {
    border-left-color:#f09c1c;
    border-left-width: 5px;
}


.invoice-container {
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    padding: 25px;
}

.invoice-top-right {
    text-align: right;
}
.invoice-top-right h4 {
    font-size: 26px;
    text-transform: uppercase;
}
.invoice-top-right h5 {
    font-size: 16px;
    color: #757575;
}


.invoice-middle {
    margin-top: 40px;
    margin-bottom: 40px;
}
.invoice-middle-left p,
.invoice-middle-right p {
    color: #757575;
    font-size: 16px;
}
.invoice-middle-left h4,
.invoice-middle-right h4 {
    font-size: 20px;
}
.invoice-middle-right {
    text-align: right!important;
}

.invoice-item-table,
.invoice-item-table tr td,
.invoice-item-table tr th {
    border-color: #b9b9b9;
}


.invoice-bottom {
    margin-top: 40px;
}
.invoice-bottom-payment h4 {
    font-size: 18px;
    font-weight: 700;
}
.invoice-bottom-total-box p {
    margin-bottom: 0;
    font-size: 16px;
}
.invoice-bottom-total-box span {
    width: 70px;
    display: inline-block;
}


@media (max-width: 991px) {
    .user-panel .card {
        margin-bottom: 30px;
    }
}




.select2-container {
    z-index: 99999 !important;
}
.select2-container--bootstrap .select2-selection--single {
    height: 36px !important;
    line-height: 36px !important;
    padding-top: 0 !important;
    font-size: 15px !important;
}

/* --- Responsive Improvements for Mobile & Tablet --- */

@media (max-width: 991px) {
  .slider .item {
    height: 350px;
  }
  .slider .text h2 {
    font-size: 32px;
  }
  .slider .text p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .slider .item {
    height: 220px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .slider .text h2 {
    font-size: 22px;
  }
  .slider .text p {
    font-size: 12px;
  }
  .main-nav img {
    height: 7px;
    vertical-align: middle;
  }
  .mean-container img {
    height: 8px;
    vertical-align: middle;
  }
  .button-style-1 a, .button-style-2 a {
    padding: 8px 18px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .slider .item {
    height: 140px;
  }
  .slider .text h2 {
    font-size: 16px;
  }
  .slider .text p {
    font-size: 10px;
  }
}

/* Ensure all images are responsive */
img, .slider .item img, .package .item .photo img, .destination .item .photo img, .team .item .photo img, .blog .item .photo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Improve container padding on mobile */
@media (max-width: 767px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Footer adjustments for mobile */
@media (max-width: 767px) {
  .footer .item {
    margin-bottom: 30px;
  }
  .footer .heading {
    font-size: 18px;
  }
}

/* Navigation touch target improvements */
@media (max-width: 767px) {
  .main-nav nav .navbar-nav .nav-item a {
    padding: 12px 10px;
    font-size: 14px !important;
  }
}

/* General heading and text scaling */
@media (max-width: 767px) {
  h1, .h1 { font-size: 1.5em; }
  h2, .h2 { font-size: 1.2em; }
  h3, .h3 { font-size: 1em; }
}

/* TikTok SVG icon in footer social links */
.footer ul.social li a .tiktok-svg {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer ul.social li a .tiktok-svg svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #fff;
}
.footer ul.social li a:hover .tiktok-svg svg {
  fill: #f09c1c;
}

/* ============================================
   GLASSMORPHISM STYLES - FRONTEND
   ============================================ */

/* Glass Card Effect for Package Items - REMOVED - now using glass-package-card-enhanced in custom.css */

/* Clean Package Cards - Inspired by Blog Cards */
.glass-package-card-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 1px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.glass-package-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.glass-package-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 20px 20px 0 0;
}

.glass-package-card-enhanced::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-package-card-enhanced:hover::after {
    opacity: 1;
}

.glass-package-card-enhanced .photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.glass-package-card-enhanced .photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-package-card-enhanced:hover .photo img {
    transform: scale(1.08);
}

.glass-package-card-enhanced .wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.glass-package-card-enhanced .wishlist:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.glass-package-card-enhanced .wishlist i {
    color: white !important;
    transition: transform 0.3s ease;
}

.glass-package-card-enhanced .wishlist:hover i {
    transform: scale(1.2);
}

.glass-package-card-enhanced .price {
    color: var(--theme-primary) !important;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: none !important;
}

.glass-package-card-enhanced .price del {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 18px;
    font-weight: 400;
}

.glass-package-card-enhanced h2 {
    margin-bottom: 15px;
}

.glass-package-card-enhanced h2 a {
    color: var(--theme-secondary) !important;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: none !important;
}

.glass-package-card-enhanced h2 a:hover {
    color: var(--theme-primary) !important;
}

.glass-package-card-enhanced .review {
    margin-bottom: 15px;
}

.glass-package-card-enhanced .review i {
    color: var(--theme-primary) !important;
    margin-right: 2px;
}

.glass-package-card-enhanced .review span {
    color: var(--theme-secondary) !important;
    font-size: 14px;
    margin-left: 5px;
    text-shadow: none !important;
}

.glass-package-card-enhanced .element {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.glass-package-card-enhanced .element:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.glass-package-card-enhanced .element-left,
.glass-package-card-enhanced .element-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-secondary) !important;
    font-size: 14px;
    text-shadow: none !important;
}

.glass-package-card-enhanced .element-left i,
.glass-package-card-enhanced .element-right i {
    color: var(--theme-primary) !important;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-package-card-enhanced {
        padding: 15px;
        border-radius: 16px !important;
    }
    
    .glass-package-card-enhanced::before {
        border-radius: 16px 16px 0 0;
    }
    
    .glass-package-card-enhanced .photo {
        border-radius: 14px;
    }
    
    .glass-package-card-enhanced .photo img {
        height: 160px;
    }
}

/* Glass Card Effect for Destination Items */
.destination .item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination .item .text {
    background: rgba(248, 248, 248, 0.95);
    border-radius: 0 0 16px 16px;
}

.destination .item .photo img {
    border-radius: 16px 16px 0 0;
}

/* Glass Card Effect for Blog Items */
.blog .item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    transition: all 0.3s ease;
}

.blog .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog .item .photo img {
    border-radius: 12px;
}

/* Glass Card Effect for Team Members */
.team .item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Glass Card Effect for Testimonials - REMOVED */

/* Glass Buttons */
.btn-primary,
.button-style-1 a,
.button-style-2 a {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-primary-dark, #e08a0a) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(240, 156, 28, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover,
.button-style-1 a:hover,
.button-style-2 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 156, 28, 0.5);
    background: linear-gradient(135deg, var(--theme-primary-dark, #e08a0a) 0%, var(--theme-primary, #f09c1c) 100%) !important;
}

/* Glass Form Inputs */
.form-control {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 200, 200, 0.5) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--theme-primary, #f09c1c) !important;
    box-shadow: 0 0 0 3px rgba(240, 156, 28, 0.15);
}

/* Glass Sidebar Widget */
.package-sidebar .widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    overflow: hidden;
}

.package-sidebar .widget h2 {
    background: linear-gradient(135deg, rgba(240, 156, 28, 0.1) 0%, rgba(240, 156, 28, 0.05) 100%);
    border-bottom: 1px solid rgba(240, 156, 28, 0.2) !important;
    border-radius: 16px 16px 0 0;
}

/* Glass Footer */
.footer {
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.98) 0%, rgba(32, 32, 32, 1) 100%);
    backdrop-filter: blur(10px);
}

/* Glass Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Glass Top Bar */
.top {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-primary-dark, #e08a0a) 100%);
    backdrop-filter: blur(10px);
}

/* Glass Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-primary-dark, #e08a0a) 100%) !important;
}

.why-choose .inner .icon i {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 12px;
}

/* Glass Review Box */
.review-package .review-package-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(200, 200, 200, 0.3);
}

/* Glass FAQ Accordion */
.faq .accordion-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(200, 200, 200, 0.3) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq .accordion-button {
    background: rgba(248, 248, 248, 0.9);
    border-radius: 12px 12px 0 0;
}

.faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(240, 156, 28, 0.1) 0%, rgba(240, 156, 28, 0.05) 100%);
    color: var(--theme-primary, #f09c1c);
}

/* Glass Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
}

/* Glass Login/Register Forms */
.auth-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
}

/* Stylish Borders */
.stylish-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--theme-primary, #f09c1c), #a855f7) border-box;
    border-radius: 16px;
}

/* Glass Scroll to Top Button */
.scroll-top {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-primary-dark, #e08a0a) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(240, 156, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scroll-top:hover {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Glass Special Section */
.special .left-side .inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
}

/* Glass Photo Gallery */
.photo-all .item,
.video-all .item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-all .item:hover,
.video-all .item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.photo-all img,
.video-all img {
    border-radius: 16px;
}

/* Glass User Dashboard Cards */
.user-dashboard .card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Glass Pagination */
.pagination .page-item .page-link {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 10px !important;
    margin: 0 3px;
    border: 1px solid rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--theme-primary, #f09c1c) 0%, var(--theme-primary-dark, #e08a0a) 100%);
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(240, 156, 28, 0.4);
}

.pagination .page-item .page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Glass Alert Messages */
.alert {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px !important;
    border: 1px solid rgba(200, 200, 200, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Glass Badge */
.badge {
    backdrop-filter: blur(5px);
    border-radius: 8px !important;
    padding: 6px 12px !important;
    font-weight: 600;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    .special .left-side .inner {
        padding: 30px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Navigation */
    .main-nav img {
        height: 8px;
        vertical-align: middle;
    }
    
    /* Banner */
    .page-top {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .page-top h2 {
        font-size: 32px;
    }
    
    /* Footer */
    .footer .item {
        margin-bottom: 30px;
    }
    
    /* Package Cards */
    .package .item {
        margin-bottom: 30px;
    }
    
    /* Destination Cards */
    .destination .item {
        margin-bottom: 30px;
    }
    
    /* Special Section */
    .special .left-side {
        margin-bottom: 30px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 25px;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    /* Banner */
    .page-top {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .page-top h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .page-top .col-md-8,
    .page-top .col-md-4 {
        text-align: center;
    }
    
    /* Banner Social - Center on mobile */
    .banner-social {
        justify-content: center;
        margin-top: 15px;
    }
    
    /* Breadcrumb */
    .page-top .breadcrumb {
        font-size: 13px;
    }
    
    /* Footer */
    .footer {
        text-align: center;
    }
    .footer .item h2 {
        margin-bottom: 15px;
    }
    .footer ul.social {
        justify-content: center;
    }
    .footer .list-item {
        justify-content: center;
    }
    
    /* Forms */
    .login-form,
    .contact-form,
    .auth-form {
        padding: 20px;
    }
    
    /* Cards */
    .card {
        margin-bottom: 20px;
    }
    
    /* Buttons */
    .button-style-1 a,
    .button-style-2 a {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Special Section */
    .special .left-side .inner {
        padding: 25px;
    }
    .special .left-side h3 {
        font-size: 24px;
    }
    
    /* Why Choose Section */
    .why-choose .item {
        margin-bottom: 25px;
    }
    
    /* Team Section */
    .team .item {
        margin-bottom: 30px;
    }
    
    /* Blog */
    .blog .item {
        margin-bottom: 30px;
    }
    
    /* Testimonials - REMOVED */
}

/* Mobile Phones */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Banner */
    .page-top {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .page-top h2 {
        font-size: 22px;
    }
    
    /* Banner Social */
    .banner-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .banner-social {
        gap: 6px;
    }
    
    /* Navigation Logo */
    .main-nav img {
        height: 7px;
        vertical-align: middle;
    }
    .mobile-nav img {
        height: 35px;
    }
    
    /* Footer */
    .footer {
        padding-top: 40px;
    }
    .footer .item {
        padding-bottom: 30px;
    }
    .footer ul.social li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
    
    /* Forms */
    .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .button-style-1 a,
    .button-style-2 a {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    /* Cards */
    .package .item .text {
        padding: 15px;
    }
    .package .item .text h3 {
        font-size: 18px;
    }
    
    /* Special Section */
    .special .left-side .inner {
        padding: 20px;
    }
    .special .left-side h3 {
        font-size: 20px;
    }
    
    /* Section Headings */
    .heading h2 {
        font-size: 24px;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 13px;
    }
    
    /* Pagination */
    .pagination .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Login Form */
    .login-form {
        padding: 20px 15px;
    }
    .login-form h3 {
        font-size: 20px;
    }
    
    /* Contact Info */
    .contact-form {
        padding: 20px 15px;
    }
    
    /* User Dashboard */
    .user-dashboard .card {
        padding: 15px;
    }
}

/* Extra Small Phones */
@media (max-width: 375px) {
    .page-top h2 {
        font-size: 20px;
    }
    
    .banner-social a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .topbar-social li a {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .button-style-1 a,
    .button-style-2 a {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .heading h2 {
        font-size: 20px;
    }
}
