*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}



.html{
    font-size: 62.5%;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.navbar{
    box-shadow: 0px 5px 10px 0px #aaa;
    /* position: fixed; */
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 0.85;
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
}
.logo{
    order: 1;
    font-size: 2.3rem;
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a{
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover{
    color: #117964;
}

@media (max-width: 768px){
    .navbar{
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items{
        padding-top: 100px;
        background: rgb(255, 255, 255);
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow:  5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo{
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}

/* footer */
.footer {
    
  background-color: rgb(255, 150, 50);
  color: white;
  padding: 40px 20px 10px;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about p {
  margin-top: 10px;
  line-height: 1.6;
}

.footer-logo {
  max-width: 150px;
}

.footer-contact, .footer-social {
  flex: 1 1 200px;
}

.footer-contact h3, .footer-social h3 {
  margin-bottom: 10px;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-social a img {
  width: 30px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-social a {
    margin: 0vh 5vh;
}


.footer-social a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* now */


 .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background-color: #fff;
}

.hero-text {
  flex: 1;
  padding-right: 30px;
}

.hero-text h1 {
  font-size: 1.5rem;
  color: #2e3a59; /* Dark luxury tone */
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, rgb(255, 150, 50), #f0d68a); /* Gold gradient */
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
    margin-top: 4vh;
  max-width: 100%;
  height: 80vh;
  border-radius: 20px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}


/* sldkf */
.packages-home {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.packages-home h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* Flexbox layout for single line */
.packages-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap; /* keep in one line */
}

.package-box {
    flex: 1 1 23%; /* four boxes in one row with spacing */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.package-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.package-box h3 {
    margin-bottom: 15px;
    color: #444;
}

.package-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-box ul li {
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.btn-learn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-learn:hover {
    background-color: #0056b3;
}

/* Responsive: allow wrapping on small screens */
@media(max-width: 1200px){
    .packages-grid {
        flex-wrap: wrap;
    }

    .package-box {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media(max-width: 700px){
    .package-box {
        flex: 1 1 100%;
    }
}
/* slkdjf */
.services-home {
    padding: 60px 10%;
    background-color: #fff;
    text-align: center;
}

.services-home h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    flex: 1 1 30%;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.service-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.btn-reserve {
    display: inline-block;
    padding: 12px 25px;
    background-color: blue;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-reserve:hover {
    background-color: rgb(255, 150, 50);
}

/* Responsive */
@media(max-width: 900px){
    .service-box {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media(max-width: 600px){
    .service-box {
        flex: 1 1 100%;
    }
}


.counters-home {
    display: flex;
    justify-content: space-around;
    background-color: #f5f5f5;
    padding: 60px 10%;
    text-align: center;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1 1 200px;
    margin: 20px;
}

.counter-box h3 {
    font-size: 3rem;
    color: #ff9900;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 1.2rem;
    color: #333;
}

/* Responsive */
@media(max-width: 700px){
    .counters-home {
        flex-direction: column;
        align-items: center;
    }

    .counter-box {
        margin: 15px 0;
    }
}


/* animation */
.loop-animation {
    width: 100%;
    overflow: hidden;
  /* optional: makes text pop */
    padding: 20px 0;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marqueeLoop 10s linear infinite;
}

.marquee span {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(255,150,50);
    margin-right: 50px; /* space between repeats */
    white-space: nowrap;
}

/* Keyframes for continuous left-to-right movement */
@keyframes marqueeLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* comet */
.testimonial-home {
    background-color: #f9f9f9;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.testimonial-box {
    max-width: 600px;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
}

.comment {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.customer-name {
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 15px;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
}


.why-choose-us {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    flex: 1 1 22%;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #ff9900;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media(max-width: 1000px){
    .feature-box {
        flex: 1 1 45%;
    }
}

@media(max-width: 700px){
    .feature-box {
        flex: 1 1 100%;
    }
}

/* logo new */
.contact-form-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff9900;
    box-shadow: 0 0 8px rgba(255,150,50,0.4);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    background-color: #ff9900;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

/* Responsive */
@media(max-width: 700px){
    .contact-form-section {
        padding: 40px 5%;
    }
}


/* ceo- */
.ceo-section {
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
}

.ceo-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #333;
}

/* Card */
.ceo-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 24px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
}

.ceo-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgb(255, 150, 50);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ceo-info {
  text-align: left;
}

.ceo-name {
  font-size: 1.8rem;
  margin: 0 0 6px;
  color: #222;
}

.ceo-title {
  margin: 0 0 16px;
  color: #666;
}

.ceo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-call {
  background: rgb(255, 150, 50);
  color: #000;
  box-shadow: 0 6px 16px rgba(255, 150, 50, 0.35);
}

.btn-call:hover {
  background: rgb(240, 135, 40);
}

.btn-wa {
  background: #0a66c2; /* blue accent */
  color: #fff;
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35);
}

.btn-wa:hover {
  background: #084f97;
}

/* Responsive */
@media (max-width: 700px) {
  .ceo-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ceo-info {
    text-align: center;
  }
  .ceo-actions {
    justify-content: center;
  }
}
