.contact-banner {
    min-height: 320px;
    display: flex;
    align-items: center;

    /* DEMO IMAGE */
    background:
        linear-gradient(to right, #efe7da 40%, rgba(0, 0, 0, 0.15)),
        url("../img/16.jpg");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* Left text */
.banner-content {
    padding: 60px;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 42px;
    color: #c7921e;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 16px;
    color: #333;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-banner {
        background:
            linear-gradient(to bottom, rgba(239, 231, 218, 0.95), rgba(239, 231, 218, 0.85)),
            url("../img/16.jpg");
        background-position: center;
        text-align: center;
    }

    .banner-content {
        padding: 40px 20px;
        margin: auto;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}




.con_features_area {
    padding: 40px 0;
    background: #fff;
}

.display-flex-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.con_features_item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-right: 1px solid #ddd; /* Desktop par 4 ke beech ki lines */
}

/* Akhiri item ki line hatao desktop par */
@media (min-width: 992px) {
    .col-lg-3:last-child .con_features_item {
        border-right: none;
    }
}

.media_icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.media_icon img {
    max-width: 80%;
}

.media-body h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #333;
}

.media-body p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* --- Responsive Settings --- */

/* Tablet (2 Items per row) */
@media (max-width: 991px) {
    .col-md-6 {
        border-right: none;
        margin-bottom: 20px;
    }
}

/* Mobile (Ek line mein 2 items ya 1 depend on space) */
@media (max-width: 576px) {
    .con_features_item {
        flex-direction: column; /* Icon upar text niche (Optional) */
        text-align: center;
        border-right: none;
    }
    .media_icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .col-6 {
        width: 50%; /* Mobile par 2-2 show honge */
    }
}







/* Section Padding */
.con_about_area_two {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Image Container */
.otdr_img_container {
    padding: 20px;
}

.otdr_main_img {
    max-width: 80%;
    height: auto;
    transition: transform 0.4s ease;
}

/* Content Styling */
.otdr_content_box {
    padding-left: 40px;
}

.otdr_subtitle {
    color: #ffb400; /* Theme Yellow color */
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.otdr_main_title {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title_divider {
    width: 60px;
    height: 3px;
    background: #ffb400;
    margin-bottom: 25px;
}

.otdr_description p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify; /* Consistent with other sections */
}

.highlight_text {
    border-left: 3px solid #ffb400;
    padding-left: 15px;
    font-style: italic;
    color: #444 !important;
}

/* --- Responsive Media Queries --- */

/* Tablets (Max 991px) */
@media (max-width: 991px) {
    .con_about_area_two {
        padding: 60px 0;
    }
    .otdr_content_box {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }
    .otdr_main_title {
        font-size: 28px;
    }
    .title_divider {
        margin: 0 auto 25px;
    }
    .highlight_text {
        border-left: none;
        border-top: 2px solid #ffb400;
        padding-top: 15px;
        padding-left: 0;
    }
}

/* Mobile (Max 575px) */
@media (max-width: 575px) {
    .otdr_main_img {
        max-width: 100%;
    }
    .otdr_main_title {
        font-size: 24px;
    }
}




.features-section {
    padding: 80px 0;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h6 {
    color: orange;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #111;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Box Design */
.feature-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-box p {
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 24px;
    }
}







/* Section Base */
.parameters_section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.section_title {
    margin-bottom: 40px;
}

.line_bottom {
    width: 60px;
    height: 3px;
    background: #ffb400; /* Theme Yellow */
    margin: 15px auto;
}

/* Table Wrapper for Responsiveness */
.table_wrapper {
    width: 100%;
    overflow-x: auto; /* Mobile par side scroll enable karega */
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.parameter_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensures table doesn't get too squashed */
}

.parameter_table th, 
.parameter_table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* Header Style */
.parameter_table thead tr {
    background-color: #333;
    color: #fff;
}

.parameter_table thead th {
    font-size: 16px;
    font-weight: 600;
}

/* Zebra Striping */
.parameter_table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.parameter_table tbody tr:hover {
    background-color: #fff9eb; /* Subtle yellow highlight on hover */
}

/* Column Widths */
.parameter_table th {
    width: 40%;
    background-color: #fdfdfd;
    color: #333;
    font-weight: 700;
}

/* Text Highlights */
.highlight_red {
    color: #db0b08;
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .parameters_section {
        padding: 40px 10px;
    }
    
    .parameter_table th, 
    .parameter_table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}




