/* 
  Modern & Responsive Styles for Inner Pages 
*/

/* Overriding the default black banner with a modern gradient and pattern */
.webdesign-name {
    background: linear-gradient(135deg, rgba(29,38,113,0.95) 0%, rgba(195,55,100,0.95) 100%), url('../images/banner-pattern.png');
    background-size: cover;
    background-position: center;
    background-color: transparent !important; /* Override hardcoded inline style #000 */
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.webdesign-name h1 {
    color: #ffffff !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

/* Page content section improvements */
.page-content {
    margin-bottom: 0;
}

/* Improve Typography & Spacing in Main Content Areas */
.about_us_hoplder {
    padding: 60px 15px;
}

.about_para_column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568 !important;
    margin-bottom: 20px;
}

/* Accordion modern styling */
.about_collpas_right .panel {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about_collpas_right .panel:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.about_collpas_right .panel-heading {
    background-color: #ffffff;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about_collpas_right .panel-title a {
    display: block;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.about_collpas_right .panel-title a:hover,
.about_collpas_right .panel-title a[aria-expanded="true"] {
    background: #eff6ff;
    color: #2563eb;
}

.about_collpas_right .panel-body {
    padding: 20px;
    background-color: #ffffff;
    border-top: none;
    color: #4a5568;
    line-height: 1.7;
}

/* Service Images in text */
.collpas_my_body img {
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Specific Page Overrides for Responsiveness */
@media screen and (max-width: 768px) {
    .webdesign-name {
        padding: 50px 0;
    }
    .webdesign-name h1 {
        font-size: 1.8rem;
    }
    .about_para_column p {
        font-size: 1rem;
    }
    .about_us_hoplder {
        padding: 40px 15px;
    }
}

/* Modern Card Layouts for Services (if applicable inside inner pages) */
.inner-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.inner-service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.inner-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
