
/* SECTION */
.industry-section {
    padding: 70px 20px;
    background: #f8f9fa;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

/* DESCRIPTION */
.section-desc {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* IMAGE */
.industry-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 1px;
    transition: 0.4s;
}

    .industry-img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* TEXT BOX */
.text-box {
    background: linear-gradient(135deg, #0b2c3d, #124b63);
    color: #fff;
    padding: 35px;
    border-radius: 1px;
    text-align: left;
    height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    /* HIGHLIGHT */
    .text-box .highlight {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 15px;
    }

    /* PARAGRAPH */
    .text-box p {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #eaeaea;
    }



/*2222222222222222222222222222222222222222*/





/* Container padding for mobile */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.section-title {
    font-size: calc(24px + 1vw); /* Fluid font size */
    font-weight: 700;
    color: #0b2c3d;
}

/* Owl Item adjustment */
.owl-carousel .item {
    padding: 15px 5px;
    height: 100%;
}

.custom-card {
    background: #fff;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%; /* Important for equal height */
    display: flex;
    flex-direction: column;
}

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

/* Image Wrapper Responsive */
.img-wrapper {
    width: 100%;
    height: 200px; /* Desktop height */
    overflow: hidden;
    border-radius: 12px;
}

/* Tablet & Mobile height adjustment */
@media (max-width: 768px) {
    .img-wrapper {
        height: 180px;
    }

    .custom-card p {
        min-height: auto !important; /* Mobile par fixed height hatana zaroori hai */
    }
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-card h4 {
    font-size: 20px;
    margin: 15px 0 10px;
    color: #0b2c3d;
}

/* Typography control */
.custom-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    padding: 0 10px;
    flex-grow: 1; /* Content ko space fill karne dega */
}

/* Custom Dots for better touch targets */
.owl-dots {
    margin-top: 30px !important;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: #d1d1d1 !important;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #0b2c3d !important;
    width: 30px !important; /* Pill shape for active dot */
    border-radius: 10px !important;
}

.owl-nav .owl-prev {
    display: none !important;
}

.owl-nav .owl-next {
    display: none !important;
}
/*3333333333333333333333*/


/* SECTION */
.info-section {
    background: linear-gradient(135deg, #f5a623, #ffb84d);
    padding: 80px 0; /* Consistent vertical padding */
}

/* TITLE - Fluid size */
.info-title {
    font-size: calc(24px + 1vw);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0;
}

/* CARD - Equal height with Flexbox */
.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* NUMBER */
.number {
    font-size: 45px;
    font-weight: 800;
    color: rgba(245, 166, 35, 0.2); /* Subtle stylish look */
    line-height: 1;
    margin-bottom: 10px;
}

/* TEXT */
.info-card h4 {
    margin: 10px 0;
    font-weight: 700;
    color: #212529;
    font-size: 22px;
}

.info-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

/* BUTTON */
.btn-custom {
    display: inline-block;
    margin-top: auto; /* Pushes button to bottom of equal-height card */
    padding: 12px 25px;
    background: #1e7f4f;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

    .btn-custom:hover {
        background: #145c37;
        color: #fff;
        transform: scale(1.05);
    }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    .info-section {
        padding: 60px 0;
    }

    .info-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .info-card {
        padding: 30px 20px;
    }

    .number {
        font-size: 35px;
    }
}
/*44444444*/
/* 1. Ensure image doesn't explode on large screens or overlap on small ones */
.custom-res-img {
    max-height: 500px; /* Limits height on large monitors */
    width: auto;
    object-fit: contain;
}

/* 2. Responsive adjustment for mobile */
@media (max-width: 767px) {
    .custom-res-img {
        max-height: 300px; /* Shorter height for phones */
        margin-top: 30px;
    }

    .custom-svg-2 {
        display: none; /* Hide decorative SVG on mobile to focus on content */
    }
}

/* 3. Accordion Styling Polish */
.custom-accordion-style-1 .card {
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.custom-accordion-style-1 .card-header a {
    padding: 15px 20px;
    display: block;
    text-decoration: none;
}


/* Responsive Image Fix */
.custom-res-img {
    max-height: 550px; /* Limits size on desktop */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

/* Accordion Customization */
.custom-accordion-style-1 .card-header {
    border: 1px solid #f4f4f4;
    border-radius: 8px !important;
}

.custom-accordion-style-1 .accordion-toggle {
    text-decoration: none;
    display: block;
    padding: 10px 5px;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .custom-res-img {
        max-height: 350px; /* Smaller height for mobile */
        margin-top: 20px;
    }

    .container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}
