* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montaga', serif;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}



body {
    overflow-x: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #fbf1e5;
}


body::-webkit-scrollbar {
    width: 14px;
    /* Mostly for vertical scrollbars */
    height: 10px;
    /* Mostly for horizontal scrollbars */
}

body::-webkit-scrollbar-thumb {
    /* Foreground */
    background: #BF8F2C;
    border-radius: 15px;
}

body::-webkit-scrollbar-track {
    /* Background */
    background: #ffffff;
}



.alert-login-text,
.alert-signup-text {
    color: red;
    font-weight: bold;
}


/* Loader */

.loading {
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    width: 200px;
    height: 200px;
}

.u-part {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw 2s ease-in-out forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.loading.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 100%;
    height: 100%;
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}

.loader:before,
.loader:after {
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}

.loader:before {
    animation: ball1 1.5s infinite;
    background-color: #fff;
    box-shadow: 30px 0 0 #BF8F2C;
    margin-bottom: 10px;
}

.loader:after {
    animation: ball2 1.5s infinite;
    background-color: #BF8F2C;
    box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(0.8)
    }

    50% {
        transform: rotate(360deg) scale(1.2)
    }

    100% {
        transform: rotate(720deg) scale(0.8)
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #BF8F2C;
    }

    50% {
        box-shadow: 0 0 0 #BF8F2C;
        margin-bottom: 0;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #BF8F2C;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #fff;
    }

    50% {
        box-shadow: 0 0 0 #fff;
        margin-top: -20px;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #fff;
        margin-top: 0;
    }
}


/* Uno Buddy */
.assistant-container {
    z-index: 99;
    position: fixed;
    bottom: 100px;
    /* Adjust as needed */
    right: 50px;
    /* Adjust as needed */
    width: auto;
    /* Image width */
    height: auto;
    /* Image height */
    cursor: pointer;
}

.assistant-image {
    width: 100px;
    filter: drop-shadow(1px 1px 20px black);
    height: 100px;
    object-fit: scale-down;
    /* Makes the image circular */
}

.assistant-image:hover {
    transform: scaleX(-1);
    border-radius: 50%;
    animation-play-state: paused;
    backdrop-filter: blur(10px);
    filter: drop-shadow(1px 1px 50px gold);
}


.message {
    word-spacing: 2px;
    font-family: 'Montaga', serif;
    position: absolute;
    border-radius: 10px;
    padding: 5px;
    top: -50px;
    right: 0;
    width: 400px;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.7);
    /* Transparent background */
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease;
}

.assistant-container:hover .message {
    display: block;
    opacity: 1;
}




.title {
    font-size: 24px;
    font-family: "Montaga", serif;
    margin-bottom: 40px;
    color: black;
}

.title h1 {
    padding: 1px;
}

h1,
.links a,
h3,
.text {
    font-family: "Montaga", serif;
    font-weight: 400;
    color: black;
}

p,
.li-text {
    font-size: 16px;
    font-weight: 500;
    color: #818181;
}

button {
    cursor: pointer;
}

/* Navbar */

nav {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 10;
}

.main-nav-container {
    position: fixed;
    width: 100%;

}

.top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-link {
    color: white;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.top-container hr {
    width: 100%;
}



.logo {
    flex: 1;
    text-align: center;
    margin-left: 290px;
}

.logo img {
    width: 20%;
    transition: 0.3s linear;
}

.language {
    cursor: pointer;
    color: white;
    margin-right: 20px;
}

/* .top-container .links{
    margin-top: -20px;
} */


/* Bot Popup */

#bot-popup .popup-content {
    padding: 20px 20px;
    width: 50%;
    height: 27%;
    padding-top: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#bot-popup .popup-content h1 {
    font-family: 'Montaga', serif;
    font-size: clamp(0.5rem, 0.6rem + 3vw, 2.5rem);
    margin-bottom: 10px;
}

#bot-popup .popup-content .logo {
    margin-top: 10px;
    border-top: 3px solid black;
    flex: 0;
    margin: 0;
    width: 50%;
}

#bot-popup .popup-content form {
    width: 80%;
    height: 100%;
}

#bot-popup .popup-content .popup-media {
    width: 100%;
    height: 90%;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}


#bot-popup .popup-content .popup-media .bot-inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 1rem;

}

#bot-popup .popup-content .popup-media .bot-inputs span {
    font-size: clamp(1rem, 0.5rem + 4vw, 1.5rem);
}

#bot-popup .popup-content .popup-media .bot-inputs input {
    width: 100%;
    height: 5vh;
    padding-left: 10px;
    border-radius: 5px;
}

#bot-popup .popup-content .popup-media .bot-inputs textarea {
    margin-left: 0;
    height: 4vh;
}

#bot-popup .popup-content form button {
    width: 100%;
    height: 6vh;
    margin: 5px 0;
    border-radius: 5px;
}


@media (max-width:768px) {
    #bot-popup .popup-content .popup-media {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Popup Container */
.newsletter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dimmed background */
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.newsletter.hidden {
    opacity: 0;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-heading {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.newsletter .inputs {
    width: 80%;
    margin: 0 auto;
    height: auto;
    border-radius: 10px;
    ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newsletter .inputs .input {
    width: 100%;
    height: 6vh;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.newsletter .inputs .input input {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    padding-left: 10px;
}

.newsletter .inputs button {
    width: 100%;
    height: 6vh;
    background-color: #BF8F2C;
    color: white;
    border: 1px solid #BF8F2C;
    border-radius: 10px;
    transition: 0.3s linear;
}

.newsletter .inputs button:hover {
    border: 1px solid #BF8F2C;
    background-color: white;
    color: #BF8F2C;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.close-button:hover {
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 600px) {
    .newsletter-content {
        width: 95%;
        padding: 15px;
        max-width: none;
        border-radius: 0;
    }
}

/* Toast Notification */
/* Basic styles for button */
.toast-container {
    position: absolute;
    text-align: center;
    margin-top: 10px;
    z-index: 100;
    top: 0;
    /* Initially hidden above the viewport */
    left: 50%;
    background-color: #38a169;
    border-radius: 8px;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
}

/* Toast styles */
.toast {
    color: white;
    padding: 15px 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    /* Smooth slide-in and fade-in */
}

/* Toast visible state */
.toast-container.show {
    display: block;
    opacity: 1;
}

/* Responsive styling */
@media (max-width: 600px) {
    .toast {
        width: 90%;
        padding: 10px 20px;
    }
}




.login-lang {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 10px;
}



.login-lang .login {
    margin-right: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.login-lang .login a {
    /* display: none; */
    font-family: 'Montaga', serif;
    text-decoration: none;
    color: white;
}

.login-lang .login a span {
    display: flex;
    gap: 4px;
}

.login-lang .login #profileCircle {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#profileCircle svg {
    width: 60%;
    height: 60%;
    box-shadow: 0 0 10px white;
    border-radius: 50%;
    border: 1px solid white;
    padding: 5px;
    fill: white;
    backdrop-filter: brightness(40%);
    transition: 0.3s linear;
}

#profileCircle svg:hover {
    scale: 0.9;
}

hr {
    width: 100%;

}

.links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 10px 0;
}

.nav .links {

    transition: 0.3s linear;
}

.links .link {
    transition: 0.2s linear;
}

.links .link a {
    position: relative;
    text-decoration: none;
    color: white;
    transition: 0.2s linear;
}

.links .link a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: white;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.links .link a:hover::before {
    width: 100%;
}

/* Styling for the dropdown menu */
.explore {
    position: relative;
}

.explore .dropdown-menu.opacity1 {
    opacity: 1;
    display: block;
}

.explore .dropdown-menu {
    backdrop-filter: blur(20px) brightness(40%);
    border: 1px solid #ddd;
    border-radius: 4px;
    transform: translateY(10px);
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease, trans0.3s ease;
    z-index: 1000;
}

.explore .dropdown-menu .dropdown-menu-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;

}


.fa-xmark {
    display: none;
}


.hamburger-menu {
    display: none;
}

/* Default styles for the top container */
nav {
    height: 100px;
    transition: background-color 0.3s ease, height 0.3s ease;
}

/* Scrolled styles */
.top-container.scrolled {
    height: 140px;
    background-color: rgba(0, 0, 0, 0.8);
}

.top-container.scrolled .logo img {
    width: 15%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#login-signup-page {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hide the sidebar initially */
    width: 400px;
    height: 100vh;
    background-color: #F8F3ED;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    overflow: hidden;
    /* Prevents scrollbars */
}

#login-signup-page .signup-page {
    display: none;
}

.signup-page .hidden {
    display: none;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.otp-input.success {
    border-color: green;
}

.otp-input.error {
    border-color: red;
}

.otp-input,
.login-otp-input {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.otp-input input,
.login-otp-input input {
    padding-left: 0px;

}

.otp-input:focus,
.login-otp-input:focus {
    border-color: #007bff;
    outline: none;
}


#login-signup-page a {
    cursor: pointer;
}

#login-signup-page .title h4 {
    text-align: left;
    font-weight: 400;
    font-family: "Montaga", serif;
}


#login-signup-page .signup-page,
.login-page {
    position: absolute;
}


#login-signup-page .signup-page,
.login-page {
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
}


#login-signup-page .login-page form h1 {
    font-size: 20px;
    margin: 10px 0;
}

