/********** Template CSS **********/
:root {
    /* Primary Colors */
    --primary: #AF3E3E;    /* Deep Red */
    --secondary: #CD5656;  /* Medium Red */
    --accent: #DA6C6C;     /* Light Red */
    --light: #EAEBD0;      /* Light Cream */
    --dark: #000000;       /* Black */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #AF3E3E, #CD5656);
    --gradient-secondary: linear-gradient(135deg, #CD5656, #DA6C6C);
    --gradient-dark: linear-gradient(135deg, #AF3E3E, #000000);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(175, 62, 62, 0.1);
    --shadow-md: 0 4px 12px rgba(175, 62, 62, 0.15);
    --shadow-lg: 0 8px 24px rgba(175, 62, 62, 0.2);
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    
    /* Background Colors */
    --bg-light: #ffffff;
    --bg-dark: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.5);
}

/* Override Bootstrap's text-primary class */
.text-primary {
    color: var(--primary) !important;
}

/* Override Bootstrap's bg-primary class */
.bg-primary {
    background: var(--gradient-primary) !important;
}

/* Override Bootstrap's border-primary class */
.border-primary {
    border-color: var(--primary) !important;
}

/* Override Bootstrap's btn-primary class */
.btn-primary {
    background: var(--gradient-primary) !important;
    border-color: var(--primary) !important;
    color: var(--light) !important;
}

.btn-primary:hover {
    background: var(--gradient-dark) !important;
    border-color: var(--primary) !important;
    color: var(--light) !important;
}

/* Override Bootstrap's spinner-border */
.spinner-border.text-primary {
    color: var(--primary) !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-dark);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-outline-light {
    border: 2px solid var(--light);
    color: var(--light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--light);
    color: var(--primary);
    border-color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar {
    background: var(--light);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    transition: all 0.3s ease;
    min-height: 80px;
}

.navbar-light .navbar-nav {
    gap: 25px;
    margin-left: 30px;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 10px 0;
    color: var(--dark) !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.6rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 15px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Sticky Navbar */
.sticky-top.navbar {
    padding: 15px 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 70px;
}

/* Logo Styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: 15px 0;
        min-height: auto;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar-light .navbar-nav {
        gap: 8px;
        margin-left: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        display: none;
    }

    .logo-icon {
        font-size: 1.6rem;
    }

    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.8rem;
    }
}

/* Responsive Logo */
@media (max-width: 575.98px) {
    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.75rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }
}

/* Logo Styling Updates */
.navbar-brand:hover .logo-icon {
    transform: rotate(45deg);
}

.navbar-brand:hover .logo-main {
    transform: translateX(2px);
}

.navbar-brand:hover .logo-sub {
    transform: translateX(2px);
    color: var(--primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .navbar-brand h1 {
        font-size: 2rem;
    }
    
    .hero-header {
        text-align: center;
    }
    
    .section-title::before,
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(175, 62, 62, 0.92), rgba(205, 86, 86, 0.92)), url(../img/india-hero.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Modern Animation Container */
.hero-animations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(175, 62, 62, 0.1) 0%, transparent 70%);
}

/* Animated Shapes */
.animated-shape {
    position: absolute;
    background: rgba(218, 108, 108, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(234, 235, 208, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(175, 62, 62, 0.2);
}

.animated-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(175, 62, 62, 0.2), rgba(205, 86, 86, 0.2));
}

.animated-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
    background: linear-gradient(135deg, rgba(205, 86, 86, 0.2), rgba(218, 108, 108, 0.2));
}

.animated-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 10%;
    animation-delay: -10s;
    background: linear-gradient(225deg, rgba(175, 62, 62, 0.2), rgba(205, 86, 86, 0.2));
}

/* Modern Travel Icons */
.travel-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(234, 235, 208, 0.3);
    animation: floatIcon 8s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(234, 235, 208, 0.4);
    filter: drop-shadow(0 0 10px rgba(175, 62, 62, 0.3));
}

