/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/********** Template CSS **********/
:root {
    /* Brand Colors */
    --primary: #13357B;
    --primary-dark: #13357B;
    --secondary: #2596be;
    --secondary-hover: #1e7fa3;
    --accent: #4CAF50;
    --accent-hover: #43A047;
    --light: #F8F9FA;
    --dark: #212529;
    --text: #333;
    --text-light: #666;

    /* Bootstrap Overrides */
    --bs-primary: #13357B;
    --bs-primary-rgb: 19, 53, 123;
    --bs-secondary: #2596be;
    --bs-secondary-rgb: 245, 210, 125;
    --bs-success: #4CAF50;
    --bs-success-rgb: 76, 175, 80;
    --bs-info: #3A7CA4;
    --bs-info-rgb: 58, 124, 164;
    --bs-warning: #2596be;
    --bs-warning-rgb: 255, 140, 0;
    --bs-light: #F8F9FA;
    --bs-dark: #212529;
}

/* Global font - Prompt for everything except H1 and H2 */
body,
p,
a,
span,
div,
button,
input,
textarea,
select,
h3,
h4,
h5,
h6,
li,
label {
    font-family: 'Prompt', sans-serif !important;
}

/* Keep original fonts for H1 and H2 */
h1,
h2 {
    font-family: 'Jost', sans-serif !important;
}

.fw-medium {
    font-weight: 600 !important;
}

/*** Bootstrap Color Overrides ***/
.bg-primary {
    background-color: #3A7CA4 !important;
}

.bg-secondary {
    background-color: #2596be !important;
}

.bg-success {
    background-color: #4CAF50 !important;
}

.bg-info {
    background-color: #3A7CA4 !important;
}

.bg-warning {
    background-color: #2596be !important;
}

/* Text colors - Icons keep brand colors, text uses dark */
i.fa.text-primary,
i.fab.text-primary,
i.fas.text-primary,
i.far.text-primary {
    color: #3A7CA4 !important;
}

i.fa.text-secondary,
i.fab.text-secondary,
i.fas.text-secondary,
i.far.text-secondary {
    color: #2596be !important;
}

/* Regular text uses dark color */
.text-primary:not(i) {
    color: #333 !important;
}

.text-secondary:not(i) {
    color: #333 !important;
}

.text-success:not(i) {
    color: #333 !important;
}

.text-info:not(i) {
    color: #333 !important;
}

.text-warning:not(i) {
    color: #333 !important;
}

.btn-primary {
    background-color: #3A7CA4 !important;
    border-color: #3A7CA4 !important;
}

.btn-primary:hover {
    background-color: #2A5C7C !important;
    border-color: #2A5C7C !important;
}

.btn-secondary {
    background-color: #2596be !important;
    border-color: #2596be !important;
}

.btn-secondary:hover {
    background-color: #E67E22 !important;
    border-color: #E67E22 !important;
}

.btn-outline-primary {
    color: #3A7CA4 !important;
    border-color: #3A7CA4 !important;
}

.btn-outline-primary:hover {
    background-color: #3A7CA4 !important;
    color: white !important;
}

.btn-outline-secondary {
    color: #2596be !important;
    border-color: #2596be !important;
}

.btn-outline-secondary:hover {
    background-color: #2596be !important;
    color: white !important;
}

.border-primary {
    border-color: #3A7CA4 !important;
}

.border-secondary {
    border-color: #2596be !important;
}

.border-0-5cm {
    border-width: 0.5cm !important;
}

.border-success {
    border-color: #4CAF50 !important;
}

.badge.bg-primary {
    background-color: #3A7CA4 !important;
}

.badge.bg-secondary {
    background-color: #2596be !important;
}