#login-signup-page .login-page .title h4 {
    font-size: 20px;
}

#login-signup-page .input-otp {
    display: flex;
    gap: 0.6rem;
}

#login-signup-page .input-otp button {
    border-radius: 10px;
    width: 40%;
    overflow: hidden;
    outline: none;
    border: 2px solid #BF8F2C;
    background-color: #BF8F2C;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    transition: 0.2s linear;
}

#login-signup-page .login-page form .input-otp .sendotp:disabled {
    background-color: #BF8F2C;
    cursor: not-allowed;
}

#login-signup-page .login-page form .input-otp button:hover {
    border: 2px solid #BF8F2C;
    color: #BF8F2C;
    background-color: transparent;
}

#login-signup-page .login-page form .remember-forget {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}


#login-signup-page .login-page form .remember-forget .forget a {
    color: black;
    text-decoration: none;
    transition: 0.2s linear;
}

#login-signup-page .login-page form .remember-forget .forget a:hover {
    text-decoration: underline;
}

#login-signup-page .login-page p {
    color: black;
    margin: 40px 0 20px 0;
}

#login-signup-page .login-page .social-links {
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

#login-signup-page .login-page .social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 5px;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    box-shadow: 1px 1px 4px black;
    transition: 0.3s linear;
}

#login-signup-page .login-page .social-links a:hover {
    scale: 1.15;
    background-color: white;
}

#login-signup-page .inputs {
    width: 100%;
    height: 5vh;
    margin-bottom: 15px;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
}

#login-signup-page .inputs input {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding-left: 15px;
    outline: none;
    border: 1px solid black;
    color: black;
    background-color: transparent;
}

#login-signup-page .inputs input::placeholder {
    color: black;
}

#login-signup-page .country-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#login-signup-page .country-phone .inputs {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#login-signup-page .country-phone .inputs select {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding-left: 10px;
    cursor: pointer;
    background-color: transparent;
}


#login-signup-page .country-phone .phone-number {
    width: 80%;
}

#login-signup-page .profile-category {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#login-signup-page .profile-category .profile-checkbox {
    display: flex;
    gap: 0.4rem;

}

#login-signup-page .profile-category .profile-checkbox input {
    width: auto;
    height: auto;
}

#login-signup-page .profile-category .profile-checkbox input::checked {
    background-color: blue;
}

#login-signup-page .checkbox {
    display: flex;
    justify-content: first baseline;
    align-items: flex-start;
    width: 100%;
    text-align: start;
    gap: 5px;
    margin: 10px 0 20px 0;
}

#login-signup-page .checkbox input {
    width: auto;
    height: auto;
    float: left;
}

#login-signup-page .note {
    width: 100%;
}

#login-signup-page .btn {
    margin: 10px 0;
    width: 100%;
    height: 6vh;
    border-radius: 10px;
    overflow: hidden;
}

#login-signup-page .btn button {
    width: 100%;
    height: 100%;
    border: 1px solid #BF8F2C;
    background-color: #BF8F2C;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    outline: none;
}

#login-signup-page .btn button:hover {
    background-color: transparent;
    border: 1px solid #BF8F2C;
}

#login-signup-page .link a {
    text-decoration: none;
    color: black;
}

#login-signup-page .link a:hover {
    text-decoration: underline;
}

/* Login Successful */

#login-signup-page .login-profile {
    width: 90%;
    display: none;
}

#login-signup-page .login-profile .uno-id-perks {
    display: flex;
    flex-direction: column;
    margin: 5px 0;
}

#login-signup-page .login-profile .uno-id-perks h2 {
    font-weight: 500;
    font-size: 1.6rem;
    font-family: 'Montaga', serif;
}


#login-signup-page .login-profile .uno-id-perks .uno-id-container,
#login-signup-page .login-profile .uno-id-perks .uno-perks-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0;

}

#login-signup-page .login-profile .profile-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

#login-signup-page .login-profile .profile-links a {
    color: black;
    font-size: 1.8rem;
    font-family: 'Montaga', serif;
    text-decoration: none;
    transition: 0.3s linear;
}

#login-signup-page .login-profile .profile-links a:hover {
    text-decoration: underline;
}

#login-signup-page .login-profile button {
    width: 100%;
    height: 6vh;
    font-weight: bold;
    font-size: 1.2rem;
    background-color: #BF8F2C;
    border: none;
    border-radius: 10px;
    color: white;
}



#login-signup-page .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* Ensure it's on top */
}

#login-signup-page .login-profile .login-profile-explore {
    text-align: left;
    border: none;
    animation: buttonAnimate 1s infinite;
    background-color: transparent;
}

@keyframes buttonAnimate {
    0% {
        /* border: 1px solid red; */
        color: green;
    }

    25% {
        color: white;
    }

    50% {
        /* border: 1px solid green; */
        color: blue;
    }

    75% {
        color: white;
    }

    100% {
        /* border: 1px solid blue; */
        color: red;
    }
}

#login-signup-page .close-btn svg {
    width: 24px;
    height: 24px;
}

#login-signup-page .login-signup-logo {
    margin-bottom: 20px;
}

.user {
    display: block;
    z-index: 1000;
}











/* Hero Section */


#hero {
    background-image: url(images/main-bg.png);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.text {
    font-size: clamp(1.2rem, 1rem + 4vw, 4rem);
    display: flex;
    align-items: center;
    margin-top: -50px;
    color: white;
    justify-content: center;
}


