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

:root {
    --primary-color: #FF6B35;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-color: #666;
    --heading-color: #2c2c2c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
}

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

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

section {
    padding: 80px 0;
}

/* ========================================
   Utility Classes
======================================== */
.text-orange {
    color: var(--primary-color);
}

.btn-orange {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ========================================
   Navigation
======================================== */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--heading-color);
}

.navbar-brand i {
    font-size: 28px;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--heading-color);
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.8;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.hero-badge i {
    font-size: 32px;
}

.badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.badge-text small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

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

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

/* ========================================
   Building Future Section
======================================== */
.building-future-section {
    background-color: var(--light-gray);
}

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

.future-list li {
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.future-list i {
    font-size: 20px;
    flex-shrink: 0;
}

/* ========================================
   Services Section
======================================== */
.services-section {
    background-color: #fff;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-description {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: #e55a2b;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   Growth Section
======================================== */
.growth-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.growth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.3;
}

.growth-content {
    position: relative;
    z-index: 1;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    background-color: var(--light-gray);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 24px;
    color: white;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.rating i {
    color: #ffc107;
    font-size: 16px;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    background-color: #fff;
}

.contact-info {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.info-content p {
    font-size: 15px;
    color: var(--text-color);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 12px 20px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    padding: 60px 0 20px;
}

.footer-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.widget-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: #adb5bd;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

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

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

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

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

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

/* ========================================
   Responsive Styles
======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .navbar-nav {
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
    
    .btn-orange.ms-lg-3 {
        margin-top: 15px;
        margin-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}