.travel-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.travel-icon.plane {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-45deg);
}

.travel-icon.plane::before {
    content: "\f072";
}

.travel-icon.plane:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
    transform: scale(0.8) rotate(135deg);
}

.travel-icon.compass {
    top: 30%;
    right: 20%;
    animation-delay: -4s;
}

.travel-icon.compass::before {
    content: "\f14e";
}

.travel-icon.compass:nth-child(2) {
    bottom: 25%;
    left: 15%;
    animation-delay: -6s;
    transform: scale(0.9) rotate(-30deg);
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    animation: pulseGlow 4s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(175, 62, 62, 0.3);
}

.glow-orb:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 5%;
    background: radial-gradient(circle at center, rgba(205, 86, 86, 0.4), transparent 70%);
    animation-delay: 0s;
}

.glow-orb:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 5%;
    background: radial-gradient(circle at center, rgba(175, 62, 62, 0.4), transparent 70%);
    animation-delay: -2s;
}

/* Moving Lines */
.moving-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(234, 235, 208, 0.2),
        rgba(234, 235, 208, 0.4),
        rgba(234, 235, 208, 0.2),
        transparent
    );
    animation: moveLine 4s linear infinite;
    box-shadow: 0 0 20px rgba(234, 235, 208, 0.2);
}

.moving-line:nth-child(1) {
    width: 100%;
    top: 30%;
    animation-delay: 0s;
}

.moving-line:nth-child(2) {
    width: 80%;
    top: 50%;
    animation-delay: -1s;
}

.moving-line:nth-child(3) {
    width: 60%;
    top: 70%;
    animation-delay: -2s;
}

/* Hero Content Animation */
.hero-header .container {
    animation: fadeInUp 1s ease-out;
}

.hero-header h1 {
    animation: slideInRight 1s ease-out 0.3s backwards;
}

.hero-header p {
    animation: slideInRight 1s ease-out 0.5s backwards;
}

.hero-header .btn {
    animation: slideInRight 1s ease-out 0.7s backwards;
}

/* Modern Animations */
@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 30px rgba(175, 62, 62, 0.2);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 0 40px rgba(175, 62, 62, 0.3);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(1);
        box-shadow: 0 0 30px rgba(175, 62, 62, 0.2);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(0.9);
        box-shadow: 0 0 20px rgba(175, 62, 62, 0.1);
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(360deg) scale(1);
        box-shadow: 0 0 30px rgba(175, 62, 62, 0.2);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(-45deg) scale(1);
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(175, 62, 62, 0.3));
    }
    25% {
        transform: translateY(-20px) rotate(-35deg) scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(175, 62, 62, 0.4));
    }
    50% {
        transform: translateY(0) rotate(-45deg) scale(1);
        opacity: 0.7;
        filter: drop-shadow(0 0 10px rgba(175, 62, 62, 0.3));
    }
    75% {
        transform: translateY(-20px) rotate(-55deg) scale(0.9);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(175, 62, 62, 0.4));
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
        box-shadow: 0 0 50px rgba(175, 62, 62, 0.3);
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
        box-shadow: 0 0 70px rgba(175, 62, 62, 0.4);
    }
}

