﻿/* ======================================
   SABRR FOUNDATION HEADER & NAVBAR
====================================== */

.navbar {
    background: #ffffff !important;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    transition: .3s;
    z-index: 9999;
}

.navbar-brand {
    padding: 0;
}

    .navbar-brand img {
        max-height: 70px;
        width: auto;
    }

.navbar-nav {
    align-items: center;
}

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-link {
        color: #1E4540 !important;
        font-size: 15px;
        font-weight: 600;
        padding: 12px 15px !important;
        transition: .3s;
        text-decoration: none !important;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #225e32 !important;
        }

.dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    min-width: 250px;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    transition: .3s;
}

    .dropdown-item:hover {
        background: #eff6ff;
        color: #1E4540;
    }

.navbar .btn-primary {
    background: #1E4540;
    border-color: #2563eb;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

    .navbar .btn-primary:hover {
        background: #d7d310;
        border-color: #fffb42;
    }

/* Desktop Hover Dropdown */

@media(min-width:992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn .3s ease;
    }

    .navbar-nav .nav-link {
        line-height: 40px;
    }
}

/* Mobile Menu */

@media(max-width:991.98px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        max-height: 55px;
    }

    .navbar-toggler {
        border: none;
        padding: 5px;
    }

        .navbar-toggler:focus {
            box-shadow: none;
        }

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .navbar-nav {
        margin-bottom: 15px;
    }

        .navbar-nav .nav-item {
            border-bottom: 1px solid #f1f5f9;
        }

            .navbar-nav .nav-item:last-child {
                border-bottom: none;
            }

        .navbar-nav .nav-link {
            padding: 12px 0 !important;
            margin: 0 !important;
        }

    .dropdown-menu {
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 5px;
        padding: 5px;
    }

    .dropdown-item {
        padding: 10px 15px;
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
}

/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky Header Effect */

.navbar.sticky-top {
    top: 0;
}

/* Top Contact Button */

