/* ==========================================
   GENERAL STYLES
   ========================================== */

:root {
    --green-primary: #16a34a;
    --green-dark: #15803d;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --yellow-400: #facc15;
    --red-600: #dc2626;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */

.navbar {
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    overflow: hidden;
    height: 90px;
    width: 90px;
    /* border: 2px solid red; */
}
#mobileBanner {
    display: none;
}
.navbar-brand img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}   
.navbar-brand img:hover {
    cursor: pointer;
}
.logo-placeholder {
    background-color: var(--yellow-400);
    border: 2px solid var(--red-600);
    width: 4rem;
    height: 2rem;
    border-radius: 0.125rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
}

.nav-links a:hover {
    color: var(--green-primary);
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
}

.mobile-menu a:hover {
    color: var(--green-primary);
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .navbar .container-xl {
        padding-left: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0;
        margin-right: 1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .logo-placeholder {
        width: 4rem;
        height: 1.5rem;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    height: 500px;
    border: none;
}
.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}   

.placeholder-bg {
    width: 100%;
    height: 20rem;
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca8a04;
    font-weight: bold;
    font-size: 1.25rem;
}


@media (min-width: 768px) {
    .placeholder-bg {
        height: 20rem;
    }
    
}

/* ==========================================
   MOBILE FEATURES SECTION
   ========================================== */

.features-mobile {
    padding: 1.5rem 1rem;
    background-color: var(--white);
}

.feature-icon {
    color: var(--green-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
    padding-left: 100px;
    margin: 0;
    background-color: #f9fafb;
}

.stats-container {
    background-color: #f9fafb;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .stats-container {
        padding: 1.5rem 2rem;
        gap: 0;
    }
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.75rem;
    flex: 1;
    border-top: 1px solid #acadb0;
}

@media (min-width: 768px) {
    .stat-item {
        flex: 0 1 auto;
        padding: 0 2rem;
        border-right: 1px solid #e5e7eb;
    }

    .stat-item:last-of-type {
        border-right: none;
    }
}

.stat-icon {
    color: var(--green-primary);
    font-size: 1.75rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 1.25rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.rating-section {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    flex: 0 1 auto;
    padding: 0 2rem 0 0;
}

@media (max-width: 767px) {
    .rating-section {
        width: 100%;
        justify-content: center;
        padding: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 1rem;
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .rating-section {
        margin-top: 0;
    }
}

.star-badge {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--yellow-400);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-400);
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .about-section {
        padding: 5rem 1rem;
    }
}

.about-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .about-label {
        font-size: 0.875rem;
    }
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 1.875rem;
    }
}

.about-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 1rem;
    }
}

.about-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .about-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.about-list i {
    color: var(--green-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-image-placeholder {
    background-color: var(--yellow-400);
    border-radius: 5rem;
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca8a04;
    font-weight: bold;
    font-size: 0.875rem;
}
.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
@media (min-width: 768px) {
    .about-image-placeholder {
        height: 20rem;
    }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background-color: #f3f4f6;
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .services-section {
        padding: 5rem 1rem;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image {
    background-color: var(--gray-900);
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    font-size: 0.875rem;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .service-image {
        height: 10rem;
    }
}

.service-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-content {
        padding: 1.5rem;
    }
}

.service-number {
    color: var(--green-primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-title {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 1rem;
    }
}

.service-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-text {
        font-size: 0.875rem;
    }
}

.service-list {
    list-style: none;
    font-size: 0.75rem;
    color: var(--gray-700);
    margin: 0;
}

@media (min-width: 768px) {
    .service-list {
        font-size: 0.875rem;
    }
}

.service-list li {
    margin-bottom: 0.5rem;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .process-section {
        padding: 5rem 1rem;
    }
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .process-title {
        font-size: 1.5rem;
    }
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .process-container {
        gap: 0;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 100px;
    width: 100%;
}

@media (min-width: 768px) {
    .process-step {
        width: auto;
    }
}

.process-circle {
    background-color: var(--green-primary);
    color: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .process-circle {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

.process-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .process-name {
        font-size: 1rem;
    }
}

.process-desc {
    font-size: 0.75rem;
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .process-desc {
        font-size: 0.875rem;
    }
}

.process-arrow {
    color: var(--gray-400);
    font-size: 1.5rem;
    display: none;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

/* ==========================================
   BOTTOM BANNER SECTION
   ========================================== */

.bottom-banner-section {
    width: 100%;
    overflow: hidden;

}
.bottom-banner-section img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
}   
@media (min-width: 768px) {
    .bottom-banner-section {
        /* padding: 5rem 1rem;
        margin-top: 5rem;*/
        height: 28rem;
    }
}

.placeholder-bg-large {
    width: 100%;
    height: 12rem;
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca8a04;
    font-weight: bold;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .placeholder-bg-large {
        height: 16rem;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #111827;
    color: var(--white);
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 1rem;
    }
}

.footer-logo-placeholder {
    width: 5rem;
    height: 5rem;
    border-radius: 0.125rem;
    margin-bottom: 1rem;
}
.footer-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-text {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 0.875rem;
    }
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #1f2937;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .social-icon {
        width: 2rem;
        height: 2rem;
    }
}

.social-icon:hover {
    background-color: var(--green-primary);
}

.social-icon i {
    color: var(--white);
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-title {
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }
}

.footer-toggle {
    background: none;
    border: none;
    color: var(--white);
    padding: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

.footer-toggle i {
    transition: transform 0.3s ease;
}

.footer-toggle.collapsed i {
    transform: rotate(-180deg);
}

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

.footer-menu.show {
    display: block;
}

@media (min-width: 768px) {
    .footer-menu {
        display: block !important;
    }
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-menu a {
        font-size: 0.875rem;
    }
}

.footer-menu a:hover {
    color: var(--green-primary);
}

.footer-contact {
    display: none;
    font-size: 0.75rem;
}

.footer-contact.show {
    display: block;
}

@media (min-width: 768px) {
    .footer-contact {
        display: block !important;
    }
}

.contact-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .contact-item {
        font-size: 0.875rem;
    }
}

.contact-item i {
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .contact-item i {
        font-size: 0.875rem;
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 2rem;
        font-size: 0.875rem;
    }
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================
   CONTAINER SIZING
   ========================================== */

.container-xl {
    max-width: 1280px;
}
#MobileLowerBanner {
    display: none;
}

@media (max-width: 1399px) {
     .container-xl {
        max-width: 1140px;
    } 
     .stats-section{
        display: none;
    } 
    #desktopbanner {
        display: none;
    }
    #mobileBanner {
        display: block;
        /* border: 2px solid red; */
        height: 475px;
        object-fit: cover;
        object-position: bottom;
    }
    #mobileBanner img{
        height: 100%;
        padding: 0;
    }
    .hero-section {
        height: 475px;
    }
    #desktopLowerBanner{
        display: none;
    }
    #MobileLowerBanner{
        display: block;
        height: 28rem;
        object-fit: contain;
    }
    /* .sticky-top{
        height: 75px;
    }
   .mobile-size{
        border: 2px solid red; 
        position: absolute;
        top: 0;
        padding-top: 30px;
        background-color: white;

    }  */
}

@media (max-width: 1199px) {
    .container-xl {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container-xl {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container-xl {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
