/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #4c3f99;
    --secondary-color: #6c5ce7;
    --accent-color: #74b9ff;
    --dark-color: #2d3436;
    --light-color: #ddd;a
    --white-color: #ffffff;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #e84393;
    --info-color: #0984e3;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --box-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* footer */
.footer-link {
    color: #fff !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: #fff !important;
    text-decoration: none;
}


.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--box-shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.navbar {
    padding: 1rem 0;
}

/* Make all header content white */
.header,
.header a,
.header .navbar-brand,
.header .nav-link,
.header .brand-name,
.header .brand-subtitle {
    color: white !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
}


.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: none;
    border-radius: 0;
    padding: 0;
}

.footer-logo-container {
    text-align: left;
    margin-bottom: 1rem;
}

/* Owner Photo Styles */
.owner-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(76, 63, 153, 0.3);
}

/* Guarantee Cards */
.guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

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

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white-color);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.navbar-nav .nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}


    align-items: center;
    overflow: hidden;
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/HS.jpg') center/cover no-repeat;    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 63, 153, 0.85), rgba(108, 92, 231, 0.75));
    z-index: -1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}
.btn-outline-light {
  color: white !important;           /* White text */
  border: 2px solid white !important; /* White border */
  background-color: transparent !important; /* Transparent background */
  box-shadow: none !important;       /* Remove any shadow */
  transition: var(--transition);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: white !important;   /* White background on hover */
  color: var(--primary-color) !important; /* Text changes on hover */
  border-color: white !important;       /* Keep border white */
  text-decoration: none;
}



.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
}

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background: url('/static/images/xyz.jpg') center/cover no-repeat;
    z-index: -2;
}


.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 63, 153, 0.8), rgba(108, 92, 231, 0.7));
    z-index: -1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white-color);
}

/* Service Cards */
.service-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white-color);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-features li {
    list-style: none;
    padding: 0.3rem 0;
    color: var(--gray-600);
}

.service-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.service-pricing {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 63, 153, 0.8), rgba(108, 92, 231, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon {
    background: transparent;
    border: 2px solid var(--white-color);
}

/* Highlight Items */
.highlight-items {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--gray-600);
    margin: 0;
}

/* City Cards */
.city-card {
    background: var(--white-color);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.city-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.city-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.city-card p {
    color: var(--gray-600);
    margin: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://pixabay.com/get/g55f28941f0250263c8a9a2869f54f6e68db25461348c5cb408d59f991668fe9b599a9d682c92a94d30e8fa6b7d7400300fe9fba4adecada2d08ca64f26dddc10_1280.jpg') center/cover no-repeat;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 63, 153, 0.9), rgba(108, 92, 231, 0.8));
    z-index: -1;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}



/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-year {
    position: absolute;
    top: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transform: translateY(-50%);
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -60px;
}

.timeline-content {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-left-color: var(--white-color);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-right-color: var(--white-color);
}

/*
.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-icon i {
    color: var(--white-color);
    font-size: 1.2rem;
}
*/

/* Quality Cards */
.quality-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white-color);
}

.quality-rating {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.rating-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.stars i {
    color: var(--warning-color);
    margin-right: 2px;
}

.quality-metric {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Value Cards */
.value-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.value-card:hover {
    transform: rotateY(5deg) scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white-color);
}

/* Contact Cards */
.contact-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight:500;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Form Styles */
.contact-form-card {
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 63, 153, 0.25);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 63, 153, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-outline-secondary {
    border: 2px solid var(--gray-400);
    color: var(--gray-600);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--gray-400);
    color: var(--white-color);
}

.btn-success {
    background: var(--success-color);
    border: 1px solid var(--success-color);
    color: var(--white-color);
}

.btn-success:hover {
    background: #00a085;
    transform: translateY(-2px);
}

/* Business Card Section */
.business-card-section {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}

.business-card img {
    border: 1px solid var(--gray-300);
}

.business-info {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.reg-info {
    margin-top: 1rem;
}

.reg-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 0.95rem;
}