@keyframes moveLine {
    0% {
        transform: translateX(-100%) scaleX(0.5);
        opacity: 0;
        box-shadow: 0 0 20px rgba(234, 235, 208, 0.1);
    }
    50% {
        transform: translateX(0%) scaleX(1);
        opacity: 1;
        box-shadow: 0 0 30px rgba(234, 235, 208, 0.3);
    }
    100% {
        transform: translateX(100%) scaleX(0.5);
        opacity: 0;
        box-shadow: 0 0 20px rgba(234, 235, 208, 0.1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .animated-shape {
        transform: scale(0.8);
    }
    
    .travel-icon {
        font-size: 2.5rem;
    }
    
    .glow-orb {
        transform: scale(0.9);
    }
}

@media (max-width: 575.98px) {
    .animated-shape {
        transform: scale(0.6);
    }
    
    .travel-icon {
        font-size: 2rem;
    }
    
    .glow-orb {
        transform: scale(0.7);
    }
}


/*** Section Title ***/
.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all 0.4s ease;
}

.section-title::before {
    width: 40px;
    top: -10px;
    left: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    transition: all 0.5s ease;
}

.section-title:hover::before {
    width: 60px;
}

.section-title:hover::after {
    width: 100%;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(175, 62, 62, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: 0;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--primary);
    color: var(--light);
}

.service-item:hover::before {
    height: 100%;
}

.service-item * {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-item:hover * {
    color: var(--light) !important;
}

.service-item i {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.service-item:hover i {
    transform: scale(1.1) rotate(5deg);
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(85, 120, 153, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(175, 62, 62, 0.1);
    position: relative;
    height: 100%;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(85, 120, 153, 0.2);
    border-color: var(--primary);
    background: var(--light);
}

.package-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-item:hover .package-img img {
    transform: scale(1.1);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(85, 120, 153, 0.2), rgba(188, 221, 252, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.package-item:hover .package-overlay {
    opacity: 1;
}

.package-tag {
    background: var(--primary);
    color: var(--light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(85, 120, 153, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.package-item:hover .package-tag {
    transform: translateY(0);
    opacity: 1;
}

.package-price {
    background: var(--gradient-primary);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--light);
}

.package-item:hover .package-price {
    transform: translateY(0);
    opacity: 1;
}

.package-price small {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.package-price h4 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.package-content {
    padding: 25px;
    background: #ffffff;
}

.package-duration {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-duration i {
    font-size: 1.1rem;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.package-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.package-destinations span {
    background: rgba(188, 221, 252, 0.15);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.package-destinations span:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.package-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.feature {
    background: rgba(188, 221, 252, 0.1);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.feature i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.feature span {
    display: block;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature:hover i,
.feature:hover span {
    color: #ffffff;
}

.package-item .btn {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.package-item .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-secondary);
    transition: all 0.4s ease;
    z-index: -1;
}

.package-item .btn:hover::before {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .package-img {
        height: 220px;
    }
    
    .package-title {
        font-size: 1.3rem;
    }
    
    .package-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .package-img {
        height: 200px;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-price h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .package-destinations {
        justify-content: center;
    }
    
    .package-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .package-description {
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--light);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 153, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(19, 136, 8, 0.1) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-brand:hover i {
    transform: rotate(360deg);
}

.footer-brand h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .btn-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .btn-social:hover {
    transform: translateY(-3px);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.footer .btn-link {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer .btn-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer .btn-link:hover {
    color: var(--accent);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer .btn-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer h4 {
    color: var(--light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer h4:hover::after {
    width: 60px;
}

.footer .copyright {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer .copyright a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .copyright a:hover {
    color: #fff;
}

.footer .footer-menu {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer .footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer .footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer .footer-menu a:hover {
    color: var(--primary);
}

.footer .footer-menu a:hover::after {
    width: 100%;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-brand h1 {
        font-size: 2rem;
    }
    
    .hero-header {
        text-align: center;
    }
    
    .section-title::before,
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Loading Animation */
#spinner {
    background: var(--gradient-primary);
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--light);
    border-right-color: transparent;
    animation: spinner-border 1s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

/* Sticky Navbar Logo */
.sticky-top .logo-icon {
    font-size: 1.6rem;
}

.sticky-top .logo-main {
    font-size: 1.3rem;
}

.sticky-top .logo-sub {
    font-size: 0.85rem;
}

/* Hero Text Styles */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.4;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
    letter-spacing: 0.5px;
}

/* Updated Hero Tagline Styles */
.hero-tagline {
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(175, 62, 62, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(234, 235, 208, 0.2);
    animation: fadeInUp 1s ease-out 0.8s backwards;
    transform-origin: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(175, 62, 62, 0.2);
}

.hero-tagline:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(175, 62, 62, 0.2);
    box-shadow: 0 20px 40px rgba(175, 62, 62, 0.3);
    border-color: rgba(234, 235, 208, 0.3);
}

.tagline-text {
    background: linear-gradient(45deg, #ffffff, #EAEBD0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(175, 62, 62, 0.2);
}

.tagline-decoration {
    border-top: 2px solid rgba(234, 235, 208, 0.2);
}

.tagline-decoration i {
    color: #EAEBD0;
    text-shadow: 0 0 20px rgba(175, 62, 62, 0.3);
}

/* Responsive adjustments for hero text */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .tagline-text {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .tagline-text {
        font-size: 1.6rem;
    }
    
    .tagline-sub {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tagline-text {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        padding: 1.2rem;
    }
    
    .tagline-decoration i {
        font-size: 1.2rem;
    }
    
    .tagline-sub {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(188, 221, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(85, 120, 153, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(85, 120, 153, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 5px solid #ffffff;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(85, 120, 153, 0.2), rgba(188, 221, 252, 0.2));
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
}

.about-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-img:hover::before {
    opacity: 1;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
    filter: brightness(1.05);
}

.about-img:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.about-shape-1,
.about-shape-2 {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite;
    z-index: -1;
    backdrop-filter: blur(5px);
}

.about-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background: linear-gradient(45deg, rgba(85, 120, 153, 0.2), rgba(188, 221, 252, 0.2));
    animation-delay: 0s;
}

.about-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, rgba(188, 221, 252, 0.2), rgba(85, 120, 153, 0.2));
    animation-delay: -5s;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, #557899, #BCDDFC);
    padding: 25px 35px;
    border-radius: 15px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(85, 120, 153, 0.3);
    transform: rotate(-5deg);
    animation: floatExperience 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.about-experience::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #557899, #BCDDFC, #557899);
    border-radius: 15px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

.about-experience h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    background: linear-gradient(45deg, #ffffff, #BCDDFC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.about-experience p {
    font-size: 1rem;
    margin: 5px 0 0;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-description {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid #BCDDFC;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.about-description:hover {
    border-left-color: #557899;
    padding-left: 30px;
    color: #333;
}

.about-feature {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: rgba(188, 221, 252, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(188, 221, 252, 0.2);
    backdrop-filter: blur(5px);
}

.about-feature:hover {
    background: rgba(85, 120, 153, 0.15);
    transform: translateX(10px);
    border-color: rgba(85, 120, 153, 0.3);
    box-shadow: 0 5px 15px rgba(85, 120, 153, 0.1);
}

.about-feature i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: #557899;
    background: linear-gradient(45deg, #557899, #BCDDFC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-feature:hover i {
    transform: translateX(5px);
}

.about-feature span {
    font-weight: 500;
    color: #333;
    margin-left: 12px;
    font-size: 1.05rem;
}

.about-cta .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #557899, #BCDDFC);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #BCDDFC, #557899);
    transition: all 0.4s ease;
    z-index: -1;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(85, 120, 153, 0.3);
}

.about-cta .btn:hover::before {
    width: 100%;
}

.about-cta .btn i {
    transition: all 0.3s ease;
    margin-left: 8px;
}

.about-cta .btn:hover i {
    transform: translateX(5px);
}

@keyframes floatExperience {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .about-img-wrapper {
        margin-bottom: 40px;
    }
    
    .about-experience {
        right: 20px;
        bottom: 20px;
        padding: 20px 25px;
    }
    
    .about-experience h2 {
        font-size: 2.4rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape-1,
    .about-shape-2 {
        display: none;
    }
    
    .about-experience {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
    
    .about-experience h2 {
        font-size: 2rem;
    }
    
    .about-feature {
        padding: 12px 20px;
    }
}

@media (max-width: 575.98px) {
    .about-img {
        transform: none;
        border-width: 3px;
    }
    
    .about-experience {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        transform: none;
        text-align: center;
    }
    
    .about-feature {
        margin-bottom: 10px;
        padding: 10px 15px;
    }
    
    .about-cta .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}