
/*extra code for theme header title only for single page*/
div#header h1 {
    text-align: center !important;
}
.description {
    text-align: center !important;
}
div#footer p {
    text-align: center !important;
}

/* Main Container */
.sr_container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Main Content Layout */
.sr_main_content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left and Right Columns */
.sr_left_column, .sr_right_column {
    flex: 1;
    min-width: 300px;
}

.sr_left_column {
    flex-basis: 800px;
}

/* .sr_right_column {
    flex-basis: 40%;
} */

/* Typography */

.sr_designation_value{
    color: #0f0fa8;
}

.sr_accordion_content_blog{
    max-height: 52px;
    display: flex;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.sr_accordion_content_blog:nth-child(odd){
background-color: #F0F0F0;
}

.sr_accordion_content p {
    font-size: 12px;
    font-weight: 400;
}

.hr_line{
    width: 100%;
    height: 1px;
    background-color: #D4AF37;
    margin:10px 0px;
}

.sr_row{

    color:#D4AF37 ;
}

.sr_main_title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.sr_description {
    color: #fcb900;
    font-size: 1rem;
    line-height: 1.6;
}

.sr_subtitle {
    color: #D4AF37;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
}

.sr_system_name {
    color: #E0E0E0;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.sr_search_button {
    padding: 10px 20px;
    border: none;
    background-color: #D4AF37;
    color: #212121;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

/* Featured Image */
.sr_feature_image_container {
    width: 100%;
    margin-bottom: 20px;
}

.sr_feature_image {
    width: 100%;
    height: auto;
    display: block;
}

/* --- New Accordion Styles --- */
.sr_accordion {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

a.sr_designation_value{
    text-decoration: none;
    font-size: 12px;
}

.sr_accordion_item:last-child {
    border-bottom: none;
}

.sr_accordion_header {
    background: #B2DFDB; /* Light blue from image */
    color: #000;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans';
}


/* The CSS to add the icon */
.sr_accordion_header::after {
  content: '\25BC'; /* This is the Unicode character for a down arrow */
  font-size: 1em;
  transition: transform 0.3s ease; /* Adds a smooth animation when it rotates */
  margin-left: 10px;
}

/* The CSS to rotate the icon when the accordion is active/open */
.sr_accordion_header.active::after {
  transform: rotate(180deg);
}


.sr_accordion_content {
    max-height: 0;
    overflow: hidden;
    /* padding: 0 15px; */
    background: #ffff; /* Lighter blue from image */
    color: #333;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sr_accordion_content p {
    margin: 0.2em 0;
    width: 35%;
}


/* --- Responsive Design --- */

/* Laptop - up to 1200px */
@media (max-width: 1200px) {
    .sr_container {
        max-width: 960px;
    }
}

/* Tablet - up to 992px */
@media (max-width: 992px) {
    .sr_container {
        max-width: 720px;
    }
    .sr_main_content {
        flex-direction: column;
    }
    .sr_left_column, .sr_right_column {
        flex-basis: 100%;
    }
}

/* Landscape Tablet & Large Mobiles - up to 768px */
@media (max-width: 768px) {
    .sr_container {
        max-width: 540px;
    }
    .sr_main_title {
        font-size: 2rem;
    }
    .sr_subtitle {
        font-size: 1.5rem;
    }
    .sr_accordion_header {
        font-size: 16px;
        padding: 12px;
    }
    .sr_accordion_content {
        font-size: 14px;
    }
}

/* Mobile - up to 576px */
@media (max-width: 576px) {
    body {
        padding: 10px;
    }
    .sr_search_container {
        flex-direction: column;
    }
    .sr_search_input, .sr_search_button {
        border-radius: 4px;
        margin-bottom: 5px;
    }
}

/* iPhone & Small Mobile - up to 480px */
@media (max-width: 480px) {
    .sr_main_title {
        font-size: 1.8rem;
    }
    .sr_accordion_header {
        font-size: 14px;
        padding: 10px;
    }
    .sr_accordion_content {
        font-size: 13px;
    }
}