.reg-item:last-child {
    border-bottom: none;
}

.quick-contact {
    margin-top: 1.5rem;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Office Location Cards */
.office-location-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.office-location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.office-badge {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.office-services h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-services ul {
    list-style: none;
    padding: 0;
}

.office-services li {
    padding: 0.3rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Route Cards */
.route-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.route-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(45deg, rgba(76, 63, 153, 0.05), rgba(108, 92, 231, 0.05));
}

.route-header {
    margin-bottom: 1.5rem;
}

.route-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white-color);
}

.route-badge {
    background: var(--success-color);
    color: var(--white-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.route-details {
    margin: 1.5rem 0;
}

.route-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.route-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 20px;
}

.route-phone {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.route-phone i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Area Cards */
.area-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.area-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-card .badge {
    margin-top: 0.5rem;
}

/* Service Areas List */
.area-category {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.area-category h4 {
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

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

.area-list li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Map Container */
.map-container {
    position: relative;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.map-placeholder {
    position: relative;
    height: 400px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--gray-300);
    z-index: 1;
}

.map-overlay {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.legend-color.daily {
    background: var(--success-color);
}

.legend-color.regular {
    background: var(--primary-color);
}

.legend-color.ondemand {
    background: var(--info-color);
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

/* FAQ Styles */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--white-color);
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius) !important;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, rgba(76, 63, 153, 0.1), rgba(108, 92, 231, 0.1));
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: var(--white-color);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--warning-color);
    margin-right: 2px;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.testimonial-author h5 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Stats and Milestones */
.stat-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 0.5rem;
}

.milestone-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.milestone-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Future Plans */
.future-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.future-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.future-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

/* Advantage Cards */
.advantage-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.advantage-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(45deg, rgba(76, 63, 153, 0.05), rgba(108, 92, 231, 0.05));
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--white-color);
}

.advantage-features {
    margin-top: 1.5rem;
}

.advantage-features li {
    list-style: none;
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.advantage-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Experience Items */
.experience-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

/* Tech Cards */
.tech-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.tech-benefit {
    margin-top: 1rem;
}

.benefit-tag {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Guarantee Cards */
.guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.guarantee-card h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Team Cards */
.team-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--white-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--success-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--success-color);
    text-decoration: underline;
}

/* Certification Cards */
.certification-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--white-color);
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.mission-icon, .vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white-color);
}

/* Growth Features */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.feature-content h5 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Growth Metrics */
.metric-item {
    text-align: center;
    padding: 1rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-color);
    display: block;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Footer Styles */
.footer {
    background: #000000 !important;
    color: var(--white-color);
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

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

.contact-info a {
    color: var(--light-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--white-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px !important;
        padding-right: 0 !important;
    }
    
    .timeline-year {
        left: -60px !important;
        right: auto !important;
    }
    
    .timeline-content::before {
        left: -15px !important;
        right: auto !important;
        border-right-color: var(--white-color) !important;
        border-left-color: transparent !important;
    }
    
    .map-legend {
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .service-card, .quality-card, .contact-card {
        margin-bottom: 2rem;
    }
    
    .highlight-item, .experience-item, .future-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon, .exp-icon, .future-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .certification-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .business-card-section {
        margin-top: 2rem;
    }
    
    .map-bg {
        font-size: 4rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .page-header {
        height: 250px;
    }
    
    .service-card, .contact-card, .route-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .business-card-section {
        padding: 1.5rem;
    }
    
    .quick-buttons .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .timeline-item {
        padding-left: 50px !important;
    }
    
    .timeline-year {
        left: -50px !important;
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--box-shadow) !important;
}

.border-radius-custom {
    border-radius: var(--border-radius) !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none !important;
    }
    
    .page-header {
        height: auto !important;
        padding: 2rem 0;
    }
    
    .page-header-bg,
    .page-header-overlay {
        display: none;
    }
    
    .page-title {
        color: var(--dark-color) !important;
    }
}


