/* ===== IMPROVED STYLES ===== */

/* Variables */
:root {
    --primary: #dc3545;
    --primary-dark: #b02a37;
    --secondary: #333333;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #28a745;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

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

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.section {
    padding: 80px 0;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Header & Navigation */
.site-navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.site-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

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

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

.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);
}

.nav-btn {
    padding: 8px 20px;
    margin-left: 10px;
    border-radius: 4px;
}

.laxmi-img {
    margin-left: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.site-navbar.scrolled .laxmi-img {
    display: none !important;
}

.laxmi-img img {
    height: 70px;
    width: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding-top: 120px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 4px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-height: 400px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 30px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
}

.stat-item {
    text-align: center;
    color: white;
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
}

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

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

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

/* Why Choose Us */
.why-choose-us {
    position: relative;
    overflow: hidden;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
}

.feature-content h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.why-choose-image {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote-card {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.quote-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.quote-text {
    color: var(--gray);
    margin-bottom: 30px;
}

.quote-form .form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    transition: var(--transition);
}

.quote-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 7, 7, 0.25);
}

.quote-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Fleet Section */
.fleet-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.fleet-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-item:hover img {
    transform: scale(1.05);
}

.fleet-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
}

.fleet-info h5 {
    margin: 0;
    font-size: 1.2rem;
}

.fleet-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}


/* Fleet Section Carousel Buttons */
.fleet-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.fleet-carousel .owl-nav button.owl-prev,
.fleet-carousel .owl-nav button.owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.8;
    pointer-events: auto;
    margin: 0 !important;
}

.fleet-carousel .owl-nav button.owl-prev:hover,
.fleet-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
    transform: scale(1.1);
    background: var(--primary-dark) !important;
}

.fleet-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.fleet-carousel .owl-nav button.owl-next {
    right: -20px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.8;
}

.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%;
    margin-right: 10px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .contact-item i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
}

.copyright,
.developer-credit {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-bar {
        position: relative;
        transform: none;
        margin-top: 50px;
    }

    .laxmi-img {
        display: none;
    }

    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .min-vh-80 {
        min-height: auto;
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .quote-card {
        padding: 30px;
    }

    .footer {
        padding: 60px 0 20px;
    }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
/* This file should be included after style.css */

/* Variables */
:root {
    --primary: #dc3545;
    --primary-dark: #b02a37;
    --secondary: #333333;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #28a745;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}



/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg11.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: white;
    position: relative;
    margin-top: 80px;
    /* Account for fixed header */
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

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

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">";
    padding: 0 10px;
}

/* About Overview */
.section {
    padding: 80px 0;
}

.about-overview {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(220, 7, 7, 0.3);
    font-size: 1.1rem;
}

.about-content {
    padding-left: 30px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.about-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Services List */
.services-list {
    margin-top: 30px;
}

.service-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(220, 7, 7, 0.05);
}

.service-item .service-icon {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(220, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-right: 20px;
}

.service-content h5 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Our Values */
.our-values {
    background: var(--light);
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2.2rem;
}

.value-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.value-description {
    color: var(--gray);
    margin: 0;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/t1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

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

.process-number {
    position: absolute;
    top: -25px;
    left: 30px;
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.process-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.process-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.process-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Why Choose About */
.why-choose-about {
    background: white;
}

.features {
    margin-top: 30px;
}

.feature {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    background: rgba(220, 7, 7, 0.05);
}

.feature-check {
    flex: 0 0 40px;
    height: 40px;
    background: rgba(220, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-right: 15px;
}

.feature-text h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-text p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: auto;
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.stat {
    text-align: center;
    color: white;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 4px;
    font-weight: 600;
}

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

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

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

/* Responsive Styles */
@media (max-width: 1199px) {
    .lord-ram-img {
        height: 60px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .lord-ram-header {
        display: none;
    }

    .page-header {
        padding: 100px 0 40px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-overlay {
        position: relative;
        bottom: 0;
        border-radius: 0 0 10px 10px;
        margin-top: 0;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .value-card,
    .process-card {
        padding: 30px 20px;
    }

    .process-card {
        margin-bottom: 50px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons .btn:first-child {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .value-title {
        font-size: 1.2rem;
    }

    .experience-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.8rem;
    }
}

/* Navbar adjustments for About page */
.site-navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-img {
    height: 60px;
    width: auto;
}

.nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Section Description */
.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */
/* This file should be included after style.css */

/* Variables */
:root {
    --primary: #dc3545;
    --primary-dark: #b02a37;
    --secondary: #333333;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #28a745;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Responsive Lord Ram Image in Header */
.lord-ram-header {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lord-ram-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/t1.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    color: white;
    position: relative;
    margin-top: 80px;
    /* Account for fixed header */
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

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

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">";
    padding: 0 10px;
}

/* Section Common Styles */
.section {
    padding: 80px 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Services Introduction */
.services-intro {
    text-align: center;
    background: white;
}

/* Main Services */
.main-services {
    background: var(--light);
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(220, 7, 7, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2.2rem;
    transition: var(--transition);
}

.service-content {
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-description {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    text-align: left;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray);
}

.feature i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.feature span {
    font-size: 0.95rem;
}

/* Additional Services */
.additional-services {
    background: white;
}

.additional-service {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.additional-service:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
}

.service-number {
    flex: 0 0 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
}

.service-details h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.service-details p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 8px;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.service-list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Service Process */
.service-process {
    background: var(--light);
}

.process-step {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step:hover .step-icon {
    transform: rotateY(180deg);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 7, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.7;
}

.services-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 4px;
    font-weight: 600;
}

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

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Navbar adjustments */
.site-navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-img {
    height: 60px;
    width: auto;
}

.nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .lord-ram-img {
        height: 60px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .lord-ram-header {
        display: none;
    }

    .page-header {
        padding: 100px 0 40px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .additional-service {
        flex-direction: column;
        text-align: center;
    }

    .service-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .additional-service,
    .process-step {
        padding: 25px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .services-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .services-cta .row {
        text-align: center;
    }

    .services-cta .col-lg-4 {
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}