.call-btn {
    background: #2563eb;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

    .call-btn:hover {
        background: #1d4ed8;
        color: #fff !important;
    }
/* ==========================
   HERO BANNER
========================== */

.hero-banner {
    background: linear-gradient(135deg,#1E4540,#204A45);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

    .hero-banner::after {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: #ffffff;
    color: #1E4540;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btns .btn {
    margin-right: 10px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .hero-features div {
        color: #fff;
        font-weight: 500;
    }

    .hero-features i {
        color: #22c55e;
        margin-right: 6px;
    }

.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .hero-image img {
        max-width: 100%;
        animation: float 4s ease-in-out infinite;
    }

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Mobile */

@media(max-width:991px) {

    .hero-banner {
        padding: 70px 0;
        text-align: center;
    }

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

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

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-btns .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* ==========================
   ABOUT SECTION
========================== */

.about-section {
    background: #fff;
    position: relative;
}

.section-subtitle {
    color: #1E4540;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    overflow: hidden;
}

    .about-image img {
        width: 100%;
        transition: .4s;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.experience-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #2563eb;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37,99,235,.25);
}

    .experience-box h3 {
        margin: 0;
        font-size: 32px;
        font-weight: 700;
    }

    .experience-box span {
        font-size: 14px;
    }

.about-list {
    list-style: none;
    padding: 0;
}

    .about-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        color: #334155;
        font-weight: 500;
    }

        .about-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #22c55e;
            font-weight: bold;
        }

/* Mobile */

@media(max-width:991px) {

    .section-title {
        font-size: 32px;
    }

    .experience-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
}

@media(max-width:576px) {

    .section-title {
        font-size: 28px;
    }

    .about-section {
        text-align: center;
    }

    .about-list {
        text-align: left;
    }
}
/* ==========================
   OUR CENTRE SECTION
========================== */

.our-centre-section {
    background: #f8fafc;
}

.section-description {
    max-width: 850px;
    margin: 0 auto;
    color: #1E4540;
    line-height: 1.8;
}

.centre-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .centre-card:hover {
        transform: translateY(-8px);
    }

    .centre-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: .4s;
    }

    .centre-card:hover img {
        transform: scale(1.05);
    }

.centre-content {
    padding: 20px;
}

    .centre-content h4 {
        font-size: 22px;
        font-weight: 700;
        color: #1E4540;
        margin-bottom: 10px;
    }

    .centre-content p {
        color: #1E4540;
        margin: 0;
        line-height: 1.7;
    }

/* Mobile */

@media(max-width:768px) {

    .centre-card img {
        height: 220px;
    }

    .section-description {
        padding: 0 10px;
    }
}
/* Addiction Awareness Section */

.addiction-awareness-section {
    background: #f8fafc;
}

.lead-text {
    max-width: 800px;
    margin: auto;
    color: #203824;
    font-size: 18px;
    line-height: 1.8;
}

.stat-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    transition: .3s;
}

    .stat-card:hover {
        transform: translateY(-8px);
    }

    .stat-card h3 {
        color: #1E4540;
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .stat-card p {
        margin: 0;
        color: #64748b;
        line-height: 1.7;
    }

.mission-box {
    background: linear-gradient(135deg,#1E4540,#1E4540);
    color: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
}

    .mission-box h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .mission-box p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

@media(max-width:768px) {

    .stat-card h3 {
        font-size: 30px;
    }

    .mission-box {
        padding: 30px 20px;
    }

        .mission-box h3 {
            font-size: 26px;
        }
}
/* ==========================
   WHY CHOOSE US SECTION
========================== */

.why-choose-us {
    background: #ffffff;
}

.section-description {
    max-width: 850px;
    margin: auto;
    color: #64748b;
    line-height: 1.8;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .why-card:hover {
        transform: translateY(-8px);
    }

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(37,99,235,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-box i {
        font-size: 34px;
        color: #2563eb;
    }

.why-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.why-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

@media(max-width:768px) {

    .why-card {
        padding: 30px 20px;
    }

        .why-card h4 {
            font-size: 20px;
        }
}
/* ==========================
   OUR APPROACH SECTION
========================== */

.approach-section {
    background: #f8fafc;
}

.approach-heading {
    color: #1E4540;
    font-weight: 700;
    margin-bottom: 15px;
}

.approach-content {
    padding: 30px;
}

.slide-number {
    font-size: 70px;
    font-weight: 800;
    color: rgba(37,99,235,.15);
    display: block;
    line-height: 1;
}

.approach-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.approach-content p {
    color: #64748b;
    line-height: 1.9;
    font-size: 17px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #1E4540;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

@media(max-width:991px) {

    .approach-content {
        text-align: center;
        padding: 25px 0 0;
    }

        .approach-content h3 {
            font-size: 26px;
        }

    .slide-number {
        font-size: 50px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
/* ==========================
   WHO WE CAN HELP SECTION
========================== */

.who-we-help-section {
    background: #ffffff;
}

.help-image img {
    width: 100%;
    border-radius: 25px;
}

.help-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    transition: .3s;
}

    .help-box:hover {
        background: #1E4540;
        color: #fff;
        transform: translateY(-5px);
    }

    .help-box i {
        font-size: 24px;
        color: #1E4540;
    }

    .help-box:hover i {
        color: #fff;
    }

    .help-box span {
        font-weight: 600;
        font-size: 15px;
    }

@media(max-width:991px) {

    .who-we-help-section {
        text-align: center;
    }

    .help-image {
        margin-bottom: 30px;
    }
}
/* ==========================
   CTA HELP SECTION
========================== */

.cta-help-section {
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg,#1E4540,#1E4540);
    border-radius: 30px;
    padding: 50px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

    .cta-box::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -100px;
        right: -100px;
    }

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .cta-icon i {
        font-size: 35px;
        color: #fff;
    }

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,.9);
    line-height: 1.9;
}

.call-box {
    background: #fff;
    color: #0f172a;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

    .call-box span {
        color: #1E4540;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
    }

    .call-box h3 {
        font-size: 34px;
        font-weight: 800;
        margin: 15px 0;
        color: #1E4540;
    }

    .call-box p {
        color: #1E4540;
        margin-bottom: 20px;
    }

@media(max-width:991px) {

    .cta-box {
        padding: 35px 25px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .call-box {
        margin-top: 30px;
    }
}

@media(max-width:576px) {

    .cta-content h2 {
        font-size: 26px;
    }

    .call-box h3 {
        font-size: 28px;
    }
}

/* =================================
   CONTACT AREA
================================= */

.contact-area {
    background: #f8fafc;
}

.contact-card,
.map-card,
.enquiry-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .contact-card h3,
    .enquiry-card h3 {
        font-size: 28px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 30px;
    }

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

    .contact-item .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        background: #304f2f;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

        .contact-item .icon i {
            font-size: 20px;
        }

    .contact-item h6 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact-item p {
        margin: 0;
        color: #304f2f;
    }

    .contact-item a {
        color: #304f2f;
        text-decoration: none;
    }

        .contact-item a:hover {
            color: #64748b;
        }

.map-card {
    overflow: hidden;
    padding: 10px;
}

    .map-card iframe {
        border-radius: 20px;
    }

.enquiry-card .form-control {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 55px;
}

.enquiry-card textarea.form-control {
    height: auto;
}

.enquiry-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: none;
}

.enquiry-card .btn {
    height: 55px;
    border-radius: 12px;
    font-weight: 600;
    background: #305e2a;
    border-color: #2563eb;
}

    .enquiry-card .btn:hover {
        background: #ffee2c;
        border-color: #1d4ed8;
    }

/* Mobile */

@media(max-width:991px) {

    .contact-card,
    .map-card,
    .enquiry-card {
        margin-bottom: 20px;
    }

        .contact-card h3,
        .enquiry-card h3 {
            font-size: 24px;
        }
}
/* ==========================
   FOOTER AREA
========================== */

.footer-area {
    background: #1E4540;
    color: #dadee3;
    padding: 80px 0 20px;
}

.footer-logo {
    max-height: 75px;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-widget p {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #afd4ae;
            padding-left: 5px;
        }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #22c55e;
        }

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

    .contact-item i {
        color: #cbd5e1;
        margin-right: 10px;
        margin-top: 3px;
    }

    .contact-item a {
        color: #cbd5e1;
        text-decoration: none;
    }

        .contact-item a:hover {
            color: #2563eb;
        }

.trust-bar {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-item {
    color: #fff;
}

    .trust-item i {
        display: block;
        font-size: 32px;
        color: #cbd5e1;
        margin-bottom: 10px;
    }

.footer-bottom {
    padding-top: 20px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
    }

@media(max-width:991px) {

    .footer-area {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }
}