/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    box-sizing: border-box;
}

.head-section {
    background-image: url("../images/4.png");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 15px 0px;
    width: 95%;
    margin: auto;
    z-index: 1000;
}

.navbar .logo img {
    width: 9.0rem;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    
}
.socialmedia-icon {
    align-items: center;
}

.wrapper {
    display: inline-flex;
    list-style: none;
    width: 100%;
    padding-top: auto;
    font-family: "Poppins", sans-serif;
    justify-content: center;
  }
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 35px;
    height: 35px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6600;
}

/* Menu toggle button (hamburger icon) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
   
    height: 70vh;
    display: flex;
    justify-content: center;
    
    text-align: center;
}

.hero-content {
    margin-top: 4rem;
    color: white;
}

.hero h1 {
    font-family: "Sriracha", cursive;
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: black;
}

.hero-buttons {
    display: flex;
    justify-content: center;
}

.hero-buttons .btn1 {
    background-color: #ff6600;
    color: white;
    margin: 0 10px;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.hero-buttons .btn2 {
    border: 1px solid black;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.hero-buttons .btn1:hover {
    background-color: #e65500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        margin-right: 1rem;
    }
    .navbar .logo img {
        width: 8.5rem;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.9);
        width: 200px;
        display: none;
        
    }
    .navbar ul {
        z-index: -1000;
    }
    .socialmedia-icon {
        display: none;
    }


    .nav-menu.active {
        display: flex;
        
       
    }

    .nav-menu li {
        margin: 10px 0;
    }

    

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 16px;
    }
    .hero {
        flex-direction: column;
        margin-bottom: 20px;
    }
  
}


/* Card Container Styles */
#cards-section {
    padding: 40px;
    text-align: center;
    background-image: url("../images/7.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    width: 20%;
    margin: 20px;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    height: auto;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.card-title {
    font-size: 1.2rem;
    margin: 5px 0;
}

.card-description, .card-price, .card-rating, .card-duration {
    font-size: 1rem;
    margin: 2px 0;
}

.card-button {
    padding: 10px 20px;
    background-color: #ffcc66;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.card-button:hover {
    background-color: #ff9900;
    color: #fff;
}

/* Popup Modal Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    padding: 50px 0; /* Adds space at the top and bottom */
}

.popup-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.close-button {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Popup Layout: Two-column */
.popup-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Left column: Details */
.popup-details {
    display: flex;
    flex-direction: column;
    width: 40%;
    padding-right: 20px;
}

.popup-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup-details p {
    font-size: 1rem;
    margin: 5px 0;
}

.whatsapp-button {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

/* Right column: Video */
.popup-video {
    width: 55%;
    text-align: center;
}

.popup-video video {
    width: 70%;
    height: auto;
    max-height: 75vh; /* The video will be at most 60% of the viewport height */
    border-radius: 10px;
    object-fit: contain;
}

@media (max-width: 768px) {

    .card {
        width: 90%;
    }
    
    .popup-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        
    }
    .popup-details {
        width: 90%;
        padding-right: 0;
    }
    .popup-video {
        width: 90%;
        margin-top: 9px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .popup-details p {
        font-size: 1rem;
        margin: 2px 0;
    }
    .popup-details h3 {
        font-size: 1.5rem;
        margin-bottom: 7px;
    }
    .whatsapp-button {
        text-align: center;
        padding: 5px 10px;
    }
    
  
  }

/* Get in Touch Section */
.get-in-touch {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    background-image: url("../images/7.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.get-in-touch .container {
    max-width: 800px;
    margin: 0 auto;
}

.get-in-touch h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.get-in-touch p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
}

.contact-form .btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .btn:hover {
    background-color: #e65500;
}

/* Responsive Get in Touch Section */
@media (max-width: 768px) {
    .get-in-touch h2 {
        font-size: 28px;
    }

    .get-in-touch p {
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .contact-form .btn {
        font-size: 16px;
    }
}

/* Footer Section */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff6600;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6600;
}

.footer-center img {
    width: 120px;
    height: auto;
}

.footer-right ul.social-icons {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.footer-right ul.social-icons li {
    margin: 0 10px;
}

.footer-right ul.social-icons li a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.footer-right ul.social-icons li a:hover img {
    transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-center, .footer-right {
        margin-bottom: 30px;
    }

    .footer ul.social-icons li {
        margin: 0 5px;
    }

    .footer-center img {
        width: 100px;
    }
}
