/* 1. About Hero with Overlay */
.about-hero {
    height: 300px;
    background: url('/images/about-overlay.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 57, 0.7); /* Dark Blue Overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 900;
}

.hero-content span {
    font-size: 60px;;
    color: #f3c301;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* =========================================
   ABOUT DETAILS SECTION - CENTERED LAYOUT
   ========================================= */

.about-details {
    padding: 30px 0; /* Premium spacing for entry section */
    background: #ffffff;
    text-align: center; /* Entire section is now centered */
}

/* Base grid changed to a centered block layout */
.details-grid {
    display: block; /* Grid structure removed for stacking */
    max-width: 1000px;
    margin: 0 auto;
}

/* 1. Text Section Styling */
.details-text {
    margin-bottom: 30px; /* Gap before the car image starts */
}

.details-text h2 {
    font-size: 32px;
    color: #0b1c39; /* Necabs Dark Blue */
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

/* The highlighted main point 'North East India' */
.details-text span {
    font-size: 50px; /* Enlarged for maximum impact */
    color: #df0617; /* Necabs Signature Red */
    display: block; /* Forced onto a new line */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 30px; /* Centered p tag with max-width */
}

/* 2. Image Section Styling */
.details-img img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.08));
}


/* 3. Container Utility (Reference) */
.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .about-details { 
        padding: 40px 15px; /* Side padding add ki taaki text edges se na chipke */
    }

    /* Headline scaling */
    .details-text h2 { 
        font-size: 20px; /* 26px se chota kiya */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* Highlighted 'North East India' scaling */
    .details-text span { 
        font-size: 28px; /* 36px se chota kiya taaki single line mein fit ho sake */
        letter-spacing: 0.5px;
        margin-top: 5px;
    }

    /* Paragraph text scaling */
    .details-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    /* Image shadow adjustment for mobile */
    .details-img img {
        filter: drop-shadow(0 8px 8px rgba(0,0,0,0.1));
    }
}




/* 3. Locations Grid */
.locations-section {
    padding: 10px 0;
}

.about-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #0b1c39; /* Dark Blue from your branding */
}

/* Two columns for Darjeeling and Sikkim */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    margin-top: 40px;
}

.loc-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden; /* Taaki image corners round rahein */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-bottom: 4px solid #0c1e46; /* Your signature Red */
    transition: transform 0.3s ease;
}

.loc-card:hover {
    transform: translateY(-10px);
}

.loc-img {
    width: 100%;
    height: 250px; /* Image height control */
    overflow: hidden;
}

.loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image cover fill karegi */
}

.loc-info {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loc-info i {
    color: #ea3c27; /* Red Icon */
    font-size: 20px;
}

.loc-info h3 {
    font-size: 24px;
    color: #0b1c39;
    font-weight: 700;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr; /* Mobile par ek ke niche ek */
    }
}

/* 4. Why Choose Section */
.why-choose-boxes {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.container-wide {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 32px;
    color: #0b1c39; /* Dark Blue */
    margin-bottom: 50px;
}

.section-title h2 span {
    color: #df0617; /* Necabs Red */
}

.features-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 boxes in one line */
    gap: 20px;
}

/* Updated Box Style with Red Bottom Design */
.feature-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 1px solid #f2f2f2;
    /* Red bottom border added to match locations section */
    border-bottom: 4px solid #0c1e46; 
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: #fdfdfd;
}

.box-icon {
    margin-bottom: 15px;
}

.box-icon i {
    font-size: 26px;
    color: #0b1c39;
}

.feature-box h3 {
    font-size: 17px;
    color: #0b1c39;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}


.feature-box:hover .view-more {
    color: #df0617; /* Red on hover */
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1200px) {
    .features-line { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .features-line { grid-template-columns: 1fr; }
}