* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}

.hero {
    padding-top: 80px;
}

.hero {
    position: relative;
    height: calc(100vh - 2.35rem);
    display: flex;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    background-color: #000000;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    
}

.text {
    color: #ece6e6;
}

.text h1 {
    color: #ffffff;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
    margin-left: -3.5rem;
    line-height: 1.1;
    font-family: 'Times New Roman', Times, serif;
}

.text p {
    color: #dacebd;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 800;
    margin-left: -3.5rem;
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.text a {
    margin-left: -4.5rem;
    margin-bottom: 8rem;
    font-size: 1.4rem;
}

.book-now {
    display: inline-flex;
    align-items: center;
    padding: 0.05px 40px;
    background-color:#3989e4;
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    border-radius: 100px;
    margin-bottom: 2rem;
    transition: background-color 0.3s, color 0.3s;
}

.book-now img {
    width: 85px;
    height: auto;
    margin-right: 10px;
    margin-left: -40px;
}

.book-now span {
    font-size: 1.45rem;
}

.book-now:hover {
    background-color: #efeef2;
    color: #030303;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-images {
    margin-left: -39rem;
    margin-right: 5rem;
    gap: 300px;
}

.about-image {
    width: 500px;
    height: 350px;
    border-radius: 10px;
}

.about-content {
    margin-right: -30rem;
    max-width: 600px;
    text-align: left;
}

.about-content h2 {
    color: #3989e4;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.explore-btn {
    padding: 10px 20px;
    background-color: #3989e4;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.09rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.explore-btn:hover {
    background-color: #eeeeee;
    color: #030303;
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #000;
    text-align: center;
}

.services h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 30px; 
    max-width: 100%; 
    margin: 0 auto;
    padding: 0 20px;
}

.service-image {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 420px;
    height: 400px;
    text-align: left;
}
.service-image img {
    width: 100%;
    height: 90%;
    border-radius: 10px;
}
.service-image p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 50px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.reviews-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    height: 250px;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.review-country {
    font-size: 0.9rem;
    color: #7a7777;
}

.review-text {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.review-rating {
    font-size: 1.2rem;
    color: #ffd700;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background-color: #000;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.pricing-title span {
    /* Add your styles here */
    color: #ff6f61;
    font-weight: bold;
}


.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background-color:#302c2c;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    height: 300px; /* Fixed height for all cards */
    text-align: center;
    display: flex;
    flex-direction: column;
    
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ff6f61;
    margin-bottom: 25px;
}
.pricing-card p1{
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.price {
    font-size: 2.0rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: auto; 
    margin-bottom:10px;
    text-align: center;
    
}

.pricing-card .book-now {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fdfcfc;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    margin-top: auto; /* Push button to bottom */
    margin-bottom: 0.4rem;
    text-align: center;
}

.pricing-card .book-now:hover {
    background-color: #ad4a41;
    color: #030303;
}

/* Discount Section */
.discount-section {
    padding: 50px 0;
    background-color: #cf5050;
    text-align: center;
}

.discount-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.discount-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.discount-container p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.discount-container h2 span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c9bd17;
}
.discount-btn {
    padding: 10px 20px;
    background-color: #ece6e6;
    color: #cf5050;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.discount-btn:hover {
    background-color: #c9bd17;
    color: #cf5050;
}


