@font-face {
    font-family: 'helveticabold';
    src: url('../fonts/helvetica-bold-webfont.woff2') format('woff2'),
        url('../fonts/helvetica-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helveticaregular';
    src: url('../fonts/helvetica-webfont.woff2') format('woff2'),
        url('../fonts/helvetica-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    margin: 0;
    font-family: 'helveticaregular';
}

/* Header */
header {
    padding: 0px 30px;
    background-color: #efefef;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;

}

.container {
    width: 100%;
    max-width:840px;
    margin: 0 auto;
}

/* Hamburger */
.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    margin-left: 12px;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #333;
    left: 0;
    transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
}

.logo-title {
    font-size: 24px;
    font-weight: bold;
    color: #7a2c83;
}

.logo-subtitle {
    font-size: 14px;
    color: #b85e9c;
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgb(255, 255, 255, .9);
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-width: 240px;
    position: absolute;
}

.dropdown-menu.active {
    max-height: fit-content;
    z-index: 99;
    /* adjust if more items */
}

.dropdown-menu a {
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    color: #000;

}

.dropdown-menu a:hover {
    background: #1c3027;
    color: #fff;
}

.hg-logo img {
    width: 180px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cls-we-are-hourglass {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 0 15px;
}

.cls-we-are-hourglass h1 {
    color: #723a80;
    font-family: 'helveticabold';
    font-size: 20px;
    margin-bottom: 0;
}

.cls-we-are-hourglass h1 span {
    font-size: 18px;
}

.cls-we-are-hourglass p {
    margin-top: 4px;
    color: #333333;
    line-height: 26px;
    font-size: 18px;
}

.blog-slider,
.policy-research,
.feature-on-logo {
    width: 100%;
    padding: 20px 0;
}

.blog-slider img,
.policy-research img,
.feature-on-logo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: #1c3027 !important;
}

.blog-bg {
    background: #f5f5f5;
    padding: 14px 20px;
    margin-top: 28px;
}

.img-postion {
    position: relative;
}

.img-postion h1 {
    position: absolute;
    bottom: 0;
    z-index: 999;
    color: #fff;
    padding-left: 12px;
    text-transform: uppercase;
    font-size: 34px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Staatliches", sans-serif;
    margin-bottom: 4px;
}

.img-postion img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Layout */
.page-wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 840px;
    margin: auto;
    overflow: visible;
}

/* Sidebar */
.helpline p.helptxt {
    border-bottom: #010202 solid 1px;
    border-top: #010202 solid 1px;
}

.helptxt,
.freehelp {
    color: #723a80;
    font-size: 26px;
    font-family: 'helveticabold';
}

.helptxt strong,
.freehelp strong {
    font-family: 'helveticaregular';
    font-size: 18px;
}

.freehelp {
    color: #2c90b7 !important;
    border-bottom: #010202 solid 1px;
    margin-top: 0;
}

.sidebar {
    width: 200px;
    padding: 0 20px;
    margin-top: 24px;
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: flex-start;
}

.sidebar p {
    /* margin-bottom: 20px;
        margin-top: 24px; */
    margin: 0;
}

.paypal img {
    width: 100%;
}

.side-links {
    list-style: none;
    margin: 7px 0;
    padding-left: 0;
}

.side-links li {
    margin-bottom: 10px;
}

.side-links a {
    text-decoration: none;
    color: #7a2c7d;
    font-weight: bold;
}

.social a {
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
}

.social a img {
    width: 30px;
}

.social {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
}

.donate a,
.shop a {
    color: #ad3963;
    font-size: 28px;
    font-family: 'helveticabold';
}

.donate a span img,
.shop a span img {
    width: 30px;
    position: relative;
    top: 5px;
}

.shop a {
    color: #c87d1a !important;
}

.shop a span img {
    width: 22px;
    position: relative;
    top: 1px;
}

.shop {
    border-bottom: #010202 solid 1px;
    border-top: #010202 solid 1px;
    padding: 10px 0;
}

li.donate {
    padding-top: 4px;
}

/* Main Content */
.content {
    flex: 1;
    padding: 20px;
}
/*.card-section h2{
    background: #1c3027;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    max-width: 120px;
    width: 100%;
    text-transform: uppercase;
}*/
/* ONLY top section title */
.card-section > h2{
    background: #1c3027;
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    text-transform: uppercase;
}
.card-section-new h2{
    color: #000;
    padding: 10px 20px;
    width: 100%;
    text-transform: uppercase;
}

