body {
    font-family: "Sen", sans-serif;
    color: #141414;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

.site-header-section {
    background: #1e1e1f;
}
.site-header-section .nav-item .nav-link{
    color: #fff;
}


.navbar {
    padding: 1px 0 1px 0;
}

.navbar-brand{

}

button.navbar-toggler {
    background: #ececec;
}

.navbar-brand img {
    width: 180px;
}

.site-brand-text {
    font-weight: 800;
    letter-spacing: 1px;
}

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

.nav-item-dropdown .nav-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.25s ease;
	color:#fff;
}

.nav-dropdown-toggle{
	color:#fff;
}

.nav-dropdown-menu .nav-item-dropdown i{
	color:#666666 !important;
}







.nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
   min-width: 220px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.dropdown-link-item {
    display: block;
    padding: 8px 16px;
    color: #232323;
    text-decoration: none;
    font-size: 0.92rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-link-item:hover {
    background: #f5f8fc;
    color: #0f4c92;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item-dropdown:hover .nav-dropdown-toggle i,
.nav-item-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}














/* Make parent relative for submenu */
.nav-item-dropdown {
    position: relative;
}

/* Submenu (second level) */
.nav-dropdown-menu .nav-item-dropdown > .nav-dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Show submenu on hover */
.nav-dropdown-menu .nav-item-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown-menu .nav-item-dropdown:focus-within > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/*  Prevent icon rotation for inner menu (optional fix) */
.nav-dropdown-menu .nav-item-dropdown .nav-dropdown-toggle i {
    transform: rotate(0deg);
}

/*  Optional: rotate right arrow on hover */
.nav-dropdown-menu .nav-item-dropdown:hover > .nav-dropdown-toggle i {
    transform: rotate(90deg);
}










.hero-section-main {
    background: #e9edf2;
}

.hero-banner-wrap {
    min-height: 100vh;
    position: relative;
}

.hero-slider-wrap,
.hero-slider-wrap .owl-stage-outer,
.hero-slider-wrap .owl-stage,
.hero-slider-wrap .owl-item,
.hero-slide-item {
    min-height: 100vh;
}

.hero-slide-item {
    position: relative;
}

.hero-slide-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 10%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-slide-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-common-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.hero-slider-wrap .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-slider-wrap .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-slider-wrap .owl-nav button.owl-prev,
.hero-slider-wrap .owl-nav button.owl-next {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    background: rgba(0, 0, 0, 0.35) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-slider-wrap .owl-nav button.owl-prev {
    left: 20px;
}

.hero-slider-wrap .owl-nav button.owl-next {
    right: 20px;
}

.hero-slider-wrap .owl-nav button.owl-prev:hover,
.hero-slider-wrap .owl-nav button.owl-next:hover {
    background: #d2a548 !important;
    border-color: #d2a548 !important;
    color: #ffffff !important;
}

.hero-slider-wrap .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-slider-wrap .owl-dots .owl-dot.active span {
    background: #ffffff;
}

.hero-content-box {
    max-width: 650px;
    color: #ffffff;
    margin: 0 auto;
}

.hero-content-box h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-content-box p {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-contact-btn {
    background: #d2a548;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    border: 1px solid #d2a548;
    transition: all 0.25s ease;
}

.hero-contact-btn:hover {
    background: #b88f3d;
    border-color: #b88f3d;
    color: #ffffff;
}

.hero-btn-main {
    background: #0f4c92;
    border-color: #0f4c92;
}

.property-type-section {
    background: #ffffff;
    padding: 80px 0 80px 0;
}
.section-heading-wrap h2 {
    font-weight: 700;
}

.section-heading-wrap {
    margin-bottom: 50px;
}

.section-heading-wrap p {
    color: #6b7280;
}

.type-card-box {
    position: relative;
    perspective: 1200px;
    min-height: 250px;
    height: 100%;
}

.type-card-inner {
    position: relative;
    width: 100%;
    min-height: 250px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s ease;
}

.type-card-box:hover .type-card-inner {
    transform: rotateY(180deg);
}

.type-card-front,
.type-card-back {
    position: absolute;
    inset: 0;
   border: 3px solid #d2a548;
    padding: 24px 18px;
    text-align: center;
    border-radius: 4px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease;
}

.type-card-front {
    background: #ffffff;
    border-color: #d2a548;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.type-card-back {
    background: #0f4c92;
    color: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.type-card-back p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.92rem;
}

.type-card-box:hover .type-card-front,
.type-card-box:hover .type-card-back {
    border-color: #0f4c92;
    box-shadow: 0 10px 20px rgba(15, 76, 146, 0.08);
}

.type-card-front i {
    font-size: 3.2rem;
    color: #d2a548;
    margin-bottom: 12px;
}

.type-card-front h5 {
    margin-bottom: 0;
}

.hot-deals-section {
    background: #f7f9fc;
}

.hot-deals-heading-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hot-deals-carousel-wrap {
    position: relative;
}

.hot-deals-carousel-item {
    padding: 4px;
}

.deal-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    border-radius: 6px;
    height: 100%;
}

.deal-card-item img {
    width: 100%;
    object-fit: cover;
}

.deal-image-link {
    display: block;
}

.deal-card-body {
    padding: 14px;
}

.deal-title-link {
    color: #141414;
    text-decoration: none;
    transition: color 0.2s ease;
}

.deal-title-link:hover {
    color: #d2a548;
}

.deal-card-body .deal-config-text {
    color: #141414;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

.deal-card-body p {
    color: #141414;
    font-size: 0.92rem;
}

.price-tag-text {
    color: #d2a548;
    font-weight: 700;
    line-height: 17px;
}

.price-tag-text small {
    font-size: 13px;
    display: block;
    font-weight: 600;
}

.hot-deals-carousel-wrap .owl-nav {
    position: absolute;
    top: -66px;
    right: 0;
    display: flex;
    gap: 10px;
}

.hot-deals-carousel-wrap .owl-nav button.owl-prev,
.hot-deals-carousel-wrap .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d5dce6 !important;
    background: #ffffff !important;
    color: #0f4c92 !important;
    font-size: 14px !important;
    margin: 0 !important;
    transition: all 0.25s ease;
}

.hot-deals-carousel-wrap .owl-nav button.owl-prev:hover,
.hot-deals-carousel-wrap .owl-nav button.owl-next:hover {
    background: #0f4c92 !important;
    color: #ffffff !important;
    border-color: #0f4c92 !important;
}

.property-dtn-btn {
    background: #d2a548;
    color: #fff;
    padding: 6px 10px 6px 20px;
    border-radius: 30px;
    font-size: 15px;
}

.property-dtn-btn:hover {
    background: #d2a548; 
    color: #fff;
}

.cta-property-section {
    position: relative;
    overflow: hidden;
}

.cta-property-bg {
    min-height: min(70vh, 640px);
    display: flex;
    align-items: center;
    padding: 72px 0;
    background-attachment: fixed;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%),
        url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}

.cta-property-card {
    max-width: 100%;
    background: #ffffff;
    padding: 40px 40px 38px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.cta-property-title {
    color: #1a1a1a;
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.cta-property-accent {
    width: 52px;
    height: 2px;
    background: #b89146;
    margin: 16px 0 20px;
}

.cta-property-lead {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 24px;
}

.cta-property-btn {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #163352;
    --bs-btn-border-color: #163352;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #1f4a70;
    --bs-btn-hover-border-color: #1f4a70;
    --bs-btn-focus-shadow-rgb: 22, 51, 82;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #1a3d5f;
    --bs-btn-active-border-color: #1a3d5f;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .cta-property-bg {
        min-height: 0;
        padding: 48px 0;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.35) 100%),
            url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
    }

    .cta-property-card {
        max-width: none;
        margin: 0;
    }
}