#hero h1 {
    color: white;
    /* Center the toggle switch horizontally */
    font-size: clamp(1.5rem, 1rem + 5vw, 5rem);
}


.toggle-switch {
    display: flex;
    width: 400px;
    height: 200px;
    scale: 0.3;
    margin: 0 -120px;
}

.inputs1 {
    display: none;
}

.display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

label {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: transparent;
    box-shadow: 0px 0px 30px 2px rgb(162, 158, 158) inset;
    cursor: pointer;
    position: relative;
}

.circle {
    width: 160px;
    height: 160px;
    border-radius: 99px;
    background: linear-gradient(to left bottom, #D9D9D9, rgb(230, 98, 120));
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05),
        -10px -10px 30px rgba(0, 0, 0, 0.05) inset;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(10%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s linear;
}

input[type=checkbox]:checked+.display label .circle {
    left: 100%;
    transform: translate(-110%, -50%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5),
        -10px -10px 30px rgba(0, 0, 0, 0.5) inset;
}

#hero .description p {
    font-size: 16px;
    color: white;
    font-family: "Montaga", serif;
    text-align: center;
}


.questions {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    margin: 30px auto 0;
    padding: 20px;
    /* border: 1px solid #ddd; */
    text-align: center;
    border-radius: 5px;
    background-color: transparent;
    overflow: hidden;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.questions-title {
    font-size: 1.5em;
}

/* Title Style */

/* Feed Item List */
.questions-feed-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100%;

    justify-content: center;
    align-items: center;
    position: relative;
}

/* Individual Feed Item */
.question-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0;
    font-size: 1.5rem;
    padding: 10px 20px;
}

.questions-item {
    width: 150px;
    height: 6vh;
    bottom: none;
    border-radius: 5px;
    border-color: #BF8F2C;
    margin: 10px 0;
    font-size: 16px;
    background-color: #BF8F2C;
    color: white;
    position: relative;
    bottom: -40px
}

/* Hide all items except the active one */
.question-item {
    opacity: 0;
    transform: translateX(100%);
    transition: transform 2s, opacity 1s;
}

.question-item.active {
    opacity: 1;
    transform: translateX(0);
}

.question-item.exit-right {
    transform: translateX(-100%);
}

.question-item.enter-left {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .question-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* For mobile screens */
    .questions-container {
        padding: 10px;
    }

    .questions-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .questions-item-title {
        font-size: 1em;
    }

    .questions-item-description {
        font-size: 0.9em;
    }

    .questions-link-btn {
        padding: 5px 8px;
    }

    /* Adjust feed height for smaller screens */
    .questions-feed-list {
        height: 160px;
    }
}





/*  Search */


/* General layout for the cards */
/* General layout for the search cards */
/* Ensuring the CSS only affects the elements within the #search section */
#search {
    background-color: black;
    padding: 20px;
    display: none;
}

.search-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 20px;
    flex-wrap: wrap;
}

.card-destination,
.card-category,
.card-guests {
    flex: 1;
    height: 80px;
    text-align: center;
    background-color: #fff;
    /* Ensure background is white */
    border-radius: 5px;
    transition: 0.2s linear;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Slight shadow for card effect */
}

/* .card-destination, .card-category, .card-guests h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
} */

.dropbtn {
    background-color: transparent;
    color: #000;
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    font-family: "Inter", sans-serif;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, trans0.3s ease;
} */

.show {
    display: list-item;
    opacity: 1;
    transform: translateY(0);
}


.dropdown-content a {
    padding: 6px 8px;
    text-decoration: none;
    display: block;
    color: #000;
    display: block;
    transition: background-color 0.8s ease, color 0.3s ease;
    z-index: 100;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.count-number {
    color: black;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    align-items: center;
}

#search .card-destination:hover,
.card-category:hover,
#search .card-guests:hover {
    transform: translateY(-5px);

}

svg {
    fill: #000;
    cursor: pointer;
    margin: 0 10px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn button {
    padding: 10px 20px;
    border: 1px solid white;
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text */
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn button:hover {
    border: 1px solid black;
    background-color: white;
    color: black;
    /* Darker black for hover effect */
}

/* Adding vertical line between cards */
.card+.card,
.card+.btn {
    position: relative;
}

.card+.card::before,
.card+.btn::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ddd;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .abt-image {
        max-width: 500px;
    }
}

@media (max-width: 996px) {


    .search-cards {
        flex-direction: column;
    }

    .card-destination,
    .card-category,
    #search .card-guests {
        width: 100%;
    }


    .card-category+.card-category::before,
    .card-category+.btn::before,
    .card-destination+.card-destination::before,
    .card-destination+.btn::before {
        display: none;
    }

    .abt-image {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}


/* 2nd page */



#learn,
#app {
    width: 100%;
    /* min-height: 74vh; */
    margin-bottom: 40px;
    padding-bottom: 100px;
}

#about {
    width: 100%;
}

#about {
    position: relative;
    z-index: 1;
}


#learn .container,
#about .container {
    overflow: hidden;

}

#learn .container {
    padding: 20px 0;
    margin: 10px 0;
}

#app .container,
#learn .container,
#about .container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#about .container {
    margin-left: 10px;
    margin-right: 100px;
    z-index: 5;
}

#about .container .image {
    flex: 1;
    /* Image container takes up available space */
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 95px;
    scale: 0.9;
}

#learn .container .image img {
    width: 400px;
    height: 390px;
}

#about .container .image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.image img {
    width: 600px;
    height: 590px;
}

.app-image {
    height: 300px;
}

#app .container .content {
    overflow: hidden;
}

#about .container .content {
    margin-top: 40px;
}

#about .container {
    margin-top: 5px;
}

#app .container .content,
#learn .container .content,
#about .container .content {
    width: 50%;

}

.content .title h1 {
    font-size: 24px;
    text-align: left;
    margin-bottom: 40px;
}



.content hr {
    width: 20%;
    height: 4px;
    margin-top: -30px;
    background-color: black;
}

.content button {
    margin: 20px 0;
    padding: 15px 25px;
    border-radius: 8px;
    outline: none;
    font: bolder;
    background-color: white;
    border: 1px solid black;
    color: black;
    transition: 0.2s linear;
}


.content button:hover {
    background-color: #ebe3d7;
}

/* Info Card */

/* Ensure CSS only affects #info-section */
#info-section {
    padding: 10px;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
}

#info-section .title {
    /* font-size: 24px; */
    text-align: center;
}

.info-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 0 30px 0 60px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: trans0.3s ease, filter 0.3s ease;
    box-sizing: border-box;
}

.info-card:hover {
    transform: translateY(-5px);
    filter: brightness(0.9);
}

.sustain {
    margin-top: 1px;
}

.info-card img {
    margin: 10px 0;
}


.info-card h3 {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.info-card .content {
    margin-bottom: 10px;
    flex: 1;
}

.info-card .content p {
    font-size: clamp(0.8rem, 0.4rem + 0.9vw, 1.5rem);
    margin: 15px 0;
}

.info-card .content ul {
    padding-left: 10px;
    margin: 0;
    color: #000;
}

.info-card .content ul li {
    margin-bottom: 5px;
}

.info-card .link {
    display: block;
    font-size: 20px;
    text-align: center;
    color: #BF8F2C;
    margin: 15px 0;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
}

.info-card .link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 993px) {
    .info-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }
}


