@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nata Sans", sans-serif;
}

nav {
    width: 100%;
    height: 70px;
    background: #22defb;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    height: 100%;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 150px;
    display: block;
}

.logo-link{
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* .nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
} */

.nav-links a:hover{
    background-color: #fff;
    color: #01b4cf;
}

body {
    padding-top: 70px;
}

.body-sect {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 15px;
    min-height: calc(100vh - 250px);
}

.carousel-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.d-block {
    height: 500px;
    object-fit: cover;
}

.prob-div,
.ans-div {
    margin: 60px 0;
}

.section-h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.boot-cards {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    max-width: 18rem;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 16px;
}

.card-body {
    padding: 16px;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Answer Section */
.ans-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.left-container,
.right-container {
    flex: 1;
    min-width: 300px;
}

.left-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.flexcards-column {
    background-color: #f8f9fa;
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.flexcards-column:hover {
    background-color: #01b4cf;
    color: white;
    transform: translateX(8px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.flexcards-column .icon i {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.flexcards-column:hover .icon i {
    background: white;
    color: #0066cc;
}

/* Footer */
footer {
    width: 100%;
    background-color: #01b4cf;
    color: white;
    margin-top: 80px;
}

.foot-div {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.foot-logo h5 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 700;
}

.foot-logo p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 300px;
}

.foot-links {
    display: flex;
    gap: 16px;
}

.foot-links i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.foot-links i:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.border-div {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-div {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-links-nav {
    display: flex;
    gap: 20px;
}

.footer-links-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links-nav a:hover {
    color: #a8daff;
}

.div-foot-paragh p {
    margin: 0;
    opacity: 0.9;
}

/* Responsiveness*/
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 15px;
        padding: 6px 10px;
    }

    .d-block {
        height: 400px;
    }
}

@media (max-width: 768px) {
    nav {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

    .logo span {
        font-size: 18px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .section-h2 {
        font-size: 1.5rem;
    }

    .card {
        max-width: 100%;
    }

    .ans-container {
        flex-direction: column;
    }

    .foot-div {
        flex-direction: column;
        text-align: center;
    }

    .foot-links {
        justify-content: center;
    }

    .copyright-div {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .boot-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 300px;
    }

    .flexcards-column {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
}


/*---CONTACT PAGE SPECIFIC STYLES---*/
.contact-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
}

/* .contact-details a {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
} */

.teal{
    color: #01b4cf;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-buttons .btn {
    border-radius: 6px;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
}

.social-buttons .btn-outline-linkedin {
    color:  #0066cc;
    border-color: #0066cc;
}

.social-buttons .btn-outline-linkedin:hover {
    background: #0066cc;
    color: white;
}

.social-buttons .btn-success-whatsapp {
    color: #008080;
    border-color: #008080;
}

.social-buttons .btn-success-whatsapp:hover {
   background: #008080;
   color: white;  
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1.5px solid #ddd;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #22defb;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.2);
}

.contact-form .btn-primary {
    background: #22defb;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #0ec9e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #008080;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.map-overlay .btn {
    background: white;
    color: #333;
    font-size: 0.85rem;
    padding: 6px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.map-overlay .btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Responsiveness */
@media (max-width: 992px) {
    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .social-buttons {
        justify-content: center;
    }

    .map-container iframe {
        height: 350px;
    }

    .contact-form {
        margin-top: 2rem;
    }
}


/* --- MEMBERSHIP PAGE STYLES --- */

.membership-list {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.membership-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.membership-list li::marker {
    color: #008080;
}

.membership-img {
    border-radius: 12px;
    max-height: 480px;
    object-fit: cover;
    border: 3px solid #0080801a;
    margin-bottom: 30px;
}

.down-button button{
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: #008080;
    color: white;
}

.down-button button:hover{
    background: #008080;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #008080;
}

.alert-info {
    background-color: #e6f7f7;
    border-color: #b6e3e3;
    color: #004d4d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .membership-img {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .membership-list {
        padding-left: 18px;
    }
}


/* ABOUT PAGE STYLES */

.about-section {
    background-color: #ffffff;
    color: #333;
    line-height: 1.8;
}

.about-section .section-h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #01b4cf;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: #01b4cf;
    margin-top: 8px;
    border-radius: 5px;
}

.about-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
}

.teal-text {
    color: #01b4cf;
    font-weight: 600;
}

.about-list{
    list-style: lower-roman;
}

.objectives {
    margin-top: 40px;
}

.objectives-title {
    color: #01b4cf;
    font-size: 1.6rem;
    font-weight: 700;
}

.objectives-list {
    list-style: none;
    padding-left: 0;
}

.objectives-list li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.objectives-list i {
    margin-top: 5px;
}


@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .section-h2 {
        font-size: 1.6rem;
    }

    .objectives-title {
        font-size: 1.4rem;
    }

    .objectives-list li {
        font-size: 1rem;
    }
}


/*PURCHASER'S GUIDE STYLES*/

.purchaser-section {
    background-color: #ffffff;
}

.section-h2 {
    color: #01b4cf;
    font-weight: 700;
    font-size: 2rem;
}

.guide-subtext {
    font-size: 1.05rem;
    color: #333;
    margin-top: 10px;
}

.italic {
    font-style: italic;
    color: #555;
}

/* Table styling */
.purchaser-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.purchaser-table thead th {
    background-color: #01b4cf;
    /* Your requested header color */
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 12px;
}

.purchaser-table tbody td {
    background-color: #f9f9f9;
    color: #333;
    font-size: 0.96rem;
    padding: 12px;
    vertical-align: top;
}

.purchaser-table a {
    color: #0078d4;
    text-decoration: none;
}

.purchaser-table a:hover {
    text-decoration: underline;
}

.purchaser-table tr:nth-child(even) td {
    background-color: #f1f1f1;
}

/* Table borders */
.purchaser-table th,
.purchaser-table td {
    border: 1px solid #dcdcdc;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-h2 {
        font-size: 1.6rem;
    }

    .guide-subtext {
        font-size: 1rem;
    }

    .purchaser-table th,
    .purchaser-table td {
        font-size: 0.9rem;
    }
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile: Show hamburger, hide desktop links */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #22defb;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        max-height: 400px;
        padding: 20px 0;
    }

    .nav-links a {
        width: 90%;
        text-align: center;
        padding: 12px;
        margin: 5px 0;
        border-radius: 8px;
    }
}


/*  MOBILE FOOTER OPTIMIZATION */
@media (max-width: 768px) {
    .footer-links-nav {
        display: none !important;
        /* Hide navigation links on mobile */
    }

    .foot-div {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .foot-logo {
        text-align: center;
    }

    .foot-logo p {
        max-width: 100%;
    }

    .foot-links {
        justify-content: center;
        gap: 20px;
    }

    .copyright-div {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .div-foot-paragh p {
        font-size: 0.85rem;
    }
}

/* World Toilets Day Countdown Styling */
.countdown-slide {
   position: relative;
   max-width: 100%;
   height: auto;
}
.countdown-slide img {
   width: 905px;
   height: 400;
   display: block;
}
.countdown {
   position: absolute;
   left: 0;
   bottom: 0;
   top: 0;
   width: 60px;
   background: rgba(0, 0, 0, 0.7);
   color: #15ccfa;
   display: flex;
   justify-content: center;
   align-items: center;
   transform: rotate(-180deg);
   writing-mode: vertical-lr;
   text-align: center;
   padding: 20px;
   font-size: 1rem;
   border-top-right-radius: 8px;
   border-bottom-right-radius: 8px;
   box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
   font-style: italic;
}
.countdown h2 {
   margin: 0;
   font-size: 1rem;
   font-weight: bold;
   font-style: italic;
   word-spacing: 3px;
}
.countdown span {
   margin-top: 10px;
   font-size: 1rem;
   font-weight: bold;
   font-style: italic;
}