/* ============================================
   FOSHE WEBSITE - MAIN STYLESHEET
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary-color: #2196F3;
    --secondary-dark: #0D47A1;
    --accent-color: #FF9800;
    --light-color: #f8f9fa;
    --dark-color: #333333;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 140px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.badge {
    font-weight: 500;
    padding: 0.5em 1em;
}

.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--white);
    box-shadow: var(--shadow);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-dark) 100%);
    padding: 0.5rem 0;
    color: var(--white);
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    font-size: 1rem;
}

.contact-info a {
    color: var(--white);
}

.contact-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Navigation */
.navbar-main {
    padding: 1rem 0;
    background: var(--white);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--gray-color);
    line-height: 1.2;
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-color) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}

/* CTA Button */
.nav-cta .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.nav-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    background: var(--light-gray);
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    background: var(--gray-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(46, 125, 50, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    body {
        padding-top: 120px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-hover);
        margin-top: 1rem;
        border: 1px solid var(--light-gray);
    }
    
    .navbar-nav {
        gap: 0.75rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.25rem !important;
        text-align: center;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .nav-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .brand-text h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
    
    .top-bar {
        display: none;
    }
    
    .navbar-main {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .brand-text h1 {
        font-size: 1.2rem;
    }
    
    .brand-text span {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        flex-direction: row;
        align-items: center;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .brand-text h1 {
        font-size: 1.1rem;
    }
    
    .brand-text span {
        font-size: 0.65rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.625rem 1rem !important;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(13, 71, 161, 0.9) 100%),
                url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwa90by1wYlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 4rem 0 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--white);
}

.stat-box {
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.experience-badge h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.experience-badge p {
    font-size: 0.875rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.feature-box {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    width: 6px;
    background: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.service-list {
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-list li:last-child {
    border-bottom: none;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: 5rem 0;
    background: var(--white);
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.industry-card.mining {
    border-top-color: #FF9800;
}

.industry-card.construction {
    border-top-color: #2196F3;
}

.industry-card.agriculture {
    border-top-color: #4CAF50;
}

.industry-card.manufacturing {
    border-top-color: #607D8B;
}

.industry-card.chemicals {
    border-top-color: #9C27B0;
}

.industry-card.energy {
    border-top-color: #FF5722;
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.industry-card.mining .industry-icon {
    background: #FF9800;
}

.industry-card.construction .industry-icon {
    background: #2196F3;
}

.industry-card.agriculture .industry-icon {
    background: #4CAF50;
}

.industry-card.manufacturing .industry-icon {
    background: #607D8B;
}

.industry-card.chemicals .industry-icon {
    background: #9C27B0;
}

.industry-card.energy .industry-icon {
    background: #FF5722;
}

.industry-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-tags .badge {
    background: var(--light-gray);
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 5rem 0;
}

.project-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.project-stats div {
    text-align: center;
}

.project-stats h5 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.project-stats small {
    color: var(--gray-color);
    font-size: 0.875rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.team-overlay .social-links a {
    width: 50px; /* Made slightly larger for better clickability */
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.5rem; /* Increased size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Email icon specific styling */
.team-overlay .social-links a .bi-envelope-fill {
    color: var(--primary-color);
}

.team-overlay .social-links a:hover {
  background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.team-overlay .social-links a:hover .bi-envelope-fill {
    color: var(--white);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
     line-height: 1.4;
}
.position a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.position a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.bio {
    color: var(--gray-color);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
     line-height: 1.6;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
/* Optional: Add tooltip for email icon */
.team-overlay .social-links a[data-tooltip] {
    position: relative;
}

.team-overlay .social-links a[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 10px;
}

.team-overlay .social-links a[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}
/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer h5 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.footer hr {
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
    
    .service-card,
    .industry-card,
    .project-card,
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}