

/* Package Redesign Styles */
.package-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}


.package-container{
    min-width: 1020px;
    padding: 0 10% 0 ;
}
.sec-title {
    font-size: 2rem;
    color: var(--title-color);
    margin-bottom: 0px !important;
    font-weight: 600;
}

.package-columns {
    display: flex;
    justify-content: center; /* centers the content horizontally */
}


.includes-column {
    text-align: left; /* keep bullets aligned to text */
}



.sec-text {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package-content {
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    margin-bottom: 30px;
    /* background: #fff; */
    justify-content: center;
    align-items: center;
}

.package-image {
    width: 60%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center ;
    transition: transform 0.5s ease;
}

.package-image:hover img {
    transform: scale(1.05);
}

.package-details {
    width: 65%;
    padding: 30px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.package-details h2 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.package-description {
    margin-bottom: 20px;
    color: #777;
    font-size: 0.95rem;
}

.package-columns {
    display: flex;
    justify-content: center; /* center horizontally */
    width: 100%;
  }

  .includes-column {
    text-align: left;
  }

.package-list {
    padding-left: 1.5em;           /* space for bullets */
    margin: 0 auto;                /* auto left/right margin for centering */
  }

.package-list li {
    margin-bottom: 10px;
    color: var(--title-color);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 400;
}



.package-list li:before {
   
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Floating Icons Styles */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: var(--accent-color);
    opacity: 0.3;
    animation: float 4s ease-in-out infinite, fadeIn 1.5s ease-out;
    transition: all 0.3s ease;
}

/* Updated individual icon positions */
.icon-1 { top: 5%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; left: 10%; animation-delay: 0.3s; }
.icon-3 { top: 45%; left: 5%; animation-delay: 0.6s; }
.icon-4 { bottom: 20%; right: 15%; animation-delay: 0.9s; }
.icon-5 { top: 30%; left: 2%; animation-delay: 1.2s; }
.icon-6 { bottom: 5%; left: 10%; animation-delay: 1.5s; }
.icon-7 { bottom: 30%; right: 5%; animation-delay: 1.8s; }
.icon-8 { top: 60%; left: 15%; animation-delay: 2.1s; }
.icon-9 { bottom: 10%; right: 25%; animation-delay: 2.4s; }
.icon-10 { top: 10%; right: 10%; animation-delay: 2.7s; }
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .package-content {
        flex-direction: column;
    }
    
    .package-container{
        min-width: 200px;
        padding: 0px 8% 0px 8% ;
    }
    .package-image {
        width: 100%;
        height: 350px;
    }
    
    .package-details {
        width: 100%;
    }
    
    .includes-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .package-section {
        padding: 40px 0;
    }
    .package-container{
        min-width: 200px;
        padding: 0 10% 0 ;
        padding-bottom: 2%;
        padding: 0px 8% 0px 8% ;

    }
    .sec-title {
        font-size: 1.75rem;
    }
    
    .package-details {
        padding: 20px;
    }
    
    .package-details h2 {
        font-size: 1.5rem;
    }
    
    .floating-icon {
        font-size: 20px;
    }
    .hero-slider {
        position: relative;
        height: 40vh;
        overflow: hidden;
    }
    
}

@media (max-width: 576px) {
    .package-section {
        padding: 30px 0;
    }
    .package-container{
        max-width: 700px;
        padding: 0px 8% 0px 8% ;
    }
    .sec-title {
        font-size: 1.5rem;
        padding-bottom: 2%;
    }
    
    .package-image {
        height: 250px;
    }
    
    .package-details {
        padding: 15px;
    }
    
    .package-details h2 {
        font-size: 1.25rem;
    }
    
    .package-list li {
        font-size: 0.85rem;
    }
    
    .floating-icon {
        font-size: 16px;
    }
}