/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1a3c34 !important;
}
.navbar-brand img {
    width: 40px;
    margin-right: 10px;
}
.nav-link {
    color: #1a3c34 !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #d4af37 !important;
}
.btn-primary {
    background-color: #1a3c34;
    border-color: #1a3c34;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #2e8b57;
    border-color: #2e8b57;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a3c34 0%, #2e8b57 100%);
    overflow: hidden;
}
.hero-bg-decor svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 2rem;
}
.btn-hero {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-hero:hover {
    transform: scale(1.05);
}
.btn-outline-light {
    border-color: #fff;
    color: #fff;
}
.btn-outline-light:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #fff;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-card img {
    width: 60px;
    margin-bottom: 1rem;
}
.service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a3c34;
}
.service-card p {
    font-size: 0.9rem;
    color: #666;
}
.btn-service {
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-color: #1a3c34;
    color: #1a3c34;
}
.btn-service:hover {
    background-color: #2e8b57;
    border-color: #2e8b57;
    color: #fff;
}

/* Flow Section */
.flow-section {
    padding: 5rem 0;
    background: #f5f7fa;
}
.flow-section img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1a3c34;
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer a {
    color: #fff;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.footer a:hover {
    opacity: 1;
}
.footer img {
    width: 24px;
}
.footer-logo img {
    width: 50px;
}
.footer iframe {
    border-radius: 10px;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #1a3c34;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .navbar-nav {
        padding: 1rem 0;
    }
    .nav-link {
        padding: 10px !important;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}