/* Building */

/* Ensure CSS only affects .building */
.building {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
    text-align: center;
    padding: 20px;
    background-color: #fbf1e5;
    margin: 20px 0;
}

.build-left,
.build-right {
    width: 50%;
    height: auto;
}

.build-right {
    display: flex;
    /* flex-direction: column; */
    /* justify-content: space-evenly; */
    align-items: start;
    height: 100%;
}



.building h2 {
    font-size: 24px;
    font-family: 'Montaga', serif;
    color: #333;
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
    /* padding-left: 5px; */
    padding-left: 0;
}

.building p {
    color: #666;
    /* padding-left: 50px; */
    text-align: justify;
    /* font-size: clamp(0.5rem, 0.3rem + 5vw, 1.1rem); */
    margin: 10px 0;
    /* font-size: 16px; */
}

.images {
    width: 80%;
    margin: 10px 10px;
    justify-content: center;
    gap: 10px;
    /* margin: 0px 10px; */
}


.small-image {
    width: 60%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.single-image {
    margin: 20px 0;
    position: relative;
    /* height: 100%; */
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.single-image img {
    /* position: absolute; */
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.building-links {
    position: absolute;
    margin-top: 100px;
    font-family: 'Montaga', serif;
}

.building-links .link {
    margin: 10px auto;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.building-links .link:hover {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .images {
        justify-content: center;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}



/* Cards Section */

#main-card {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    z-index: -1;
}

#main-card h3 {
    font-size: 25px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;

}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: hidden;
    padding: 20px;
}


.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transform: translateY(0px);
    transition: 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    background-color: #575859;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card:hover img {
    background-color: white;
    border-radius: 50%;
}


.card:hover h3 {
    color: white;
}

.card:hover p {
    color: rgb(223, 218, 218);
}


.card-icon svg {
    width: 40px;
    height: 40px;
    color: black;
    /* Icon color */
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.25rem;
    color: black;
    /* Heading color */
    margin: 0 0 10px;
}

.card p {
    color: #555555;
    font-size: 1rem;
}


/* promo section */


#showcase {
    display: flex;
    /* min-height: 50vh; */
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.showcase-image-area .text-content {
    width: 70%;
}

.text-content {
    text-align: center;
    margin-bottom: 20px;
}



.title {
    font-size: 24px;
    margin-bottom: 40px;
    color: black;
    /* Heading color */
}

.description {
    color: #666;
    word-spacing: 3px;
    font-size: 16px;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 400px;
    display: block;
}

.overlay-content {
    position: absolute;
    bottom: 20px;
    left: 40%;
    top: 40%;
    transform: translateX(-50%);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    max-width: 800px;
}

.overlay-content h2 {
    font-size: clamp(1rem, 1rem + 7vw, 2.5rem);
    margin: 0 0 10px;
}

.overlay-content button {
    background-color: white;
    /* Button color */
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    border: 2px solid black;
    transition: background-color 0.3s;
    transition: 0.3s ease-in-out;
}

.overlay-content button:hover {
    border: 2px solid white;
    color: white;
    background-color: black;
}


#carousel360 {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.carousel-wrapper-main {
    position: relative;
    width: 100%;
    height: auto;
}



.carousel-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 10px;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}


.carousel-img {
    position: relative;
    width: 331px;
    height: 30vh;
    overflow: hidden;
}

.carousel-img img {
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.carousel-img:hover .carousel-image {
    transform: scale(1.2);
}

/* flashing icon code */
#star6 {
    position: absolute;
    z-index: 1000;
    padding: 12px;
    left: 42px;
    top: 15px;
    background-color: #BF8F2C;
    border-radius: 20px;
    animation: flash 1s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* HOVER */

.carousel-img .hover {
    opacity: 0;
    transform: translateY(50px);
    width: 100%;
    z-index: 2;
    position: absolute;
    bottom: 0px;
    padding-bottom: 10px;
    border-radius: 10px;
    left: 0;
    transition: 0.3s ease-in-out;
}

.carousel-img .hover .hover-title-icons {
    position: relative;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.hover-title-icons .hover-title {
    width: 50%;
}

.hover-title-icons .icons {
    display: flex;
}

.hover-title-icons .icons a {
    text-decoration: none;
    color: white;
    margin: 0 5px;
    transition: 0.2s linear;
}

.hover-title-icons .icons a:hover {
    color: #BF8F2C;
}

.hover-title-icons button {
    cursor: pointer;
    position: absolute;
    top: -50px;
    left: 40%;
    outline: none;
    border: none;
    color: white;
    background-color: #BF8F2C;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hover-title-icons button:hover {
    background-color: white;
    color: #BF8F2C;
}


.carousel-img:hover>.hover {
    background: linear-gradient(to top, black 20%, transparent);
    transform: translateY(0px);
    opacity: 1;
}




.carousel-container .buttons {
    margin: 10px 0 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container .buttons button,
.dropdown-project button {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    border: 1px solid #BF8F2C;
    color: #BF8F2C;
    background-color: transparent;
    justify-content: center;
}

.carousel-container .buttons button:hover,
.dropdown-project button:hover {
    color: white;
    background-color: #BF8F2C;
    border: 1px solid #BF8F2C;
}


.dropdown-project {
    position: relative;
    display: inline-block;
    display: flex;
    width: 200px;
    height: auto;
    justify-content: center;
    align-items: center;
    z-index: 10;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    /* Fixed width of 200px */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 2;
    top: 85%;
    border-radius: 5px;
    /* Positions the dropdown box below the button */
    left: 0;
}

*/ .dropdown-content a {
    position: absolute;
    color: black;
    /* padding: 12px 16px; */
    padding: 6px 8px;
    text-decoration: none;
    display: block;
    z-index: 100;
}

.dropdown-content a:hover {
    background-color: transparent;
}

.dropdown-project:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.bar {
    flex-grow: 1;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    position: relative;
}

.wrapper {
    height: 100%;
    position: relative;
}

.padding-mask {
    overflow: hidden;
}

.slide {
    background: #007bff;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/* Hide popup by default */
.hidden {
    z-index: -2;
    scale: 0;
    opacity: 0;
}

/* Popup Overlay */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dimmed background */
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    /* Max width for larger screens */
    height: 90%;
    max-height: 1000px;
    /* Max height for larger screens */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-media {
    overflow: hidden;
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-media img,
.popup-media video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    /* Ensure the content fits nicely */
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}

.popup-button {
    flex: 1;
    margin: 0 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#book-now {
    background-color: #38a169;
    color: #fff;
}

#book-now:hover {
    background-color: #2980b9;
}

#close-popup {
    background-color: #e74c3c;
    color: #fff;
}

#close-popup:hover {
    background-color: #c0392b;
}

/* Responsive Design */


/* Positioning buttons */
#book-now {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: green;
    color: white;
}

#close-popup {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: red;
    color: white;
}


/* Learning */

