/* ===================================
   Chevour International - Main CSS
   Modern & Minimalist Design
   Bootstrap 5 + Custom Styles
   =================================== */

/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-color: #fc010c;
    --primary-dark: #c70109;
    --primary-light: #ff3339;
    --secondary-color: #1a1a1a;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(252, 1, 12, 0.1);
    --shadow-hover: 0 15px 40px rgba(252, 1, 12, 0.15);
    --transition: all 0.3s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Heading Font Sizes */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.25;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

h6 {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Paragraph Styles */
p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    text-align: left;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Section Title Styles */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Responsive Typography */
@media (max-width: 991px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.35rem;
    }
    
    p {
        font-size: 1.05rem;
    }
    
    .lead {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.85rem;
    }
    
    h2 {
        font-size: 1.65rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

a {
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand img {
    transition: var(--transition);
    width: 30%;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(252, 1, 12, 0.05);
}

.navbar-nav .nav-link.active {
    font-weight: 600;
}

.navbar-nav .btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 0.5rem;
}

.navbar-nav .btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%), 
                url('../images/banner.jpg') center/cover no-repeat;
    overflow: hidden;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(252,1,12,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    border-width: 2px;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===================================
   Value Cards
   =================================== */
.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(252, 1, 12, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.value-card p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    margin: 0 auto;
}

.value-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-box i {
    font-size: 2rem;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(44, 62, 80, 0.92) 100%),
                url('../images/inner-banner.jpg') center/cover no-repeat;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(252,1,12,0.1)"/></svg>') repeat;
    opacity: 0.2;
}

.page-header h1,
.page-header .display-3,
.page-header .display-4,
.page-header .display-5 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .lead,
.page-header p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Mission & Vision Cards
   =================================== */
.mission-card,
.vision-card {
    padding: 3rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.mission-card {
    border-left: 5px solid var(--primary-color);
}

.vision-card {
    border-left: 5px solid var(--primary-dark);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.mission-card p,
.vision-card p {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
}

.icon-box-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.icon-box-large i {
    font-size: 3rem;
}

/* ===================================
   Value Cards Alternative
   =================================== */
.value-card-alt {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.value-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon-box-medium {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto;
}

.icon-box-medium i {
    font-size: 2rem;
}

/* ===================================
   Service Preview Cards
   =================================== */
.service-preview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-preview-card p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
}

.service-preview-card ul {
    text-align: left;
}

.service-image {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-image img {
    transition: var(--transition);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-preview-card:hover .service-image img {
    transform: scale(1.1);
}

/* ===================================
   Service Numbers
   =================================== */
.service-number,
.differentiator-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

/* ===================================
   Service List
   =================================== */
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.service-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: left;
}

.service-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* General List Styling */
ul li, ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

ul {
    padding-left: 1.5rem;
}

ul li::marker {
    color: var(--primary-color);
}

/* ===================================
   Benefit Cards
   =================================== */
.benefit-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   Contact Info Cards
   =================================== */
.contact-info-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.icon-box-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.icon-box-small i {
    font-size: 1.5rem;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(252, 1, 12, 0.1);
}

/* ===================================
   Map Container
   =================================== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===================================
   Stats Section
   =================================== */
.stat-card {
    padding: 2rem;
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 40px;
}
footer.footer.bg-dark.text-white.py-5 img {
    width: 40%;
}
/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(252, 1, 12, 0.95) 0%, rgba(199, 1, 9, 0.95) 100%),
                url('../images/cta.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--secondary-color);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.footer .btn-outline-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.15rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .hero-section .row {
        min-height: auto !important;
        padding: 4rem 0;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .btn-contact {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .service-number,
    .differentiator-number {
        font-size: 3.5rem;
    }
    
    p {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .value-card,
    .mission-card,
    .vision-card,
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .icon-box-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .icon-box-large i {
        font-size: 2.5rem;
    }
    
    .service-number,
    .differentiator-number {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

section.py-5 {
    padding: 5rem 0 !important;
}

/* Text Alignment for Content Sections */
.content-section p,
.content-section li {
    text-align: left;
}

/* Center aligned text for headers */
.text-center p {
    text-align: center !important;
}

/* ===================================
   Smooth Scrolling
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Selection Color
   =================================== */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}


/* ===================================
   Content Alignment & Typography Enhancements
   Chevour International Enterprises
   =================================== */

/* Global Text Alignment Override - Only for paragraphs */
p {
    text-align: left !important;
}

/* Section Headings - Center Aligned */
.text-center,
.text-center h1,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center h5,
.text-center h6,
.text-center .lead,
.text-center .display-5,
.text-center .display-4,
.text-center .display-3 {
    text-align: center !important;
}

/* Page Headers - Center Aligned */
.page-header h1,
.page-header h2,
.page-header p {
    text-align: center !important;
}

/* Content Sections - Better Readability */
.content-section {
    max-width: 100%;
}

.content-section p {
    text-align: left !important;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Service Cards Content */
.service-card p,
.service-preview-card p {
    text-align: left !important;
}

/* About Section Content */
.about-content p {
    text-align: left;
    line-height: 1.8;
}

/* Mission & Vision Better Alignment */
.mission-card p,
.vision-card p {
    text-align: left !important;
}

/* Value Cards Text */
.value-card h4,
.value-card-alt h4 {
    text-align: center !important;
}

.value-card p,
.value-card-alt p {
    text-align: center !important;
}

/* Benefit Cards Text */
.benefit-card p {
    text-align: left !important;
}

/* Hero Section Paragraph Alignment */
.hero-content p {
    text-align: center !important;
}

.hero-content h1 {
    text-align: center !important;
}

/* Lists in Cards */
.card ul,
.service-card ul,
.service-preview-card ul {
    text-align: left;
    padding-left: 1.5rem;
}

/* Differentiator Cards */
.differentiator-card p {
    text-align: left !important;
}

/* Contact Info */
.contact-info-card p {
    text-align: left !important;
    margin-bottom: 0;
}

/* Footer Text */
.footer p {
    text-align: left !important;
}

/* Stats Section */
.stat-card h3,
.stat-card p {
    text-align: center !important;
}

/* Centered Content Override */
.text-center p {
    text-align: center !important;
}

.text-center.lead {
    text-align: center !important;
}

/* Better Spacing for Headings */
h1 + p,
h2 + p,
h3 + p,
h4 + p {
    margin-top: 1rem;
}

/* Section Intro Text */
.section-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-intro p {
    text-align: center !important;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Card Body Content */
.card-body p:last-child {
    margin-bottom: 0;
}

/* Better Line Height for Long Content */
.long-content p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Responsive Text Alignment */
@media (max-width: 768px) {
    p {
        text-align: left !important;
    }
    
    .text-center p {
        text-align: center !important;
    }
    
    .hero-content p {
        text-align: center !important;
    }
    
    .hero-content h1 {
        text-align: center !important;
    }
}



ul.list-unstyled.text-white-50 li {
    font-size: 12px;
    
}

p a.f-an{text-decoration:underline;color: #1f2327;margin: 0 0 0 5px;background: #fff;}