* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    margin-top: 110px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:wheat;
    padding: 10px 20px;
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo img {
    height: 60px;
    margin-right: 40px;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
    font-size: 18px;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color:black;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
}


.nav-links a:hover {
    color: #ff1e3b;
    border-bottom: 2px solid navy; /* Underline on hover */
}





.icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px;
    font-size: 12px;
    border-radius: 15px;
    border: 1px ;
    outline: none;
    width: 100%;
    padding-right: 80px;
}

.search-btn {
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #ff1e3b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.search-btn i {
    font-size: 18px;
}

.search-btn:hover {
    background-color: #45a049;
}

.icon {
    color:#ff1e3b;
    font-size: 24px;
    text-decoration: none;
}

.icon:hover {
    color:royalblue;
}


.whatsapp-link {
    display: inline-block;
    text-decoration: none;
}

.whatsapp-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

.whatsapp-link:hover .whatsapp-image {
    width: 40px;
    height: 40px;
    transition: all 0.1s ease;
}


.phone-icon {
    font-size: 25px;
}

.footer {
    background-color:#007bff;
    color: white;
    text-align: center;
    padding: 20px 20px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-nav {
    margin-bottom: 15px;
}

.footer-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.footer-links a:hover {
    color: #25D366;
}

.social-media {
    margin-bottom: 10px;
}

.social-icon {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon:hover {
    color: #25D366;
}

.footer p {
    margin: 0;
    font-size: 12px;
}





.slideshow-container {
    width: 95%;
    height: 75vh;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    background-color: #333;
    margin-bottom: 40px;
    border-radius: 25px;
}



.slideshow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    max-width: 100%;
    line-height: 1.5;
    z-index: 3;
    color: black;
    border-radius: 10px;
}

.slideshow-text p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    position: relative;
    padding: 0;
    margin-bottom: 100px;
}

.first-part,
.second-part {
    line-height: 1.5;
    color: black;
}

.first-part {
    font-weight: 700;
    font-size: 30px;
    font-weight: bold;
}

.second-part {
    font-size: 25px;
    font-weight: normal;
}





.slideshow {
    display: flex;
    animation: slide 25s infinite;
    width: 400%;
}

.slideshow img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-100vw);
    }
    50% {
        transform: translateX(-200vw);
    }
    75% {
        transform: translateX(-300vw);
    }
    100% {
        transform: translateX(0);
    }
}

body {
    margin-top: 110px;
}

.our-city {
    text-align: center;
    padding: 20px;
    color:gold ;
}

.our-city h2{
    font-size: 2rem;
    margin-bottom: 20px;
}

.city-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    justify-items: center;
}

.city-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.city-image img:hover
{
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.city-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
}




.our-template {
    text-align: center;
    padding: 50px 20px;
    background-color: #e9e9e9;
}

.our-template h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color:#2c3e50;
}

.template-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: stretch;
}

.template-images img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.template-images img {
    aspect-ratio: 1;
}

.template-images img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.image-container {
    position: relative;
    overflow: hidden;
  }
  
  .image-container img {
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .image-container:hover img {
    transform: scale(1.2);
  }
  


.auth-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 15px;
}

.auth-btn:hover {
    background-color: #45a049;
}

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding-top: 60px;
}

.auth-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    width: 100%;
}

.auth-form h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.auth-form .submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 10px;
}

.auth-form .submit-btn:hover {
    background-color: #45a049;
}

.show {
    display: block;
}


.menu-item {
    position: relative;
}

.menu-btn {
    background-color:#ff1e3b;
    color: white;
    font-size: 10px;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-btn:hover {
    background-color: blue;
}


.dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color:#00bcd4;
    width: 250px;
    height: 100%;
    border-radius: 0px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding-top: 20px;
    transition: transform 0.3s ease-in-out;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 12px 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #34495E;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: #E74C3C;
    color: white;
    border-radius: 4px;
}

.dropdown-menu li a.active {
    background-color: #2980B9;
    color: white;
    font-weight: 600;
}

.dropdown-menu .close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.auth-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.submit-btn {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.submit-btn:hover {
    background-color: blue;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: red;
}



#open-chatbot {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#open-chatbot:hover {
    background-color: #45a049;
}

.chatbot-avatar {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
}

#chatbot-container {
    position: fixed;
    bottom: 130px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#chatbot-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

#close-chatbot {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#chatbot-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    height: calc(100% - 60px);
}

.chatbot-message {
    display: flex;
    margin-bottom: 10px;
}

.chatbot-message.bot {
    flex-direction: row;
}

.bot-avatar {
    margin-right: 10px;
}