.learning {
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning .container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.learning .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learning .content h1 {
    margin-bottom: 0px;
}

hr {
    margin-bottom: 20px;
}

.learning .description {
    margin: 0 auto;
    width: 80%;
}

.learning .image {
    width: 500px;
}

.learning .image img {
    width: 500px;
    margin-right: 50px;
}






/* Download App */

.app .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.app .container .content {
    width: 50%;
    margin: 0 auto;
}

.app .container .image {
    display: inline-block;
    width: 500px;
    height: 100%;
}


.app .container .image img {
    margin-left: 100px;
    width: 350px;
    /* height: auto; */
    /* scale: 1.2; */
    margin-top: -50px;
}

.app .content .store {
    margin: 20px auto;
    align-items: center;
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.app .container .store a {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.app .content .store img {
    width: 90%;
}


/* Profile Card */


.profile-card-section {
    padding: 50px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card-section h4 {
    color: #b58900;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.profile-card-section h1 {
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
}

hr {
    width: 50px;
    border: 1px solid #d3b6a5;
    /* margin: 0 auto 40px auto; */
}

.profile-card-container {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.profile-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    color: inherit;
}

.profile-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.profile-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.profile-card p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

.profile-card p img {
    width: 30px;
    height: 30px;
    margin: 0px;
}

/* .profile-icons{
    display: flex;

} */


.profile-icons i {
    font-size: 20px;
    color: #b58900;
    margin: 0 10px;
    cursor: pointer;
}

.profile-icons img {
    width: 50px;
}

.profile-card:hover {
    transform: translateY(-10px);
}

/* More Button Styling */
.more-btn {
    display: inline-block;
    background-color: #b58900;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.more-btn:hover {
    background-color: #8a6d00;
}

/* Responsive Design */
@media (max-width: 996px) {
    .profile-card {
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    .profile-card {
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    .profile-card {
        max-width: 23%;
    }
}



/* Feedback section styling */
.feedback-section {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.feedback-section h2 {
    font-size: 24px;
    font-family: 'Montaga', serif;
    font-weight: 500;
    margin: 5px 0;
}

.feedback-section p {
    margin: 0px 0 10px 0;
    max-width: 700px;
    width: 100%;
}

/* Feedback cards container styling */




.feedback-cards-container {
    position: relative;
    margin-top: 20px;
    display: flex;
    overflow: hidden;
    width: 100%;
    /* animation-duration: 20s;
    animation-name: infiniteScroll;
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
}


/*   
.feedback-cards-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    } */

/* Card Container */
.feedback-cards {
    display: flex;
    gap: 1rem;
    width: auto;
    overflow-x: auto;
    padding: 0 20px;
    white-space: nowrap;
    position: relative;
}

.feedback-cards::-webkit-scrollbar {
    display: none;
}


.feedback-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 20px;
    flex: 0 0 auto;
    /* Ensure the cards don't shrink or grow */
    width: 350px;
    height: 100%;
}



.feedback-card p {
    font-size: 0.9rem;
    color: #666;
    width: 100%;
    display: block;
    word-wrap: break-word;
    /* Allow text to wrap */
    white-space: normal;
    /* Ensure the text wraps */
    overflow: hidden;
    /* Ensure overflow is handled */
    text-overflow: ellipsis;
    /* Optional: for text truncation */
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.stars {
    margin: 10px 0;
    color: gold;
    font-size: 1.2rem;
}

.feedback-card h3 {
    font-family: 'Montaga', serif;
    margin: 10px 0;
    font-size: 1.2rem;
}

.feedback-card a {
    display: inline-block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6vh;
    background-color: transparent;
    margin: 20px 0 15px 0;
    text-decoration: none;
    color: #BF8F2C;
    border-radius: 10px;
    font-weight: bold;
    transition-timing-function: 0.2s linear;
}

.feedback-card a:hover {
    background-color: #BF8F2C;
    color: white;
    border: 1px solid #BF8F2C;
}



/* Responsive Design */

@media (max-width: 768px) {

    #app .container .content {
        width: 90%;
    }

    #app .container .content {
        width: 90%;
        padding-bottom: 80px;
    }

    .carousel-wrapper .carousel-img {
        width: 360px;
        height: 26vh;
        overflow: hidden;
    }


    .feedback-card {
        scroll-snap-align: center;
        width: 80%;
        /* Adjust width for mobile view */
    }
}

@media (max-width: 480px) {
    .feedback-card {
        width: 100%;
        /* Full width for very small screens */
    }

}


/* partner */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.infinite-scroller {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infinite-scroller-container {
    margin: 20px 0;
    width: 99%;
    overflow-x: hidden;
    text-align: center;
}

.infinite-scroller h2 {
    font-size: 24px;
    font-weight: 400;
}




/* .infinite-scroller-container .horizontal-scrolling-items:hover{
    animation-play-state: paused;
  } */


.horizontal-scrolling-items {
    display: flex;
    font-size: 40px;
    width: 2600px;
    animation-name: infiniteScroll;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.horizontal-scrolling-items__item {
    white-space: nowrap;
}

.horizontal-scrolling-items__item img {
    filter: grayscale(100%);
    transition: 0.2s linear;
    width: 200px;
}

.horizontal-scrolling-items__item img:hover {
    filter: grayscale(0%);
}



/* blogs */
.partners {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.partners h1 {
    font-size: 24px;
    font-weight: 500;
    margin: 5px 0;
}

.partners p {
    margin: 0px 0 10px 0;
}

.partner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.fa-angle-left,
.fa-angle-right {
    font-size: clamp(1rem, 1rem + 5vw, 3rem);
    width: 3%;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
    /* Ensure arrows are on top of the carousel */
}

.fa-angle-right {
    right: 0px;
    /* Adjust spacing from the edge */
}

.fa-angle-left {
    left: 0px;
    /* Adjust spacing from the edge */
}

.partner-cards {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-top: 20px;
    overflow-x: auto;
    position: relative;
    scroll-behavior: smooth;
    padding: 0 50px;
    /* Optional: Padding to give some space around the carousel */
}

.partner-cards a {
    text-decoration: none;
    width: 100%;
    height: 100%;

}

.partner-cards::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.partner-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    /* Ensure the cards don't shrink or grow */
    width: 340px;
    /* Fixed width for each card */
    /* Center cards on scroll */
}

.partner-container i {
    width: 3%;
}

.partner-card img {
    width: 100%;
    height: 180px;
}

.partner-card p {
    font-family: 'Montaga', serif;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 996px) {



    .partner-card {
        scroll-snap-align: center;
        /* Adjust width for mobile view */
    }

    .partner-container i {
        width: 5%;
    }
}

@media (max-width: 440px) {


    .partner-container i {
        width: 10%;
    }
}



/* RSS Feed */
/* General Container Styles */
.rss-container {
    width: 100%;
    margin: 30px auto;
    padding: 20px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.rss-title {
    font-size: 1.5em;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}

/* Title Style */

/* Feed Item List */
.rss-feed-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
    height: 200px;
    /* Fixed height for smooth transition */
}

/* Individual Feed Item */
.rss-item {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Active feed moves into view */
.rss-item.active {
    transform: translateX(0);
    opacity: 1;
}

/* Animation for feed sliding out */
.rss-item.exit-right {
    transform: translateX(-100%);
    opacity: 0;
}

/* Animation for feed sliding in from left */
.rss-item.enter-left {
    transform: translateX(100%);
    opacity: 0;
}

/* RSS Link Styling */
.rss-link {
    text-decoration: none;
    color: #333;
}

.rss-item-title {
    font-size: 1.25em;
    margin-bottom: 10px;
}

.rss-item-description {
    font-size: 1em;
    margin-bottom: 10px;
}

.rss-link-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 12px;
    background-color: #BF8F2C;
    border: 1px solid #BF8F2C;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.rss-link-btn:hover {
    background-color: transparent;
    border: 1px solid #BF8F2C;
}

.rss-no-items {
    font-size: 1.2em;
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {

    /* For tablets and smaller screens */
    .rss-container {
        padding: 15px;
    }

    .rss-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .rss-item-title {
        font-size: 1.1em;
    }

    .rss-item-description {
        font-size: 0.95em;
    }

    .rss-link-btn {
        padding: 6px 10px;
    }

    /* Adjust feed height for smaller screens */
    .rss-feed-list {
        height: 180px;
    }
}

@media (max-width: 480px) {

    /* For mobile screens */
    .rss-container {
        padding: 10px;
    }

    .rss-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .rss-item-title {
        font-size: 1em;
    }

    .rss-item-description {
        font-size: 0.9em;
    }

    .rss-link-btn {
        padding: 5px 8px;
    }

    /* Adjust feed height for smaller screens */
    .rss-feed-list {
        height: 160px;
    }
}




/* Contact Page */
#contact {
    padding: 0 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.contact-container {
    padding: 20px 10px;
    margin: 50px 0;
    backdrop-filter: blur(10px) brightness(40%);
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-container h1 {
    padding: 10px 0;
    font-size: 1.5rem;
}

.contact-container .inputs {
    width: 100%;
}

.contact-container h1,
.contact-container .checkbox {
    color: white;

}

.contact-container .inputs,
textarea {
    width: 100%;
    overflow: hidden;
    border: 1px solid black;
    border-radius: 10px;
    height: 5vh;
    background-color: white;
    margin: 10px 0;
}

.contact-container .inputs input {
    padding-left: 20px;
}

textarea {
    padding-left: 10px;
    padding-top: 10px;
    height: 15vh;
}

.checkbox {
    width: 80%;
    margin: 10px 10%;
}

.contact-container button {
    width: 80%;
    height: 7vh;
    margin: 10px 10%;
    font-size: 1.4rem;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    border: 1px solid #BF8F2C;
    background-color: #BF8F2C;
    color: white;
    transition: 0.2s linear;

}

.contact-container button:hover {
    background-color: transparent;
    border: 1px solid #BF8F2C;
    color: #BF8F2C;
}

.contact-container .inputs input {
    border: none;
    width: 100%;
    height: 100%;
    padding-left: 10px;
}


.collage {
    width: 50%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collage p {
    width: 100%;
    font-family: 'Montaga', serif;
    margin-bottom: 10px;
    color: black;
    text-align: center;
    font-size: clamp(1rem, 1rem + 5vw, 2rem);
}

.collage img {
    width: 450px;
}

/* footer */

.footer {
    overflow: hidden;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, #F8F3ED, #EBE3D8);
    margin-top: 20px;
    width: 100%;
    padding: 20px 0;
}

.footer .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: end;
}

.footer .content .services,
.footer .content .quick-links {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .content .services h1,
.footer .content .quick-links h1 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer a,
.footer p {
    font-family: "Montaga", serif;
    font-weight: 400;
    color: #818181;
}

.footer .content .services a,
.footer .content .quick-links a {
    margin: 5px 0;
    font-size: 1rem;
    text-decoration: none;
}

.footer .content a:hover {
    border-bottom: 1px solid #818181;
    text-decoration: underline;
}

.footer .content .details {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    max-width: 500px;
}

.footer .content .details img {
    width: 300px;
    height: 90px;
}

.footer .content .footer-contact {
    height: 21vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 300px;
    color: black;
}

.footer-contact button {
    width: 100%;
    height: 6vh;
    background-color: black;
    color: white;
    font-weight: bold;
    font-family: "Montaga", serif;
    border: 1px solid white;
}

.footer-contact button:hover {
    border: 1px solid black;
    background-color: white;
    color: black;
}

.footer-links {
    display: flex;
    align-items: end;
}

.footer-contact .social-links a {
    color: black;
    font-size: 1.2rem;
}

.footer-contact .social-links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer-contact .social-links a {
    transition: 0.2s linear;
}

.footer-contact .social-links a:hover {
    text-decoration: none;
    border: none;
}

.footer-contact .social-links .facebook:hover {
    color: #0165E1;
}

.footer-contact .social-links .instagram:hover {
    color: #C13584;
}

.footer-contact .social-links .youtube:hover {
    color: #FD1D1D;
}

.footer-contact .social-links .linkedin:hover {
    color: #0165E1;
}


.footer .copyright {
    text-align: center;
    margin: 30px 0 0 0;
}


@media (min-width: 1440px) {

    .app .container {
        margin-bottom: 50px;
    }

    .app .container .image {
        width: 500px;
        /* height: 50vh; */
    }

    .app .container .image img {
        margin-left: 200px;
        width: 100%;
        height: 100%;
        /*scale: 1.2;
        margin-top: -50px;*/
    }

    .top-container.scrolled {
        height: 160px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .carousel-img {
        position: relative;
        width: 495px;
        height: 300px;
        overflow: hidden;
    }
}

@media (min-width: 1880px) {
    .top-container.scrolled {
        height: 200px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .info-card .content p {
        font-size: clamp(1.2rem, 0.5rem + 4vw, 1.8rem);
        margin: 15px 0;
    }

    .info-card .content ul li {
        margin-bottom: 5px;
        font-size: clamp(1rem, 0.5rem + 4vw, 1.4rem);
    }

    .carousel-img {
        position: relative;
        width: 574px;
        height: 30vh;
        overflow: hidden;
    }

    .assistant-container {
        bottom: 70px;
        /* Adjust as needed */
        right: 70px;
        /* Adjust as needed */
    }

    .assistant-container img {
        width: 120px;
        height: 120px;
    }

    .assistant-container .message {
        top: -100px;
        right: 0;
        font-size: 1.3rem;
        width: 500px;
    }


}




@media (max-width: 996px) {

    .fa-angle-left,
    .fa-angle-right {
        width: 5%;
    }

    .login-lang .login {
        width: 50px;
        height: 50px;

    }

    .login-lang .login #profileCircle {
        position: absolute;
        top: -7px;
        width: 112%;
        height: 112%;
    }

    .top-container.scrolled {
        height: 70px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .showcase-image-area .text-content {
        width: 80%;
    }

    .footer .details,
    .footer .footer-contact {
        margin: 10px 0;
    }

    .login-lang {
        position: absolute;
        right: 0;
        top: 16px;
        z-index: 1;
    }

    .footer .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .carousel-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .carousel-container .buttons {
        margin-bottom: 50px;
    }

    .carousel-wrapper .carousel-img {
        width: 385px;
        height: 29vh;
        overflow: hidden;
    }

    .app .container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-evenly;
        align-items: center;
    }

    .app .container .image img {
        /* margin-left: 60px; */
        margin-top: 0px;
        width: 100%;
        margin-left: 50px;
    }

    .app .content {
        text-align: center;
    }

    .learning .image img {
        scale: 0.7;
        margin-top: -50px;
    }

    .overlay-content {
        position: absolute;
        top: 40%;
        left: 50%;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .overlay-content h2 {
        font-size: 1.25rem;
    }

    .overlay-content button {
        font-size: 0.875rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .links .link:hover {
        border-bottom: none;
    }

    .top-container .logo {
        display: none;
    }

    hr {
        display: none;
    }

    .links {
        display: none;
    }

    .hamburger-menu {
        z-index: 1;
        color: white;
        font-size: 2rem;
        display: block;
        position: absolute;
        left: 50px;
        top: 10px;
        cursor: pointer;
    }


    nav .links {
        backdrop-filter: blur(20px);
        z-index: 9;
        display: block;
        position: fixed;
        top: -7px;
        width: 100%;
        height: auto;
        background-color: transparent;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 0 10px white inset;
        transition: trans0.3s ease;
        transform: translateY(-400px);
        opacity: 0;
    }

    nav .links {
        transform: translateY(-100%);
        transition: 0.3s ease;
    }

    nav .links .link {
        padding: 10px 0;
    }

    nav .links .link:hover {
        background-color: #bf8f2c;
    }

    .links .link a:hover::before {
        width: 0;
    }

    .fa-xmark {
        cursor: pointer;
        z-index: 99;
        display: none;
        color: white;
        position: absolute;
        right: 30px;
        top: 23px;
        font-size: 2.2rem;
        transition: 0.3s linear;
    }



    #learn .container,
    #about .container {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
        /* gap: -50px; */
    }

    #learn .container .image img,
    #about .container .image img {
        width: 100%;
        scale: 1.1;
        margin-top: -30px;
        margin-bottom: -30px;
    }

    #learn .container .content,
    #about .container .content {
        width: 100%;
        padding: 0 10px;
        margin-bottom: 75px;
    }

    #contact {
        display: flex;
        flex-direction: column-reverse;
    }

    #contact .collage {
        margin: 0 5%;
        width: 90%;
    }


    .image-container {
        position: relative;
        width: 110%;
        overflow: hidden;
    }

}

@media (max-width: 768px) {

    #app .container {
        overflow: hidden;
    }

    .assistant-container {
        bottom: 20px;
        /* Adjust as needed */
        right: 20px;
        /* Adjust as needed */
    }

    .assistant-container img {
        width: 70px;
        height: 70px;
    }

    .assistant-container .message {
        top: -100px;
        right: 0;
        width: 300px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
    }

    #about .container .abt-image {
        max-width: 100%;
        margin-bottom: 0px;
    }
}

@media (max-width: 440px) {


    .overlay-content h2 {
        font-size: 1.1rem;
    }


    .fa-angle-left,
    .fa-angle-right {
        width: 8%;
    }

    .showcase-image-area .text-content {
        width: 95%;
    }

    .image-container {
        position: relative;
        width: 117%;
        overflow: hidden;
    }

    .app .container .store {
        width: 90%;
    }

    .top-container .logo img {
        opacity: 0;

    }

    .top-container .login-lang {
        top: 16px;
    }

    .overlay-content {
        position: absolute;
        top: -1%;
        left: 50%;
    }

    .card-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hamburger-menu {
        z-index: 2;
        position: absolute;
        top: 15px;
        left: 20px;
    }

    #about .container .abt-image {
        margin-top: 20px;
        width: 100%;
        max-width: 440px;
    }

    #about .container .abt-image img {
        width: 100%;
        max-width: 400px;
        object-fit: cover;
        margin-left: -20px;
        margin-right: 10px;
    }
}



@media (max-width: 650px) {
    #about .container .abt-image {
        margin-top: 20px;
        width: 100%;
        max-width: 650px;
    }

    #about .container .abt-image img {
        width: 100%;
        max-width: 600px;
        object-fit: cover;
        margin-left: -20px;
        margin-right: 10px;
    }
}


/* Base hidden state */
.hamper-popup {
    display: none;
    /* Hidden by default */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

/* Visible state */
.hamper-popup.show {
    display: flex;
    /* Adjust as per your layout, e.g., `flex` or `block` */
    visibility: visible;
    opacity: 1;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    z-index: 1000;
}

/* Hidden state */
.hamper-popup.hide {
    display: none;
    visibility: hidden;
    opacity: 0;
}


.hamper-popup-content {
    background-color: white;
    padding: 10px;
    margin-bottom: 4px;
    border-radius: 10px;
    max-width: 300px;
    max-height: 500px;
    /* max-width: 90%; */
    text-align: center;
    overflow: hidden;
}


.claim-button {
    background-color: #BF8F2C;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.submit-button {
    background-color: #BF8F2C;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.hide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

/* General Popup Overlay */
#hamper-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

#hamper-form-popup.show {
    visibility: visible;
    opacity: 1;
}

/* Popup Content Box */
.hamper-form-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
}

/* Form Header */
.hamper-form-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Form Fields */
#hamper-form-popup input[type="text"],
#hamper-form-popup input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

#hamper-form-popup input[type="text"]:focus,
#hamper-form-popup input[type="email"]:focus {
    outline: none;
    border-color: #BF8F2C;
    box-shadow: 0 0 5px rgba(191, 143, 44, 0.5);
}

/* Required Field Indicator */
#hamper-form-popup input:required {
    border-left: 3px solid #BF8F2C;
}

/* Submit Button */
#hamper-form-popup .submit-button {
    background-color: #BF8F2C;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#hamper-form-popup .submit-button:hover {
    background-color: #9e7420;
}