/*.card-section h3{
     text-transform: uppercase;
    font-size: 54px;
    font-weight: 400;
    font-family: "Staatliches", sans-serif;
    margin: 0 0 10px 0;
}*/
/* ONLY main title (direct child) */
.card-section > h3{
    text-transform: uppercase;
    font-size: 54px;
    font-weight: 400;
    font-family: "Staatliches", sans-serif;
    margin: 0 0 10px 0;
}


.card-section img{
    width: 100%;
}
/*.become-member {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.become-member p{
    margin: 0;
    padding: 0;
}
.become-member a{
    color: #000;
    text-decoration: none;
        display: flex;
    align-items: center;
}
.become-member a span{
    margin-left: 12px;
}*/

.become-member {
    border-top: #000 solid 1px;
    border-bottom: #000 solid 1px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.become-member a {
    display: inline-block;
}

.member-btn img {
    height: 40px; /* adjust as per your design */
}

.paypal-btn img {
    height: 40px; /* same height for alignment */
}

/* optional hover effect */
.become-member a:hover {
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
        align-items: center;
            justify-content: space-between;
}
.footer-logo img {
    width: 100%;
    max-width: 140px;
}
.footer-bottom .social{
    margin: 0;
    padding: 0;
}
/* Sections */


.section-text {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
    line-height: 28px;
    margin-top: 0;
    padding-top: 0;
}



.card img {
    border-radius: 15px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h4 {
    font-size: 20px;
    color: #7a2c7d;
    margin: 8px;
}



.footer {
    padding: 26px 0;
    background: #efefef;
    margin-top: 30px;
}


/* ===== TOP CONTACT GRID ===== */

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
    font-size: 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links a:first-child {
    margin-left: 0;
}

.no-bg {
    background: transparent;
}

/* ===== RESPONSIVE ===== */
.containerss {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}



/* RIGHT CONTENT PANEL */
.card-content {
    flex: 1;
}

.policy-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.card-content h1 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    margin-bottom: 6px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3px;
    margin-top: 0;
}

.read-more {
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.read-more:hover {
    text-decoration: underline;
}

.news-list{
    display: flex;
        flex-wrap: wrap;
    justify-content: space-between;;
}
.news-list div{
 width: 48%;
 margin-top: 12px;
}
.news-list p{
    line-height: 24px;
    font-size: 16px;
}
.news-list div img{
    border-radius: 8px;
    height: 160px;
    object-fit: cover;
    object-position: center;
}
.news-list div p a{
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .card {
        /* flex-direction: column; */
    }

    .card-image {
        flex: 100%;
        max-width: 140px;
    }

    .card-content h1 {
        font-size: 36px;
    }

    .card-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .card-content h1 {
        font-size: 28px;
    }

    .card-content p {
        font-size: 16px;
    }
}

@media(max-width:992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-logos {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 20px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .page-wrapper {
        flex-direction: column;
    }

    /* .sidebar {
        width: 100%;
    } */

    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .bottom-cards {
        grid-template-columns: 1fr 1fr;
    }

    .helptxt,
    .freehelp {
        font-size: 28px;
    }

    .helptxt strong,
    .freehelp strong {
        font-size: 19px;
    }

    .donate a,
    .shop a {
        font-size: 26px;
    }

    .donate a span img,
    .shop a span img {
        width: 30px;
    }
}

@media(max-width:767px) {
    .news-list div {
    width: 100%;
    margin: 0 auto;
    max-width: 320px;
}
    .footer-bottom {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.footer-links {
    margin: 20px 0;
}
    .card {
        flex-direction: column;
    }

    .card-image {
        flex: 100%;
        max-width: 320;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .bottom-cards {
        grid-template-columns: 1fr;
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    header {
        text-align: center;
    }

    .right-side-nav {
        margin-top: 14px;
    }

    .right-side-nav ul li {
        display: inline-block;
        margin: 5px;
    }

    .sing-up {
        flex-direction: column;
    }

    .sign-text {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-area {
        width: 100%;
    }

   
}

@media(min-width:768px) and (max-width:1024px) {
    .right-side-nav ul li a {
        font-size: 13px;
    }

    .right-side-nav ul li {
        margin: 2px;
    }

    .hg-logo img {
        width: 140px;
        padding-left: 30px;
    }

    .nations-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-logo img {
    width: 100%;
    max-width: 90px;
    margin-left: 12px;
}
}

@media(min-width:1200px) {
    .sidebar {
        padding-left: 0;
    }
}