/* ===================================
   Shelter Unity - Main Stylesheet
   =================================== */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    background: #fff;
    overflow-x: hidden;
    /* fallback zodat hero niet onder navbar schuift, JS overschrijft met exacte hoogte */
    padding-top: var(--header-offset, 140px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

p {
    margin: 0 0 15px;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c0392b;
    text-decoration: none;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Generic image containers */
.img-box img,
figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.intro-hero-img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin: 0 auto;
}

/* Intro and feature images */
.intro-img-content .img-box img,
.feature-right-colum .img-box img {
    object-fit: cover;
}

/* Icons inside cards */
.feature-content-two .icon-box img,
.single-service-content .icon-box img,
.brand-slider img {
    max-height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

.brand-slider figure {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* GDPR banner */
.gdpr-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.gdpr-banner__text {
    color: #444;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.gdpr-banner__text a {
    color: #e74c3c;
    text-decoration: underline;
}

.gdpr-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gdpr-btn {
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gdpr-btn--primary {
    background: #e74c3c;
    color: #fff;
}

.gdpr-btn--primary:hover {
    background: #c0392b;
}

.sec-pad {
    padding: 80px 0;
}

.white {
    color: #fff !important;
}

.centred {
    text-align: center;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.main-header.is-sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-upper {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.header-meta .meta-item {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo-text .highlight {
    color: #e74c3c;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.single-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-info .icon-box {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
}

.single-info .text-box p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.single-info .text-box p span {
    font-weight: 600;
    color: #333;
}

.btn-donate {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background: #c0392b;
    color: #fff;
}

/* Navigation */
.header-lower {
    background: #2c3e50;
}

.main-menu {
    position: relative;
}

.navigation {
    display: flex;
    justify-content: center;
}

.navigation li {
    position: relative;
}

.navigation li a {
    display: block;
    padding: 18px 25px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navigation li.current a,
.navigation li a:hover {
    background: #e74c3c;
    color: #fff;
}

.navbar-toggle {
    background: #e74c3c;
    border: none;
    padding: 10px;
    margin: 10px 0;
}

.navbar-toggle .icon-bar {
    background: #fff;
}

/* Main Slider */
.main-slider {
    position: relative;
    margin-top: 0;
}

.rev_slider_wrapper {
    position: relative;
}

.tp-caption .title h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.tp-caption .title p {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.tp-btn a {
    display: inline-block;
    padding: 15px 40px;
    background: #e74c3c;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tp-btn a:hover {
    background: #fff;
    color: #e74c3c;
}

/* Intro Section */
.intro-section {
    background: #f8f9fa;
}

.intro-content {
    padding: 60px 0;
}

.title-top {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.intro-content .title h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-content .title h2 span {
    color: #e74c3c;
}

.intro-content .text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-content .list {
    margin-top: 20px;
}

.intro-content .list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
}

.intro-content .list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.intro-img-content {
    text-align: center;
    padding: 40px 0;
}

.intro-img-content .img-box {
    margin-bottom: 20px;
}

.intro-img-content .img-box img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-img-content .title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.intro-img-content .text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Fact Counter */
.fact-counter {
    background: #2c3e50;
    padding: 60px 0;
}

.single-counter-content {
    text-align: center;
    color: #fff;
}

.count-outer {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.single-counter-content .text {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
}

/* Feature Style One */
.feature-style-one {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.feature-style-one:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
}

.feature-style-one .container {
    position: relative;
    z-index: 1;
}

.top-content {
    margin-bottom: 50px;
}

.sec-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.sec-title h2.white {
    color: #fff;
}

.title-bottom-text {
    font-size: 16px;
    color: #666;
}

.title-bottom-text.white {
    color: #bdc3c7;
}

.feature-content-one {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-content-one:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.hexagon-content {
    margin-bottom: 25px;
}

.hexagon {
    width: 100px;
    height: 100px;
    background: #e74c3c;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hexagon .icon-box {
    font-size: 36px;
    color: #fff;
}

.feature-content-one .lower-content .title h4 {
    color: #fff;
    margin-bottom: 15px;
}

.feature-content-one .lower-content .text {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.7;
}

/* Feature Style Two */
.feature-style-two {
    background: #fff;
}

.feature-left-column {
    padding-right: 30px;
}

.feature-content-two {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-content-two:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-content-two .icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.feature-content-two .icon-box img {
    width: 100%;
}

.feature-content-two h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-content-two .text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.video-gallery {
    margin-top: 30px;
}

.video-gallery .icon-holder {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.video-gallery .icon a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    font-weight: 600;
}

.video-gallery .play-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.feature-right-colum {
    position: relative;
}

.feature-right-colum .img-box {
    margin-bottom: 20px;
}

.feature-right-colum .img-box img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-right-colum .lower-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #2c3e50;
    padding: 25px 30px;
    border-radius: 8px;
}

.feature-right-colum .lower-content .title h4 {
    color: #fff;
    margin: 0;
}

.feature-right-colum .right-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-right-colum .persent {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.feature-right-colum .right-text .text {
    color: #bdc3c7;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Work Section */
.work-section {
    background: #f8f9fa;
}

.work-column {
    padding: 0;
}

.single-work-content {
    padding: 60px 40px;
    text-align: center;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-work-content.overlay-bg {
    background: #2c3e50;
    color: #fff;
}

.single-work-content .title h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.single-work-content.overlay-bg .title h3 {
    color: #fff;
}

.single-work-content .text {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.7;
}

.single-work-content .title-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.single-work-content .lower-content .title h3 {
    color: #2c3e50;
}

.single-work-content .lower-content .text {
    color: #666;
}

.call-us {
    background: #e74c3c;
    padding: 30px;
    text-align: center;
}

.call-us h4 {
    color: #fff;
    margin-bottom: 5px;
}

.call-us span {
    font-weight: 700;
    font-size: 18px;
}

/* Service Section */
.service-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 20px;
}

.services-grid .service-column {
    float: none;
    width: 100%;
    max-width: none;
    padding: 0;
}

.single-service-content {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.single-service-content:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #e74c3c;
    transform: translateY(-5px);
}

.single-service-content .hexagon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.single-service-content:hover .hexagon {
    background: #e74c3c;
}

.single-service-content .hexagon .icon-box a {
    color: #e74c3c;
    font-size: 28px;
}

.single-service-content:hover .hexagon .icon-box a {
    color: #fff;
}

.single-service-content .lower-content h4 {
    margin: 20px 0 10px;
}

.single-service-content .lower-content h4 a {
    color: #333;
}

.single-service-content .lower-content h4 a:hover {
    color: #e74c3c;
}

.single-service-content .lower-content .text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.service-btn {
    text-align: center;
    margin-top: 30px;
}

.btn-one {
    display: inline-block;
    padding: 15px 40px;
    background: #e74c3c;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-one:hover {
    background: #c0392b;
    color: #fff;
}

/* Feature Style Three */
.feature-style-three {
    background: #f8f9fa;
}

.feature-top-content {
    position: relative;
    background: #2c3e50;
    background-image: url('../images/home/workers.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.feature-top-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.8);
}

.feature-top-content .container,
.feature-top-content .row,
.feature-top-content [class*="col-"] {
    position: relative;
    z-index: 1;
}

.about-tab-content {
    margin-top: 30px;
}

.about-tab-title ul {
    display: flex;
    gap: 20px;
}

.about-tab-title ul li {
    cursor: pointer;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.about-tab-title ul li.active,
.about-tab-title ul li:hover {
    background: #e74c3c;
}

.about-tab-title ul li .single-item .img-box {
    margin-bottom: 10px;
}

.about-tab-title ul li .single-item .img-box img {
    width: 40px;
}

.about-tab-title ul li .single-item h4 {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.about-tab-title ul li a.tab-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.feature-lower-content {
    padding: 60px 0;
}

.product-details-tab-content .tab-content {
    display: none;
}

.product-details-tab-content .tab-content:first-child {
    display: block;
}

.product-details-tab-content .tab-content .text {
    margin-bottom: 30px;
}

.progress-levels {
    margin-bottom: 20px;
}

.progress-box {
    position: relative;
}

.progress-box .box-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.progress-box .inner {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.progress-box .bar-fill {
    height: 100%;
    background: #e74c3c;
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}

/* Testimonial Section */
.testimonial-section {
    background: #fff;
}

.three-column-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.three-column-carousel .single-testimonial-content {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.single-testimonial-content {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 0;
    text-align: center;
}

.single-testimonial-content .top-content {
    margin-bottom: 20px;
}

.single-testimonial-content .author-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e74c3c;
}

.single-testimonial-content .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-testimonial-content .author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.single-testimonial-content .title {
    font-size: 14px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.author-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.author-rating li {
    color: #f1c40f;
}

.single-testimonial-content .text p {
    font-style: italic;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
}

.single-pricing-content {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.single-pricing-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.single-pricing-content .plan {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.single-pricing-content .price {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.single-pricing-content .price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.single-pricing-content .text {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.single-pricing-content .bottom-text {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-btn .btn-one {
    padding: 12px 30px;
    font-size: 13px;
}

/* Call Back Section */
.call-back-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/home/callback-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.call-back-content {
    background: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 10px;
}

.call-back-form .default-form input,
.call-back-form .default-form select,
.call-back-form .default-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.call-back-form .default-form input:focus,
.call-back-form .default-form select:focus,
.call-back-form .default-form textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

.call-back-form .default-form textarea {
    height: 120px;
    resize: none;
}

.select-box {
    position: relative;
}

.select-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.call-back-btn button {
    width: 100%;
    padding: 15px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-back-btn button:hover {
    background: #c0392b;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #bdc3c7;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo .logo-text {
    color: #fff;
    font-size: 24px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-widget .text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links li a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background: #e74c3c;
}

.links-widget h4,
.contact-widget h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.links-widget h4:after,
.contact-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
}

.links-widget .list li {
    margin-bottom: 12px;
}

.links-widget .list li a {
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.links-widget .list li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.single-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.single-contact .icon {
    color: #e74c3c;
    font-size: 16px;
    margin-top: 3px;
}

.single-contact .text p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #c0392b;
}

/* Owl Carousel Customization */
.owl-carousel .owl-item {
    padding: 10px;
}

.owl-nav {
    display: none;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #e74c3c;
}

/* Page Title */
.page-title {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-title .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.page-title .hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px;
    text-shadow: 0 4px 14px rgba(0,0,0,0.65);
}

.page-title .hero-lead {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

.page-title .hero-sub {
    color: #f1f4f7;
    font-size: 19px;
    line-height: 1.75;
    margin: 0;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
}

.hero-text-box {
    background: rgba(0, 0, 0, 0.88);
    border-radius: 10px;
    padding: 20px 22px;
    margin: 0 auto 20px;
    max-width: 820px;
    backdrop-filter: blur(3px);
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.hero-actions {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.btn-two {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-two:hover {
    background: #fff;
    color: #e74c3c;
}

.page-title h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.bread-crumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.bread-crumb li {
    color: #bdc3c7;
}

.bread-crumb li a {
    color: #fff;
}

.bread-crumb li a:hover {
    color: #e74c3c;
}

.bread-crumb li:before {
    content: '/';
    margin-right: 10px;
}

.bread-crumb li:first-child:before {
    display: none;
}

/* Team Section */
.team-section {
    background: #fff;
}

.single-team-content {
    text-align: center;
    margin-bottom: 30px;
}

.single-team-content .img-box {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #e74c3c;
}

.single-team-content .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-team-content .author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.single-team-content .title {
    font-size: 14px;
    color: #e74c3c;
}

/* CTA Section */
.cta-section {
    background: #e74c3c;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-content .btn-one {
    background: #fff;
    color: #e74c3c;
}

.cta-content .btn-one:hover {
    background: #2c3e50;
    color: #fff;
}

/* Bank Details */
.bank-details {
    background: #f8f9fa;
}

.bank-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.bank-info-box h3 {
    margin-bottom: 20px;
}

.bank-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.bank-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.bank-info p:last-child {
    margin-bottom: 0;
}

.small-text {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
}

.single-contact-info {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.single-contact-info:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.single-contact-info .icon-box {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.single-contact-info .icon-box i {
    font-size: 28px;
    color: #fff;
}

.single-contact-info h4 {
    margin-bottom: 15px;
}

.single-contact-info p {
    margin: 0;
    color: #666;
}

/* Partner Image Box */
.partner-img-box {
    padding: 20px;
}

.partner-img-box img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* About Image Box */
.about-img-box {
    padding: 20px;
}

.about-img-box img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