#hamper-form-popup .close-button:hover {
    color: #BF8F2C;
}

/* Labels and Field Alignment */
#hamper-form-popup label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: #555;
    text-align: left;
}

#hamper-form-popup input::placeholder {
    color: #999;
    opacity: 0.8;
}

#hamper-form-popup .close-button {
    color: black;
    position: relative;
    top: 0;
    left: 250px;
    font-size: small;
}

/* Form Labels */
#hamper-form-popup label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 5px;
    color: #333;
    text-align: left;
    padding-left: 5px;
    background-color: transparent;
    box-shadow: none;
}

/* Required Asterisk */
#hamper-form-popup label span {
    color: #BF8F2C;
}

#hamper-claim-popup .close-button {
    color: black;
    position: relative;
    top: 0;
    left: 0;
    font-size: small;
    font-weight: bold;
}

#reach-popup .close-button {
    color: black;
    position: relative;
    top: 0;
    left: 0;
    font-size: small;
    font-weight: bold;
}


.link-text {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.link-text:hover {
    color: #0056b3;
}

/* Form Fields */
#reach-popup input[type="text"],
#reach-popup input[type="email"],
#reach-popup input[type="tel"],
#reach-popup select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

#reach-popup input[type="text"]:focus,
#reach-popup input[type="email"]:focus,
#reach-popup input[type="tel"]:focus,
#reach-popup select:focus {
    outline: none;
    border-color: #BF8F2C;
    box-shadow: 0 0 5px rgba(191, 143, 44, 0.5);
}