.badge.bg-success {
    background-color: #4CAF50 !important;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover>.dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

/* Nested Dropdown Styles */
@media (min-width: 992px) {
    .dropdown .dropend>.dropdown-menu {
        display: none;
        position: absolute;
        left: 100%;
        top: 0;
        margin-top: 0;
        margin-left: 0;
        transform: none;
        /* Reset rotation for horizontal submenus */
        opacity: 1;
        visibility: visible;
    }

    .dropdown .dropend:hover>.dropdown-menu {
        display: block;
    }
}

.dropdown .dropend .dropdown-item {
    position: relative;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    /* Mobile Nested Dropdown Fix */
    .dropdown-menu .dropdown-menu {
        position: static !important;
        display: none;
        width: 100%;
        margin: 0;
        padding-left: 1.5rem;
        background: rgba(0, 0, 0, 0.03);
        border: none;
        box-shadow: none;
    }

    .dropdown-menu .dropdown-menu.show {
        display: block;
    }

    .dropdown-item.dropdown-toggle::after {
        float: right;
        margin-top: 7px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    background-size: cover;
}

@media (max-width: 768px) {

    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }

    /* Mobile responsive text sizes for carousel */
    .carousel-caption h2 {
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.75rem !important;
    }

    .carousel-caption h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .carousel-caption .display-3 {
        font-size: 1.5rem !important;
    }

    .carousel-caption p,
    .carousel-caption .fs-5 {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-caption .btn {
        font-size: 0.85rem !important;
        padding: 0.6rem 1.5rem !important;
    }

    .carousel-caption .p-3 {
        padding: 1rem !important;
    }

    /* Mobile responsive search bar */
    .search-bar .position-relative {
        padding: 1.5rem !important;
    }

    .search-bar input {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
    }

    .search-bar button {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        right: 30px !important;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}

.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}

/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(58, 124, 164, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}

/*** Blog End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}

/*** copyright end ***/
/*** Custom Navigation Styles for Nested Dropdowns ***/
/* Nested dropdown positioning */
.dropdown-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 0.125rem;
    display: none;
}

/* Show nested dropdown on hover */
@media (min-width: 992px) {
    .dropdown-menu .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* Dropdown item hover styles */
.dropdown-item:hover {
    background-color: #E8F4F8;
    color: #3A7CA4;
}

/* Submenu indicator icon */
.dropdown-item.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item.has-submenu::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Mobile menu accordion */
@media (max-width: 991.98px) {
    .dropdown-menu .dropdown-menu {
        position: static;
        margin-left: 1rem;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
    }

    .dropdown-item.has-submenu::after {
        content: "\f107";
    }

    .dropdown-item.has-submenu.show::after {
        content: "\f106";
    }
}

/* WhatsApp button styling */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Ensure dropdown menus have proper z-index */
.navbar .dropdown-menu {
    z-index: 1050;
}

/* Smooth transitions for dropdowns */
.dropdown-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Dropdown divider styling */
.dropdown-divider {
    margin: 0.5rem 0;
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* Adjust navbar height for logo */
.navbar {
    min-height: 80px;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navigation menu Prompt font */
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle,
.dropdown-menu .dropdown-item {
    font-family: 'Prompt', sans-serif !important;
    font-weight: 500;
}

/* Fix dropdown item spacing to prevent overlap */
.dropdown-menu .dropdown-item {
    padding: 0.5rem 1.5rem;
    line-height: 1.5;
    display: block;
    width: 100%;
    clear: both;
    white-space: nowrap;
}

.btn-whatsapp {
    font-family: 'Prompt', sans-serif !important;
    font-weight: 600;
}

/* Light hero banner with dark text */
.carousel-header .carousel-caption h4,
.carousel-header .carousel-caption h1,
.carousel-header .carousel-caption p {
    color: #333 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.carousel-header .carousel-caption .btn-primary {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-header .carousel-caption .btn-primary:hover {
    background-color: #0f2a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Reduce carousel H1 font size */
.carousel-header .carousel-caption h1 {
    font-size: 2.5rem !important;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .carousel-header .carousel-caption h1 {
        font-size: 1.75rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-header .carousel-caption h1 {
        font-size: 2rem !important;
    }
}

/* Make carousel paragraph text bolder and more visible */
.carousel-header .carousel-caption p {
    font-weight: 600 !important;
    color: #222 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.carousel-header .carousel-caption h1,
.carousel-header .carousel-caption h2,
.carousel-header .carousel-caption p {
    color: #ffffff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

/*** About Page Styles Start ***/

/* Value Cards */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--bs-primary);
}

.value-icon {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

/* Team Cards */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.team-placeholder {
    background: linear-gradient(135deg, var(--bs-primary), #1a4a9e);
}

.team-social {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

/* Timeline */
.timeline-item {
    position: relative;
}

.timeline-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Stats */
.stat-item {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-avatar {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

/*** About Page Styles End ***/

/*** Blog Page Styles Start ***/

/* Blog Cards */
.blog-card-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-card-item img {
    transition: transform 0.3s ease;
}

.blog-card-item:hover img {
    transform: scale(1.05);
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
}

.category-card i {
    transition: transform 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.2);
}

/*** Blog Page Styles End ***/

/*** Desert Safari Page Styles Start ***/

/* Safari Type Color Coding - Table Rows */
.safari-standard {
    border-left: 4px solid #3A7CA4 !important;
}

.safari-vip {
    border-left: 4px solid #FFD700 !important;
}

.safari-premium {
    border-left: 4px solid #8B00FF !important;
}

.safari-morning {
    border-left: 4px solid #2596be !important;
}

.safari-overnight {
    border-left: 4px solid #1a1a2e !important;
}

.safari-quad {
    border-left: 4px solid #DC143C !important;
}

/* Safari Cards */
.safari-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.safari-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.safari-card.safari-standard {
    border-left: 5px solid #3A7CA4;
}

.safari-card.safari-vip {
    border-left: 5px solid #2596be;
}

.safari-card.safari-premium {
    border-left: 5px solid #3A7CA4;
}

.safari-card.safari-morning {
    border-left: 5px solid #2596be;
}

.safari-card.safari-overnight {
    border-left: 5px solid #3A7CA4;
}

.safari-card.safari-quad {
    border-left: 5px solid #2596be;
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    z-index: 10;
    transform: rotate(45deg);
    width: 150px;
    background: linear-gradient(135deg, #2596be, #3A7CA4);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.popular-ribbon span {
    display: block;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Purple color for gem icons */
.text-purple {
    color: #8B00FF !important;
}

/* Responsive Table */
@media (max-width: 991px) {
    .table-responsive {
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 0.5rem !important;
    }
}

/*** Desert Safari Page Styles End ***/

/*** Floating WhatsApp Widget ***/
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    transition: 0.5s;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 30px;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    font-weight: 600;
    color: #333;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/*** Destination Grid ***/
.destination-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    margin-bottom: 20px;
}

.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: 0.5s;
}

.destination-item:hover img {
    transform: scale(1.1);
}

.destination-item:hover .destination-overlay {
    background: linear-gradient(rgba(19, 53, 123, 0.4), rgba(19, 53, 123, 0.9));
}

.destination-content h3 {
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}

.destination-content p {
    color: #eee;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.destination-item:hover .destination-content p {
    opacity: 1;
    transform: translateY(0);
}

/*** FAQ Accordion ***/
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    padding: 20px;
    font-weight: 600;
    background-color: white;
    color: #13357B;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #13357B;
    color: white;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(14%) sepia(38%) saturate(3002%) hue-rotate(205deg) brightness(91%) contrast(92%);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 25px;
    background-color: #f9f9f9;
    color: #555;
    line-height: 1.6;
}

/*** Advantage Cards ***/
.advantage-card {
    transition: 0.3s;
    border-radius: 15px;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/*** Responsive Adjustments ***/
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 100px;
        left: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}