#chatbot-input {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background-color: #f1f1f1;
    border-radius: 0 0 10px 10px;
}

#user-input {
    width: 80%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#send-message {
    padding: 6px 12px;
    background-color: #4CAF50;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#send-message:hover {
    background-color: #45a049;
}

.bot-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.search-bar-container {
    position: absolute;
    top: 290px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 10;
}

.search-bar {
    width: 90%;
    height: 75px;
    padding: 10px;
    font-size: 20px;
    border: 2px solid #ddd;
    border-radius: 35px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.8);
    gap: 50px;
}

.search-bar-container button {
    position: absolute;
    right: 125px;
    top: 12px;
    bottom: 0;
    width: 140px;
    height: 65%;
    background-color: #ff1e3b;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
}

.search-bar-container button:hover {
    background-color: #0056b3;
}




.slideshow {
    display: flex;
    overflow: hidden;
    position: relative;
}

.slideshow img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

.video-section {
    background-color: wheat;
    padding: 40px 20px;
    text-align: center;
}

.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.video-section {
    background-color:#e9e9e9;
    padding: 20px 20px;
    text-align: center;
}

.video-section h2 {
    font-size: 1.6em;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
    font-weight: bold;
    margin-top: 0;
}

.video-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background-color:#e9e9e9;
    height: 360px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
}

video.playing + .play-button {
    display: none;
}


section.our.Events {
    padding: 20px 10px;
    background-color:papayawhip;
    text-align: center;
}

section.our.Events h2 {
    font-size: 2rem;
    margin-top: 180px;
    color: #2c3e50;
    letter-spacing: 2px;
}

.events-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-items: center;
    
}

.image-container {
    position: relative;
    width: 100%;
    padding-top: 90%;
    overflow: hidden;
}

.events-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.city-name {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
}



/*....................................................................*/



@media (max-width: 768px) {

    .icons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container {
        display: flex;
        align-items: center;
        position: relative;
    }

    .search-input {
        padding: 8px;
        font-size: 12px;
        border-radius: 12px;
        border: 1px solid #ccc;
        outline: none;
        width: 100%;
        padding-right: 60px;
    }

    .search-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: none;
        cursor: pointer;
        color: #ff1e3b;
        border-radius: 50%;
        width: 30px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .search-btn i {
        font-size: 18px;
    }

    .search-btn:hover {
        background-color: #45a049;
    }

    .icon {
        color: #ff1e3b;
        font-size: 18px;
        text-decoration: none;
    }

    .icon:hover {
        color: royalblue;
    }

    .whatsapp-link {
        display: inline-block;
        text-decoration: none;
    }

    .whatsapp-image {
        width: 35px;
        height: 35px;
        object-fit: contain;
        display: block;
    }

    .whatsapp-link:hover .whatsapp-image {
        width: 40px;
        height: 40px;
        transition: all 0.1s ease;
    }

    .phone-icon {
        font-size: 25px;
    }

    .auth-modal-content {
        width: 55%;
        padding: 10px;
    }

    .auth-form h2 {
        font-size: 1.7rem;
    }

    .auth-form input,
    .auth-form .submit-btn {
        width: 95%;
        font-size: 20px;
        height: 50px;
    }

    .auth-btn {
        font-size: 1.5rem;
        padding: 6px 12px;
    }

    .menu-btn {
        width: 30px;
        font-size: 16px;
        padding: 4px;
        height: 30px;
    }

    .dropdown-menu {
        width: 20%;
        padding-top: 10px;
    }

    .dropdown-menu li {
        padding: 6px 8px;
        font-size: 28px;
    }
    .slideshow-container {
        height: 60vh;
        width: 95%;
        margin-bottom: 60px;
    }

    .slideshow-text p {
        font-size: 10px;
        line-height: 1;
        margin: 0;
        padding: 0;
        margin-bottom: 220px;
        text-align: center;
        
    }


    .slideshow-text .first-part {
        font-weight: bold;
        font-size: 32px;
        
    }

    .slideshow-text .second-part {
        font-style: italic;
        font-size: 28px;
    }

    .slideshow img {
        height: 60vh;
        opacity: 0.8;
    }

    .search-bar-container {  
        top: 280px;
        left: 50%;
    }

    .search-bar {
        width: 90%;
        height: 60px;
        padding: 20px;
        font-size: 20px;
        border: 2px solid #ddd;
        border-radius: 35px;
        box-sizing: border-box;
    }

    .search-bar-container button {
        width: 100px;
        font-size: 10px;
        margin-bottom: 20px;
        height: 30px;
        right: 80px;
    }

    .city-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .template-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .events-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
    }

   
    
    
   
}