/* Required Field Indicator */
#reach-popup input:required,
#reach-popup select:required {
    border-left: 3px solid #BF8F2C;
}

/* Submit Button */
#reach-popup .submit-button {
    background-color: #BF8F2C;
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

#reach-popup .submit-button:hover {
    background-color: #9e7420;
}

#reach-popup .close-button:hover {
    color: #BF8F2C;
}

/* Labels and Field Alignment */
#reach-popup label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: #555;
    text-align: left;
}

#reach-popup input::placeholder,
#reach-popup select::placeholder {
    color: #999;
    opacity: 0.8;
}

#reach-popup textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    resize: vertical;
    /* Allows vertical resizing */
}

#reach-popup textarea:focus {
    outline: none;
    border-color: #BF8F2C;
    box-shadow: 0 0 5px rgba(191, 143, 44, 0.5);
}

#reach-popup textarea::placeholder {
    color: #999;
    opacity: 0.8;
}


/* updated pop-up changes */
@keyframes subtleBorderGlow {
    0% {
        box-shadow: 0 0 2px #BF8F2C, 0 0 4px #BF8F2C, 0 0 6px rgba(191, 143, 44, 0.5);
    }

    50% {
        box-shadow: 0 0 4px #BF8F2C, 0 0 6px #BF8F2C, 0 0 8px rgba(191, 143, 44, 0.7);
    }

    100% {
        box-shadow: 0 0 2px #BF8F2C, 0 0 4px #BF8F2C, 0 0 6px rgba(191, 143, 44, 0.5);
    }
}

