.hero-section {
    background-image:  url(../images/header.webp);
    background-size: cover;
    background-position: left center;
    padding: 180px 0;
    position: relative;}



.journey-card {
    background-color: #525150;
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
     background-color: #ffc252;
     color:#000000;

}

.journey-card:hover .step-number  {
  background-color: #000000;

}

.blue {color:#000000; margin-bottom: 10px;}
.blue span {color:#000000 !important; border-bottom: 2px solid #000000;}




.blue-tab .tab-nav.tab-nav2 {
  border-bottom: 1px solid #ffffff;
}

.blue-tab .tab-nav.tab-nav2 li.ui-state-active a {
  border-radius: 6px 6px 0px 0px;
  background: #000000;
  color: #ffffff;
}

.blue-tab .tab-nav.tab-nav2 li {
  border-radius: 6px 6px 0px 0px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #ffffff;
}


.step-number {
   position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Highlights Section */
.highlights-section {
   background: #FECD46;
    color: white;

}

.highlights-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

.day-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: #FECD46;
}

.tab:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.highlights-grid {
    background-color: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: scale(1.05);
    cursor:default;
}

.card-img {
    width: 100%;
    height: auto;

}

.card-overlay {
        border-radius: 0 0 15px 15px;
    background-color: #FECD46;
    color: white;
    padding: 1.5rem 1rem 1rem;
    align-items: flex-end;
    display: flex;
}

.card-overlay h5 {
    margin: 0;
    font-size: 13px;
    font-weight: normal;
    color: #000000;
    font-family: 'Inter', sans-serif;
    width: 90%;
    padding-right: 20px;

}

.arrow-btn {
    background-color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Essentials Section */
.essentials-section {
    background-color: #ffffff;
}

.essentials-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.essential-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0px;
    border: 1px solid #000000;
    height: 100%;
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.essential-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.essential-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}

.essential-card p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.know-more-btn {
    background-color: transparent;
    border: none;
    color: #000000;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex
;
}

.know-more-btn:hover {
    color: #5a67d8;
}

.btn-number {
    background-color: #2c3e50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .journey-title,
    .highlights-title,
    .essentials-title {
        font-size: 1.8rem;
    }

    .journey-card {
        height: auto;
        min-height: 180px;
        padding: 1.5rem 1rem;
    }

    .day-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }



    .essential-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        padding: 1rem;
    }

    .card-overlay h5 {
        font-size: 0.9rem;
    }

    .arrow-btn {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}