/* Hero Section Base Styles */
.hero-section {
    position: relative;
    width: 100%;
    padding: 260px 40px 120px;
    background: linear-gradient(252deg, #EE9725 -2.71%, #FF7532 80.17%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-content h1 {
    text-align: center;
    font-size: 110px;
    line-height: 113px;
    letter-spacing: -2.286px;
}

/* Add the Exclude-white.png image to the RIGHT */
.hero-content h1::before {
    content: "";
    position: absolute;
    right: -4%;
    bottom: -8%;
    transform: translateY(-50%);
    width: 170.304px;
    height: 170.304px;
    background-image: url(/wp-content/uploads/2025/02/Exclude-white.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* Add the Group.png image to the LEFT */
.hero-content h1::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: 12%;
    transform: translateY(-50%);
    width: 302.75px;
    height: 81.27px;
    background-image: url(/wp-content/uploads/2025/02/Group.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-section-end {
    background-image: url(/wp-content/uploads/2025/02/Frame-1000003105.png);
    background-size: cover;
    margin-top: -1px;
    min-height: 140px;
}

/*=============================
=        MEDIA QUERIES       =
=============================*/

/* (max-width:1760px) – First Block */
@media (max-width:1760px) {
  .hero-section {
    padding: 195px 40px 70px;
  }
  .hero-section-end {
    min-height: 90px;
  }
  .hero-content h1 {
    font-size: 89.289px;
    line-height: 88.359px;
    letter-spacing: -1.714px;
  }
  .hero-content h1::after {
    left: -0.5%;
    bottom: 2%;
    width: 171.246px;
    height: 45.97px;
  }
}

/* (max-width:1760px) – Second Block */
@media (max-width:1760px) {
  .hero-section {
    padding: 195px 40px 95px;
  }
  .hero-section-end {
    min-height: 65px;
  }
  .hero-content h1::before {
    right: -6%;
    bottom: -23%;
  }
  .hero-content h1::after {
    left: -3%;
    bottom: 12%;
  }
  .hero-content h1 {
    font-size: 64px;
    line-height: 62.833px;
    letter-spacing: -1.219px;
  }
}




/* (max-width:992px) */
@media (max-width: 992px) {
  .hero-section {
    padding: 136px 40px 70px;
  }
  .hero-content h1 {
    font-size: 38.929px;
    line-height: 41.219px;
    letter-spacing: -1.055px;
  }
  .hero-content h1::before {
    right: -7%;
    bottom: -13%;
    width: 108.709px;
    height: 114.067px;
  }
  .hero-content h1::after {
    left: -6%;
    bottom: 15%;
    width: 94.754px;
    height: 25.436px;
  }
}

/* (max-width:430px) */
@media (max-width: 430px) {
  .hero-content h1::before {
    right: -12%;
  }
  .hero-content h1::after {
    left: -11%;
    bottom: 16%;
  }
}

/* Hero Section Base Styles ends */

/* Resources Section Base Styles */

/* Resources Section */
.resources-section {
    text-align: center;
    padding: 50px 122px;
}

/* Filter Tags */
.resource-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 85px;
}

.filter-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
	background: #F5F5F5;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #6C6C6C;
    color: #6C6C6C;
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
}

.filter-tag.active {
    background: #008ACF;
    color: #fff;
    border-color: #008ACF;
    font-weight: 700;
}

.remove-filter {
    margin-left: 10px;
    cursor: pointer;
}

/* Resource Cards */
.resource-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1500px;
    margin: auto;
	
}

.resource-card {
    background: #F0EFF1;
    padding: 29px 38px 48px 38px;
    border-radius: 4.104px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: baseline;
	gap: 15px;
 	transition: background 0.3s ease, color 0.3s ease;
}

/* .resource-card.active {
    background: #007bff;
    color: #fff;
} */

.resource-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(197deg, #008ACF 6.68%, #0164AE 88.02%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card * {
    position: relative;
    z-index: 1;
}

.resource-card:hover {
box-shadow: -18.898px 18.898px 47.966px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.resource-card:hover .resource-date,
.resource-card:hover .resource-title,
.resource-card:hover .resource-meta,
.resource-card:hover .resource-category {
    color: #fff; /* Make text white */
}

/* Resource Meta */
.resource-date {
    font-size: 18px;
    line-height: 18px;
    color: #3B3B3B;
}

.resource-title {
/*     color: #1F1F1F; */
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.56px;
}

.resource-meta, .resource-category {
    color: #A0A0A0;
    font-family: Ubuntu;
    font-size: 18px;
    line-height: 24px;
}

.resource-category span {
font-weight: 700;
vertical-align: baseline;
}

/* Download Button */
.download-btn {
    background: #ff9800;
    color: #fff !important;
    border-radius: 5px;
/*     margin-top: 10px; */
    display: flex;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 9.685px;
    font-family: Ubuntu;
    font-size: 15.314px;
    font-style: normal;
    font-weight: 700;
    line-height: 20.167px;
    letter-spacing: 1.231px;
    text-transform: uppercase;
}

.download-btn span {
    display: inline-block;
    width: 14px; /* Adjust size */
    height: 14px; /* Adjust size */
    background-image: url('/wp-content/uploads/2025/03/download-arrow-4248c7.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.download-btn:hover {
    background: #FF851B; /* Darker orange on hover */
}


/* See More */

.see-more {
    margin-top: 43px;
}

.see-more a {
    color: #0065AE;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Responsive override for smaller screens (max-width:1760px) */
@media (max-width:1760px) {
    .see-more a {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.2px;
    }
}

/* See More ends */


/* Learn More Section */
.learn-more {
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.44px;
    color: #000;
    max-width: 771px;
}

.learn-more-container {
    display: flex;
    justify-content: center;
	align-items: center;
    margin-top: 47px;
	gap: 33px;
}

.learn-more a {
    text-decoration-line: underline;
    vertical-align: baseline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

.h-divider {
    width: 100%;
	max-width: 182px;
	height: 2px;
	background: #C0C0C0;

}


@media (max-width:1760px) {

.filter-tag {
    font-size: 21.266px;
    line-height: 24px;
}

.resource-date {
    font-size: 15px;
    line-height: 15px;
}

.resource-title {
    font-size: 28px;
    line-height: 35px;
}

.resource-meta, .resource-category {
    font-size: 14px;
    line-height: 18px;
}

.download-btn {
    padding: 12px 20px;
    gap: 7.685px;
    font-size: 12.314px;
    line-height: 20.167px;
}

}

@media (max-width:1290px) {
.resources-section {
    padding: 50px 70px;
}

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

.filter-tag {
        font-size: 16px;
        line-height: 16px;
		padding: 8px 12px;
		gap:4px;
    }

.resource-filters {
    gap: 14px;
    margin-bottom: 50px;
}

}


@media (max-width: 992px) {
    .resources-section {
        padding: 30px 40px;
    }

    .resource-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .resource-filters {
        margin-bottom: 30px;
        align-items: center;
        justify-content: flex-start;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 0;
    }


.resource-filters::-webkit-scrollbar {
    height: 8px;
}

.resource-filters::-webkit-scrollbar-thumb {
    background-color: #0167B1;
    border-radius: 5px;
}


.learn-more {
    font-size: 18px;
    line-height: 28px;
}

.learn-more-container {
    gap: 14px;
}

.h-divider {
    max-width: 50px;
    height: 1px;
}

.resource-title {
        font-size: 24px;
        line-height: 31px;
    }

}

@media (max-width: 500px) {
    .h-divider {
        max-width: 30px;
        height: 1px;
    }

    .learn-more {
        font-size: 16px;
        line-height: 24px;
    }

}


@media (max-width: 400px) {
    .resources-section {
        padding: 30px 30px;
    }

.resource-title {
        font-size: 24px;
        line-height: 30px;
    }

.resource-meta, .resource-category {
        font-size: 12px;
        line-height: 18px;
    }

    .resource-date {
        font-size: 12px;
        line-height: 12px;
    }

	.resource-card {
    padding: 24px 28px 34px;
	    gap: 12px;
}


}



