/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d7592;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --background-color: #f9f9f9;
    --heading-color: #263d29;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-weight: 400;
  
}

/* Header styles */
header {
    background: #383838;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding: 0.5rem;
}

.logo img {
    display: block;
    max-width: 150px;
    /* Adjust as needed */
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    transition: color 0.3s;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Font utility classes */
.font-lato {
    font-family: 'Lato', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}


.desktop h1 {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 300;
    margin: 0px;
    font-size: 1em;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    line-height: 1.3;
    font-size: 46px;
}

.mobile h1 {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    line-height: 1.3;
    font-size: 1.6rem;
}

.desktop p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.1px;
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: justify;
    margin-top: 1rem;
    color: #000000;
}

.desktop .fa-text {
    padding: 0px;
    margin: 0px;
    font-size: 3rem !important;
    color: #545454 !important;
}

.mobile .fa-text {
    padding: 0px;
    margin: 0px;
    font-size: 2rem !important;
    color: #545454 !important;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.flex-col {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.desktop .ami-text p {
    padding: 0px;
    margin: 0px;
    font-size: 1rem;
    color: #545454;
    font-weight: 500;
    line-height: 1.3rem;
}

.mobile .ami-text p {
    padding: 0px;
    margin: 0px;
    font-size: 0.8rem;
    color: #545454;
    font-weight: 500;
    line-height: 1rem;
}

.center {
    text-align: center;
}

.btn-primary {
    color: #000;
    background-color: #E1DED7;
}

.btn-primary:hover {
    background-color: #2d7592;
    color: #fff;
}