.why-choose-section {
    background: #103a66;
    color: #ffffff;
}

.why-choose-row-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.why-choose-left-col {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.why-choose-intro-box {
    padding: 34px 34px 34px 0;
}

.why-choose-kicker-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #d8e5f2;
    margin-bottom: 16px;
}

.why-choose-kicker-text::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #f4c15b;
}

.why-choose-intro-box h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    line-height: 1.35;
    margin: 0;
}

.why-item-box {
    min-height: 100%;
    padding: 30px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.why-choose-right-col .col-md-6:nth-child(2n) .why-item-box {
    border-right: 0;
}

.why-choose-right-col .col-md-6:nth-last-child(-n + 2) .why-item-box {
    border-bottom: 0;
}

.why-item-number-text {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.why-item-number-text::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #f4c15b;
    margin-top: 10px;
}

.why-item-box h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-item-box p {
    color: #d3deea;
    margin-bottom: 0;
    line-height: 1.6;
}

.builders-logo-section {
    background: #ffffff;
}

.builders-carousel-wrap {
    position: relative;
}

.builders-carousel-item {
    padding: 5px;
}

.builder-logo-item {
    border: 1px solid #a9a9a9;
    min-height: 114px;
    padding: 10px 8px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer-section {
    background: #1d1e1f;
    color: #cfd8e3;
}

.footer-newsletter-section {
    background: #102e55;
}

.footer-brand img {
    width: 215px;
    margin: 0 0 20px 0;
}

.expand-footer {
    padding: 20px 0 0 0;
}

.expand-footer .footer-main-section h6{
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #d2a548;
}

.footer-main-section h6, .footer-brand-text {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #d2a548;
}

.footer-main-section h5 {
    font-size: 17px;
    font-weight: 400;
    margin: 0 0 9px 0;
    color: #e1af48;
}

.footer-link-list li {
    margin-bottom: 8px;
}

.footer-link-list a {
    color: #cfd8e3;
    text-decoration: none;
}

.footer-link-list a:hover {
    color: #ffffff;
}

.social-icons-wrap a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom-section {
    background: #181819;
}

@media (max-width: 991px) {
    

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .nav-item-dropdown:hover .nav-dropdown-menu,
    .nav-item-dropdown:focus-within .nav-dropdown-menu {
        max-height: 260px;
    }

    .dropdown-link-item {
        color: #ffffff;
        padding: 8px 0 8px 14px;
        font-size: 0.9rem;
    }

    .dropdown-link-item:hover {
        background: transparent;
        color: #d2a548;
    }

    .hero-banner-wrap {
        min-height: 55vh;
    }

    .hero-slider-wrap,
    .hero-slider-wrap .owl-stage-outer,
    .hero-slider-wrap .owl-stage,
    .hero-slider-wrap .owl-item,
    .hero-slide-item {
        min-height: 55vh;
    }

    .hero-slide-item img {
        height: 55vh;
    }

    .hero-slider-wrap .owl-nav button.owl-prev {
        left: 12px;
    }

    .hero-slider-wrap .owl-nav button.owl-next {
        right: 12px;
    }

    .hero-content-box h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-content-box p {
        font-size: 0.92rem;
    }

    .hot-deals-carousel-wrap .owl-nav {
        position: static;
        justify-content: center;
        margin-top: 14px;
    }

    .why-choose-left-col {
        border-right: 0;
    }

    .why-choose-intro-box {
        padding: 16px 0 24px;
    }

    .why-item-box {
        border-right: 0;
    }

    .why-choose-right-col .col-md-6:nth-last-child(-n + 2) .why-item-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .why-choose-right-col .col-md-6:last-child .why-item-box {
        border-bottom: 0;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(rgba(30, 30, 31, 0.6),
     rgba(30, 30, 31, 0.6)), url('../images/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 80px 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #e9ecef;
    font-size: 15px;
}

.breadcrumb-item a {
    color: #e9ecef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #e9ecef;
    font-weight: 400;
}

/* About Us Page Styles */
.about-hero-section {
    background: #ffffff;
    color: #1e1e1f;
    padding: 80px 0 60px;
    
    display: flex;
    align-items: center;
}

.about-hero-title {
    font-size: 37px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e1e1f;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 20px;
}

.about-hero-description {
    font-size: 15px;
    line-height: 1.8;
    color: #1e1e1f;
    margin-bottom: 10px;
}

.about-hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Heading Styles */
.section-heading-wrap .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e1e1f;
    margin-bottom: 15px;
}

.section-heading-wrap .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    background: #fff;
}

.mission-card {
    padding: 40px 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1e1e1f 0%, #2d2d2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon-wrap {
    transform: scale(1.1);
}

.mission-icon-wrap i {
    font-size: 2rem;
    color: #fff;
}

.mission-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 15px;
}

.mission-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Vision Section */
.vision-section {
    background: #f8f9fa;
}

.vision-card {
    padding: 40px 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon-wrap {
    transform: scale(1.1);
}

.vision-icon-wrap i {
    font-size: 2rem;
    color: #fff;
}

.vision-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 15px;
}

.vision-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Stats Section */
.stats-section {
    background: #1e1e1f;
    color: #fff;
}

.stat-card {
    padding: 30px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #e9ecef;
    font-weight: 500;
}

/* Team Section */
.team-card {
    padding: 30px 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #1e1e1f;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 5px;
}

.team-position {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e1e1f 0%, #2d2d2e 100%);
    color: #fff;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #e9ecef;
    margin-bottom: 30px;
}

.cta-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {

.site-header-section {
    background: #1e1e1f;
    padding: 3px 10px 3px 10px;
}

.navbar-brand img {
    width: 120px;
}
button.navbar-toggler {
    background: #ececec;
    padding: 2px 8px 2px 8px;
}

    .about-hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .mission-card,
    .vision-card,
    .team-card {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
}