.open-360-btn {
    background-color: #BF8F2C;
    /* Base color */
    color: white;

    padding: 10px 30px;
    border: none;
    border-radius: 10px;
    margin: -1px auto;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    animation: subtleBorderGlow 2s infinite;
    /* Subtle glow animation */
    position: relative;
    z-index: 1;
}

.open-360-btn:hover {
    transform: translateY(-2px);
    /* Subtle upward movement */
    background-color: #a67a24;
    /* Slightly darker base color on hover */
    box-shadow: 0 0 3px rgba(191, 143, 44, 0.7), 0 0 8px rgba(191, 143, 44, 0.5);
}


.hamper-popup {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

/* Visible State */
.hamper-popup.show {
    display: flex;
    visibility: visible;
    opacity: 1;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark background with slight transparency */
    z-index: 1000;
}

/* Popup Content */
.hamper-popup-content {
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    /* Soft gradient background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Heading Styling */
.hamper-popup-content h3 {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Styling */
.hamper-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Close Button Styling */
.close-button {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #888888;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Close Button Hover Effect */
.close-button:hover {
    color: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamper-popup-content {
        max-width: 50%;
        padding: 20px;
    }

    .hamper-popup-content h3 {
        font-size: 1.5rem;
    }

    .open-360-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 440px) {
    .hamper-popup-content {
        max-width: 85%;
        padding: 10px;
    }
}

.schedule-demo-btn {
    /* position: absolute; */
    font-family: 'Montaga', serif;
    background-color: #ffffff;
    /* Prominent color */
    color: black;
    /* Contrast text */
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    /* animation: zigzag 1s infinite; */

}

.schedule-demo-btn:hover {
    background-color: #BF8F2C;
    transform: scale(1.05);
    /* Slight enlargement on hover */
}

/* @keyframes zigzag {

    0%,
    100% {
        display: block;
        opacity: 1;
    }

    50% {
        display: none;
        opacity: 0;
    }
} */

.pulsating-button {
    background-color: #BF8F2C;
    /* Button color */
    color: #ffffff;
    /* Text color */
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    outline: none;
    position: relative;
    overflow: hidden;
}

.pulsating-button::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.4);
    /* Pulsating color */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(2);
    animation: pulsate 1.5s infinite ease-in-out;
    z-index: 0;
}

.pulsating-button:hover {
    background-color: #BF7F2C;
    /* Hover color */
}

.pulsating-button span {
    position: relative;
    z-index: 1;
    /* Keeps the text above the animation */
}

@keyframes pulsate {
    0% {
        transform: translate(10%, 10%) scale(2);
        opacity: 1;
    }

    100% {
        transform: translate(150%, 150%) scale(1.8);
        opacity: 0;
    }
}


/* Building Section code */
/* Ensure CSS only affects .building */
.building {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #fbf1e5;
    margin: 20px 0;
}

.building h2 {
    font-size: 24px;
    font-family: 'Montaga', serif;
    color: #333;
    font-weight: 500;

    margin-bottom: 20px;
}

.building p {
    color: #666;

    /* font-size: 16px; */
    margin: 10px 5px;
}

.images {
    width: 70%;
    margin: 0 auto;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    justify-content: center;
    /* gap: 20px; */
    margin: -15px 0;
}

.small-image {
    width: 950px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
}

.single-image {
    margin: 10px auto;
}

.single-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.building-links {
    position: relative;
    margin: 0;
    font-family: 'Montaga', serif;
}

.building-links .link {
    margin: 0px auto;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.building-links .link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .building {
        padding: 40px;
        gap: 20px;
    }

    .building h2 {
        font-size: 24px;
    }

    .building p {
        /* font-size: 18px; */
        max-width: 70%;
    }

    .small-image {
        max-width: 1200px;
    }

    .images img {
        max-width: 90%;
    }
}

/* Medium desktops and tablets (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .building h2 {
        font-size: 24px;
    }

    .building p {
        /* font-size: 16px; */
        max-width: 80%;
    }

    .small-image {
        max-width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .single-image img {
        width: 90px;
        height: 90px;
    }
}

/* Tablets and small desktops (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .building h2 {
        font-size: 24px;
    }

    .building p {
        /* font-size: 15px; */
        max-width: 85%;
    }

    .small-image {
        max-width: 90%;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .single-image img {
        width: 80px;
        height: 80px;
    }
}

/* Mobile phones (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .building {
        gap: 5px;
    }

    .building h2 {
        font-size: 22px;
    }

    .building p {
        /* font-size: 14px; */
        max-width: 90%;
    }



    .small-image {
        max-width: 80%;
        /* margin-top: 5px;
        margin-bottom: 1px; */
    }

    .single-image img {
        width: 70px;
        height: 70px;
    }
}

/* Extra small devices (below 576px) */
@media (max-width: 575px) {
    .building h2 {
        font-size: 20px;
    }

    .building p {
        /* font-size: 13px; */
        max-width: 95%;
    }

    .small-image {
        /* margin: 0 auto; */
        max-width: 100%;
    }

    .single-image img {
        width: 60px;
        height: 60px;
    }

    .building-links .link {
        font-size: 14px;
    }
}




/* @media (max-width: 768px) {
    .images {
        justify-content: center;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
} */


.abt-image {
    flex: 1;
    /* Image container takes up available space */
    width: 50%;
    margin-top: 50px;
    margin-bottom: 65px;
    max-width: 500px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}


/* Responsiveness for Dropdown menu */
@media (min-width: 768px) and (max-width: 991px) {

    .dropdown-content {
        left: 100%;
        top: 20%;
        /* position: static; */
    }

    .dropdown-project:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateX(1);
    }

    .dropbtn i {
        transform: rotate(270deg);
    }

    .abt-image {
        max-width: 450px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .dropdown-content {
        left: 100%;
        top: 20%;
        /* position: static; */
    }

    .dropdown-project:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateX(1);
    }

    .dropbtn i {
        transform: rotate(270deg);
    }

    .abt-image {
        max-width: 250px;
        object-fit: contain;
    }
}

@media (max-width: 575px) {
    .dropdown-content {
        left: 100%;
        top: 20%;
        /* position: static; */
    }

    .dropdown-project:hover .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateX(1);
    }

    .dropbtn i {
        transform: rotate(270deg);
    }

    #about .container .image {
        margin-top: 1px;
        margin-bottom: 1px;
    }

    .small-image {
        max-width: 90%;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}

@media (min-width: 998px) and (max-width: 1050px) {}

.abt-image {
    margin-top: 85px;
    margin-bottom: 85px;
}

.build-container {
    width: 90%;
    display: flex;
}

.build-img {
    width: 100%;
}