.btn-sm {
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-border {
    border: 1px solid #868686;
    color: #000;
    font-size: 0.8rem;

    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-md {
    padding: 1.3rem 1.6rem;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-lg {
    padding: 2rem 1.8rem;
    letter-spacing: 0.2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn {
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: #3333332f 0px 0px 0px 1px inset;

}

.amenities {
    border-top: groove #cfcfcf33;
    border-bottom: groove #cfcfcf33;
    border-width: 0.2rem;
    font-size: 1.5rem;
}

.mobile {
    display: none;
}

.mobile p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;

    font-size: 1rem;
    line-height: 1.3rem;
    text-align: left;
    margin-top: 1rem;
    color: #000000;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

nav a:hover {
    color: #0066cc;
}

.menu-toggle {
    display: none;
    /* Hidden by default, shown on smaller screens */
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.menu-toggle .bar {
    height: 4px;
    width: 30px;
    background-color: #fff;
    border-radius: 4px;
    margin: 4px 0;
    transition: 0.25s;
    position: relative;
    transform-origin: center;
}

/* X animation for menu toggle */
.menu-toggle .bar {
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle.active {
    animation: spinToggle 0.3s ease forwards;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(11.5px, -11.5px);
}

@keyframes spinToggle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.header-icon img {
    width: 24px;
    height: 24px;
    filter: invert(0);
}

.header-icon:hover {
    background-color: #e0e0e0;
}



@media (max-width: 768px) {
    
    header {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0rem 0.6rem;
    }

    .logo {
        order: 2;

    }

    .logo img {
        width: 80%;
    }

    nav {
        order: 4;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        background: #383838;
        padding: 1rem;
        z-index: 99;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    nav.active {
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
        order: 1;
    }

    .header-right {
        order: 3;
        gap: 0.5rem;
    }

    .get-in-touch-button {
        display: none !important;
    }

    .mobile-banner {
        display: block !important;
    }

    .secondary-banner {
        display: none !important;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.get-in-touch-button {
    background-color: #f0f0f0;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.get-in-touch-button:hover {
    background-color: #e0e0e0;
    color: #000;
}

.get-in-touch-button .arrow-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}

.ml-4 {
    margin-left: 4rem;
}

.ml-5 {
    margin-left: 5rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-3 {
    margin-right: 3rem;
}

.mr-4 {
    margin-right: 4rem;
}

.mr-5 {
    margin-right: 5rem;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pl-4 {
    padding-left: 4rem;
}

.pl-5 {
    padding-left: 5rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pr-3 {
    padding-right: 3rem;
}

.pr-4 {
    padding-right: 4rem;
}

.pr-5 {
    padding-right: 5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    /* Adjust for padding */
    margin-right: -1rem;
    /* Adjust for padding */
}

.col {
    flex: 1;
    padding-left: 1rem;
    /* Adjust for padding */
    padding-right: 1rem;
    /* Adjust for padding */
    box-sizing: border-box;
}

.col-1 {
    flex: 0 0 8.33%;
    /* 1/12 of the row */
    max-width: 8.33%;
}

.col-2 {
    flex: 0 0 16.66%;
    /* 2/12 of the row */
    max-width: 16.66%;
}

.col-3 {
    flex: 0 0 25%;
    /* 3/12 of the row */
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33%;
    /* 4/12 of the row */
    max-width: 33.33%;
}

.col-5 {
    flex: 0 0 41.66%;
    /* 5/12 of the row */
    max-width: 41.66%;
}

.col-6 {
    flex: 0 0 50%;
    /* 6/12 of the row */
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33%;
    /* 7/12 of the row */
    max-width: 58.33%;
}

.col-8 {
    flex: 0 0 66.66%;
    /* 8/12 of the row */
    max-width: 66.66%;
}

.col-9 {
    flex: 0 0 75%;
    /* 9/12 of the row */
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33%;
    /* 10/12 of the row */
    max-width: 83.33%;
}

.col-11 {
    flex: 0 0 91.66%;
    /* 11/12 of the row */
    max-width: 91.66%;
}

.col-12 {
    flex: 0 0 100%;
    /* Full width */
    max-width: 100%;
}

/* Padding utility classes */
.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Tab styles */
.tabs-container {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    margin-bottom: 1rem;
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    /* Align buttons to the left */
}

@media (max-width: 768px) {
    .tab-button{
        padding: 12px 32px !important;
        font-size: 0.8rem !important;
    }
    .tab-button.active {
        font-weight: 400 !important;
    }
}

.tab-button {
    padding: 20px 94px;
    cursor: pointer;
    border: none;
    background-color: rgba(36, 61, 36, 0.29);
    font-size: 1rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-right: 1px;
    /* Space between buttons */
    color: #fff;
    /* Changed color */
}

.tab-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.tab-button.active {
    color: #fff;
    border-bottom-color: var(--heading-color);
    font-weight: bold;
    background-color: var(--heading-color);
}

.tab-content-container {
    width: 100%;
    /* Full width */
}

.tab-content {
    display: none;
    padding: 20px 0;
    /* Adjust padding as needed */
    animation: fadeIn 0.5s ease-in-out;
    /* Fade transition */
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.line {
    height: 1px;
    max-height: 1px;
    ;
    background-color: var(--heading-color);
}

.img-responsive {
    width: 100%;
    height: auto;
}

#toTop {
    cursor: pointer;
    background-color: rgba(20, 22, 23, 1);
    border-radius: 4px 4px 0 0;
    bottom: 0;
    height: 35px;
    position: fixed;
    text-align: center;
    width: 48px;
    z-index: 100000;
    text-decoration: none;
    transition: opacity .4s ease-in-out, background .2s ease-in-out;
    line-height: 1;
}

#toTop:before {
    cursor: pointer;
    line-height: 35px;
    content: "\f106";
    -webkit-font-smoothing: antialiased;
    font-family: awb-icons;
    font-size: 22px;
    color: var(--totop_icon_color);
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
}

.pos-relative {
    position: relative !important;
}

.pos-absolute {
    position: absolute;
}

.box {
    bottom: 3rem;
    right: 4rem;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #263d294f;
    z-index: 1;
}

.thumbnail {
    align-items: center;
    position: relative;
    display: inline-block;
    padding: 6px;
    margin: 0.5rem;
    cursor: pointer;
    border: 2px solid #ccc;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* .thumbnail-mobile {
    align-items: center;
    padding: 6px;
    margin: 0.5rem;
    cursor: pointer;
    border: 2px solid #ccc;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
} */

.width {
    width: 50%;
}

.img-with-aspect-ratio {
    position: relative;
    width: 100%;

}

.desktopfooter,
.mobilefooter {
    background-color: #e1ded7;
    background-image: linear-gradient(180deg, #e1ded7 0%, #e1ded7 100%);


}

.form-container {
    width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 5px;
    /* font-weight: bold; */
    color: #000;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #343a4063;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #000;
}

.form-textarea {
    resize: vertical;
}

.form-checkbox {
    margin-right: 8px;
}

.form-checkbox-label {
    color: #000;
}

.form-submit-btn {
    background-color: #343a40;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #23272b;
}

.form-notices {
    margin-top: 20px;
}

.form-notice {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.form-notice.success {
    background-color: #d4edda;
    color: #155724;
}

.form-notice.error {
    background-color: #f8d7da;
    color: #721c24;
}

.form-notice-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    float: right;
}

.checkbox-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-checkbox {
    /* Hide the default checkbox */
    opacity: 0;
    position: absolute;
    left: 0;
    cursor: pointer;
    width: 13px;
    height: 13px;
    margin: 0;
}

.form-checkbox-label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    color: #000;
}

/* Custom checkbox box */
.form-checkbox-label::before {
    content: "";
    height: 13px;
    min-width: 13px;
    border: 1px solid var(--awb-form-border-color, #343a40);
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    background-color: transparent;
}

/* Custom checkmark */
.form-checkbox:checked+.form-checkbox-label::before {
    background-color: #343a40;
    border-color: #343a40;
}

.form-checkbox:checked+.form-checkbox-label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}

.f-link {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-line {
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;

}


.icon {
    display: block;
    font-family: 'awb-icons';
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 2.2rem;
    width: 36px;
    height: 36px;
    background-color: #262626;
    border-color: #262626;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.facebook:hover {
    color: #3b5998 !important;
    /* Facebook blue */
    background-color: #e0e0e0 !important;

}

.facebook:before {
    content: "\e604";
}

.instagram:hover {
    color: #e1306c !important;
    /* Instagram pink */
    background-color: #e0e0e0 !important;
}

.instagram:before {
    content: "\ea92";
    ;
}

.youtube:hover {
    color: #ff0000 !important;
    /* YouTube red */
    background-color: #e0e0e0 !important;
}

.youtube:before {
    content: "\e622";
}

.linkedIn:hover {
    color: #0077b5 !important;
    /* LinkedIn blue */
    background-color: #e0e0e0 !important;
}

.linkedIn:before {
    content: "\e60f";
}

.terms a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms a:hover {
    color: #2d7592;
}

.terms {
    font-size: 1rem;
    color: #000;
    margin-top: 1rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--heading-color);
    font-weight: 800;
    font-size: 2rem;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper .swiper-slide {
    height: auto;
}

.player{
    background: #000;
    width: 80px !important;
    height: 80px !important;
    border: solid 1px #fff;
    border-radius: 100% !important;
    position: absolute;
    top: 29% !important;
    left: 39% !important;
    text-indent: -9999px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

.player span {
    width: 0 !important;
    height: 0 !important;
    border-top: 13px solid transparent !important;
    border-left: solid 23px #fff !important;
    border-bottom: 13px solid transparent !important;
    position: absolute;
    top: 33% !important;
    left: 40%;
}

.player:hover {
    background: #0000 !important;
    cursor: pointer;
    opacity: 0.2 !important;
}

@keyframes fusionSonarEffect {
    0% {
        opacity: .3
    }

    40% {
        opacity: .5
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}
@keyframes fusionToRightFromLeft {
    49% {
        transform: translate(100%)
    }

    50% {
        opacity: 0;
        transform: translate(-100%)
    }

    51% {
        opacity: 1
    }

    100% {
        opacity: 1
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


.inq{
    position: relative;
}
.comment-icon {
    font-size: 1.2rem;
    background-color:   #17572c;
    padding: 0.5rem 1rem;
    width: 56px;
    font-style: normal;
    color: #fff;
    align-items: center;
    animation-duration: 0.3s;
}
.comment-icon:hover{
    background-color: #2d7592;
    color: #fff;
    cursor: pointer;
    transform: scale(.93);
    transition: all .3s
}
.comment-icon:before {
    content:"\f27a";
    font-family: "FaRegular";
    font-style: normal !important;
    font-size: 1.2rem;  
    transition: none;
    animation: fusionToRightFromLeft .3s forwards
}
.comment-icon:hover:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    content: "";
    box-sizing: content-box;
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .1);
    opacity: 0;
    transform: scale(.9);
    display: inline-block;
    animation: fusionSonarEffect 1.3s ease-out 75ms;
}
.table-1{
    overflow-x: auto;            /* enable horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}
.table {
    width: 100%;
    min-width: 600px; /* Minimum width for the table */
    border-collapse: collapse;
    margin-top: 1rem;
}
.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-family: "Alegreya Sans SC", sans-serif;

}
.table th {
    background-color: #f2f2f2;
    font-weight: bold;
}
.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-striped tbody tr:nth-child(even) {
    background-color: #fff;
}


.linebottom{
    border-bottom: 1px dashed #c9c9c9;
    max-width: 50%;
}

/* Accordion styles */
.accordion-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {    
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 22px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:20px
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

.accordion-header::before {
    content: '\002B'; /* Plus sign */
    font-weight: bold;
    margin-left: 5px;
}

.accordion-header.active::before {
    content: "\2212"; /* Minus sign */
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.2s ease-out, padding 0.2s ease-out;
}

.accordion-content p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Box */
.popup-box {
  background: #e1ded7;
  padding: 20px 30px;
  width: 400px;
  position: relative;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Form Field Styling */
.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #000;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  padding: 5px 0;
  color: #000;
}

.form-group input:focus {
  outline: none;
  border-bottom: 0.6px solid #5555556b;
}

.submit-btn {
  background: #343a40;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
}

.flex-row-wrap {
  display: flex;
  flex-direction: row;    /* lay out children in a row */
  flex-wrap: wrap;    
  gap: 1rem;      
          /* optional spacing between items */
}

.flex-item-wrap {
  align-items: center; 
  flex: 1 1 200px;        /* grow, shrink, base width 200px */
  max-width: 200px;       /* prevent getting too narrow */
  background: #f0f0f0;
  padding: 1rem;
  border: 1px solid #00000052;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
}
.flex-item-wrap p{
    text-align: center;
    margin: 0;
    padding: 0;
}

.privacy-policy{
 padding: 6rem;
 max-width: 1480px;
 margin: 0 auto;
}

@media (max-width: 768px) {
    .privacy-policy{
        padding: 2rem !important;
    }
}