* {
    padding: 0;
    margin: 0;
}

.navabr-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(59, 57, 57, 0.675);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0px;
    z-index: 1000;
}


.nav-link {
    display: flex;
    gap: 20px;
    font-size: 20px;
    font-weight: 400;

}

.nav-link a {
    text-decoration: none;
    color: var(--white, rgba(255, 255, 255, 1));
}

.nav-link li {
    list-style: none;
}

.register-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    color: var(--white, rgba(255, 255, 255, 1));
    font-size: 20px;
}

.register-link a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.register-link a:hover {
    opacity: 0.8;
}

#sign-up {
    background-color: #FA8B02;
    border-radius: 50px;
    padding: 5px 30px;
    cursor: pointer;
}

.wrapper {
    max-width: 1200px;
    margin: 90px auto;
    padding: 20px;

}

.des_header-conatiner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.less-than {
    background-color: #EFEFEF;
    border-radius: 50%;
    padding: 15px;
}

.greater-than {
    background-color: #FA8B02;
    border-radius: 50%;
    padding: 15px;
    color: white;

}

.arrows {
    display: flex;
    justify-items: center;
    align-items: center;
    gap: 10px;
    font-size: 10px;
}

.package-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pricing {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* About Section Styles */
.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 100px;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1.2;
}

.about-content .sub-title {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: sans-serif;
}

.about-content .main-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 25px;
    font-family: sans-serif;
}

.about-content .description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-family: sans-serif;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FA8B02; /* Primary Orange */
    margin-bottom: 5px;
    font-family: sans-serif;
}

.stat-item p {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    line-height: 1.4;
    font-family: sans-serif;
}

/* Popular Packages Section */
.popular-packages .main-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    font-family: sans-serif;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pkg-card {
    border: 1px solid #ECECEC;
    border-radius: 10px;
    overflow: hidden;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
}

.pkg-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.pkg-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes cards equal height */
}

.pkg-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.pkg-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
}

.pkg-price .currency {
    font-size: 14px;
    color: #888;
    margin-right: 5px;
}

.pkg-price .amount {
    font-size: 40px;
    font-weight: 800;
    color: #FA8B02;
    margin-right: 5px;
    line-height: 1;
}

.pkg-price .duration {
    font-size: 14px;
    color: #888;
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the button down to the bottom */
}

.pkg-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.book-btn {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: 1px solid #FA8B02;
    color: #FA8B02;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.book-btn:hover {
    background: #FA8B02;
    color: white;
}

/* Footer Area */
.site-footer {
    background-color: #333333;
    padding: 60px 0 30px;
    color: white;
    font-family: sans-serif;
    margin-top: 80px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 13px;
    color: #CCCCCC;
}

.footer-col ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FA8B02;
}

/* Contacts Alignment */
.contacts-list {
    margin: 0;
    padding: 0;
}

.contacts-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-list li i {
    color: #FA8B02;
    font-size: 14px;
    width: 15px; /* Ensures alignment if icons are different widths */
    text-align: center;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #FA8B02;
    color: #333333;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: white;
}

/* Footer Bottom Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #CCCCCC;
}
