/*
  Champion Logistics - About Us Page Styles
  Date: 02 August 2025
  Structure:
  
*/

/* Google Font Import - Ek modern aur readable font */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
:root{
   --blue: #003082;
   --gray: #767676;
   --h2_font_size : 30px;

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
      

/* Basic Body Styles (Optional - Agar aap poori site par lagana chahte hain) */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6; /* Halki si grey background */
    color: var(--blue);
    line-height: 1.6;
    
}

/* Main 'About Us' Section Container */
.section_about {
    max-width: 900px;
    margin: 100px auto 40px auto; /* Section ko page ke center mein laane ke liye */
    padding: 40px;
    background-color: #ffffff; /* Safed card jaisa background */
    border-radius: 12px; /* Halke gol corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Ek subtle shadow effect */
    border-left: 5px solid var(--blue); /* Ek brand color ka accent */
}

/* Main Heading (H2 - "About Us") */
.section_about h2 {
    text-align: center;
    font-size: 2.5rem; /* Bada aur prabhavshali font size */
    color: var(--blue); /* Gehra neela rang */
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

/* Heading ke neeche choti si line */
.section_about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--gray); /* Sustainability ke liye hara rang */
    border-radius: 2px;
}

/* Sub-Headings (H3 - Mission, Vision, Values) */
.section_about h3 {
    font-size: 1.8rem;
    color: var(--blue); /* Brand ka primary blue color */
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eeeeee; /* Halka sa separator */
}

/* Paragraph Text */
.section_about p {
    font-size: 1rem;
    color: var(--gray); /* Thoda halka text color readability ke liye */
    margin-bottom: 20px;
}

/* Vehicle Counter ke liye special style */
.counter {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue); /* Green color to highlight the number */
    vertical-align: middle;
}

/* Values ki List (UL) */
.section_about ul {
    list-style: none; /* Default bullets hatane ke liye */
    padding-left: 0;
    margin-top: 15px;
}

/* List Items (LI) */
.section_about li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-left: 35px; /* Icon ke liye jagah */
    position: relative; /* Icon ko position karne ke liye */
}

/* List items ke liye custom icon (ek checkmark) */
.section_about li::before {
    content: '✓'; /* Aap '→', '•', ya koi aur icon bhi use kar sakte hain */
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 1.4rem;
    color: #28a745; /* Green checkmark */
    font-weight: bold;
}

/* List ke andar ka bold text */
.section_about li b {
    color: var(--blue); /* Title ko gehre neele rang mein dikhane ke liye */
}

/* --- Responsive Design (Mobile ke liye) --- */
@media (max-width: 768px) {
    .section_about {
        padding: 25px;
        margin: 60px 20px 20px 20px;
    }

    .section_about h2 {
        font-size: 2.1rem;
    }

    .section_about h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 400px) {
    .section_about {
        padding: 25px;
        margin: 60px 20px 20px 20px;
    }

    .section_about h2 {
        font-size: 1.7rem;
    }

    .section_about h3 {
        font-size: 1.3rem;
    }
}