@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    scroll-behavior: smooth;
    box-sizing: border-box;
}


/*--Navigation bar--*/

header .navbar {
    background: #ffffff;
    position: fixed;
    width: 100%;
    z-index: 999;
}

header .navbar:after{
    content: '';
    clear: both;
    display: table;
}

header .navbar ul{
    float: right;
    list-style: none;
    margin-right: 40px;
    position: relative;
}

header .navbar ul li {
    float: left;
    display: inline-block;
    background: #ffffff;
    margin: 0 5px;
}

header .navbar ul li a{
    color: #0c96e2;
    text-decoration: none;
    line-height: 70px;
    font-size: 15px;
    padding: 8px 15px;
    font-weight: 600;
}

header .navbar ul li a:hover {
    box-shadow: 0 0 5px #24aaf8, 0 0 5px #0c96e2;
    border-radius: 5px;
    color: #53cef9;
}

header .navbar ul ul {
    position: absolute;
    top: 90px;
    border-top: 3px solid #53cef9;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

header .navbar ul li:hover >  ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
}

header .navbar ul ul li {
    position: relative;
    margin: 0px;
    width: 170px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

header .navbar ul ul li a:hover {
    color: #53cef9;
    box-shadow: none;
}

header .navbar ul ul li:hover {
    border-bottom: 3px solid #53cef9;
}

header .navbar ul ul li a {
    line-height: 50px;
}

header .navbar ul ul ul {
    border-top: none;
}

header .navbar ul ul ul li {
    position: relative;
    top: -70px;
    left: 170px;
}



header .navbar ul li ul li a {
    font-size: 12px;
}

header .navbar ul .fa-square-caret-down{
    margin-left: 2px;
    font-size: 15px;
    color: #0c96e2;
}

header .navbar ul ul .fa-square-caret-right{
    margin-left: 2px;
    font-size: 15px;
    color: #0c96e2;
}

header .navbar ul ul .fa-square-caret-down:hover{
    color: #0c96e2;
    box-shadow: none;
}

header .navbar ul ul ul li a{
    font-size: 12px;
    font-weight: 700;
}

header .navbar .crs_logo{
    float: left;
    color: #fff;
    padding-left: 60px;
    width: 270px;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 60px;
}

header .navbar .show {
    display: none;
    font-weight: 600;
}

header .navbar .icons{
    display: none;
    font-weight: 600;
}

header .navbar input{
    display: none;
    font-weight: 600;
}

/*----Slider-----*/

.slider {
    width: 2000px;
    max-width: 100vw;
    height: 900px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}

.resp_list i {
    font-size: 18px;
    color: #0c96e2;
    margin-right: 10px;
}

.resp_list {
    padding-bottom: 50px;
}

.resp_list li{
    padding-bottom: 10px;
}

.list img {
    width: 2000px;
    max-width: 100vw;
    height: 100%;
    background-position: center;
}

.buttons {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #24aaf8;
    color: #fff;
    border: none;
    font-family: 'Open Sans';
    font-weight: bold;
}

.dots {
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #0c96e2;
    margin: 20px;
    border-radius: 20px;
    transition: 1s;
}

.dots li.active {
    width: 30px;
}


/* Latest News Section */
.latest-news-section {
    padding: 150px 20px 40px; /* Add enough top padding to clear the navbar */
    background-color: #f9f9f9;
}
.latest-news-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    align-items: stretch;
}

/* Sliding News Section */
.sliding-news {
    flex: 2;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 500px; /* Increased height by 100px */
    width: 100%; /* Ensure the slider takes up the full width */
}

.sliding-news-header {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
}

.sliding-news-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Dynamically adjust width based on the number of slides */
}

.sliding-news-item {
    flex: 0 0 100%; /* Each slide takes up 100% of the container width */
    position: relative;
}

.sliding-news-item img {
    width: 100%;
    height: 100%; /* Ensures the image fills the sliding section */
    object-fit: cover; /* Maintains aspect ratio and crops excess */
    border-radius: 8px; /* Matches the slider's rounded corners */
}

.sliding-news-content {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 30px;
    border-radius: 5px;
}



/* Sliding News Link */
.sliding-news-link {
    display: block;
    text-decoration: none;
    color: inherit; /* Inherit text color */
}

.sliding-news-link:hover .sliding-news-content {
    transform: scale(1.02); /* Slight zoom effect on hover */
    transition: transform 0.3s ease;
}

/* Steady News Link */
.steady-news-link {
    text-decoration: none;
    color: inherit; /* Inherit text color */
}

.steady-news-link:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
}



/* Steady News Section */
.steady-news {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    height: 500px; /* Match the height of the sliding news */
}

.steady-news-header {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 2px solid #0a7cbf;
    padding-bottom: 5px;
}

.steady-news-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: calc(33.33% - 13.33px); /* Divide the height evenly among 3 items */
    overflow: hidden;
}


.steady-news-image {
    width: 100px; /* Adjusted width for better proportions */
    height: 100px; /* Adjusted height for better proportions */
    object-fit: cover; /* Maintains aspect ratio and crops excess */
    border-radius: 8px;
    margin-right: 10px;
}

.steady-news-content h3 {
    font-size: 1em;
    font-weight: bold;
    color: #0a7cbf;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.steady-news-content p {
    font-size: 0.9em;
    color: #555;
    margin: 0;
    display: -webkit-box; /* Required for line clamping */
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical; /* Required for line clamping */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Add ellipsis (...) for overflow */
}


/* News Section */
.news-section {
    padding: 140px 20px;
    background-color: #f9f9f9;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2em; /* Large font size for emphasis */
    font-weight: bold; /* Make the title bold */
    color: #c51f30; /* Use a blue color to match the theme */
    text-align: center; /* Center the title */
    margin-bottom: 30px; /* Add spacing below the title */
    text-transform: uppercase; /* Make the text uppercase */
    border-bottom: 2px solid #0a7cbf; /* Add a bottom border for emphasis */
    display: inline-block; /* Ensure the border doesn't stretch across the page */
    padding-bottom: 5px; /* Add padding below the text */
}


.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* News content layout */
.news-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-tag {
    display: inline-block;
    background-color: #0c96e2;
    color: #fff;
    font-size: 0.75em;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.news-tag:hover {
    background-color: #086aa1; /* Darker blue on hover */
}

.news-title-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
}

.news-title-link:hover .news-title {
    text-decoration: underline; /* Optional: Add underline on hover */
}

.news-title {
    font-size: 1.1em;
    margin: 0 0 8px;
    color: #222;
}

.news-title:hover {
    text-decoration: underline;
}

.news-date {
    font-size: 0.9em;
    color: #666;
}

a.news-title-link {
    color: #000;
    text-decoration: none;
}

a.news-title-link:hover {
    text-decoration: underline;
}

#news-section {
    padding: 140px 30px;
    background-color: #f9f9f9;
}

#news-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 items per row */
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

/*-----Career Banner-----*/

#career_banner {
    background-image: url("img/career.jpg");
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10px;
} 

#career_banner h2 {
    color: #0c96e2;
    font-size: 3rem;
    letter-spacing: 1px;
}

#career_banner p {
    color: #0c96e2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #53cef9;
    background: #53cef9;
    transition: 0.5s;
}

.hero-btn-career{
    display: inline-block;
    text-decoration: none;
    color: #0c96e2;
    border: 1px solid #000000;
    padding: 12px 34px;
    font-size: 13px;
    font-weight: 1000;
    background: #fff;
    position: relative;
    cursor: pointer;
}

.hero-btn-career:hover{
    border: 1px solid #0c96e2;
    background: #53cef9;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination button {
    background-color: #0c96e2;
    color: white;
    border: none;
    padding: 8px 12px;
    margin: 0 4px;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button.active {
    background-color: #c51f30;
}

.pagination button:hover {
    background-color: #005a9e;
}


/*---Mission and Vision---*/
.mis_section {
    width: 100%;
    min-height: 50vh;
    background-color: #eef2f8;
}

.mis_container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 60px;
}

.mis_content-section {
    float: left;
    width: 55%;
}

.mis_image_section {
    float: right;
    width: 40%;
}

.mis_image_section img {
    width: 100%;
    height: auto;
    padding-top: 50px;
}

.mis_container li {
    list-style-type: circle;
  }

.mis_content-section .mis_title {
    margin-top: 35px;
    text-transform: uppercase;
    font-size: 28px;
}

.mis_content-section .mis_title h1{
    color: #0c96e2;
    font-size: 30px;
}

.mis_content-section .mis_content h3 {
    color: #0c96e2;
    font-size: 21px;
    margin-top: 20px;
}

.mis_content-section .mis_content p {
    margin-top: 20px;
    font-family: 'Open Sans';
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
}

.mis_content-section .mis_content li {
    margin-top: 10px;
    font-family:'Open Sans';
    font-size: 18px;
    text-align: justify;
}

.mis_content-section .mis_content .mis_button {
    margin-top: 30px;
}

.mis_content-section .mis_content .mis_button a {
    background-color: #0c96e2;
    padding: 12px 40px;
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    letter-spacing: 1.5px;
}

.mis_content-section .mis_content .mis_button a:hover {
    background-color: #53cef9;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}


/*-----About Us--------*/

.abt_section {
    width: 100%;
    min-height: 90vh;
    background-color: #fff;
    margin-bottom: 200px;
}

.abt_section::after {
    content: "";
    display: block;
    clear: both;
}

.abt_container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 60px;
}

.abt_content-section {
    float: left;
    width: 100%;
}

.abt_image_section {
    float: right;
    width: 40%;
    margin-top: 100px;
}

.abt_image_section img {
    width: 100%;
    height: auto;
    padding-top: 50px;
}

.abt_container li {
    list-style-type: circle;
  }

.abt_content-section .abt_title {
    margin-top: 35px;
    text-transform: uppercase;
    font-size: 28px;
}

.abt_content-section .abt_title h1{
    color: #0c96e2;
    font-size: 30px;
}

.abt_content-section .abt_content h3 {
    color: #0c96e2;
    font-size: 21px;
    margin-top: 20px;
}

.abt_content-section .abt_content p {
    margin-top: 20px;
    font-family: 'Open Sans';
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
}

.abt_content-section .abt_content li {
    margin-top: 10px;
    font-family: 'Open Sans';
    font-size: 18px;
    text-align: justify;
}

.about_second {
    align-items: center;
}
.about_second {
    padding: 20px;
    background-color: #fff;
}

.abt_tam {
    flex: 1 1 calc(48% - 20px); /* Adjust for responsiveness with margin/gap */
    background-color: #fff;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.abt_tam h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.abt_list ul, .tam_list ul {
    list-style-type: none;
    padding: 0;
}

.abt_list li, .tam_list li {
    margin-bottom: 10px;
}

.abt_list span, .tam_list span {
    display: block;
    font-size: 1rem;
    color: #333;
}

.abt_list {
    position: relative;
    margin-bottom: 30px;
  }
  .abt_list ul {
    position: relative;
  }
  .abt_list ul li {
    position: relative;
    left: 0;
    color: #0c96e2;
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #0c96e2;
    transition: 0.5s;
    font-weight: 400;
    cursor: pointer;
  }
  .abt_list ul li:hover {
    left: 10px;
  }
  .abt_list ul li span {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    transition: 0.5s;
  }
  .abt_list ul li:hover span {
    color: #fff;
  }
  .abt_list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0c96e2;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
  }
  .abt_list ul li:hover:before {
    transform: scaleX(1);
  }



/*-------About Team member------*/
.tm {
    background-color: #fff;
}

.inner {
    padding-top: 20px;
}

.tm_header {
    text-align: center;
    color: #0c96e2;
    padding: 1rem;
    position: relative;
}

.tm_header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    background-color: #c51f30;
    border-radius: 2px;
}

.tm_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-gap: 1rem;
    padding: 1rem 80px;
    font-size: 1.2rem;
}

.tm-box {
    padding: 1rem;
    color: #fff;
    cursor: pointer;
}

.tm-box:hover > .tm-title:after, .tm-box:hover > .tm-title:before{
   width: 35px;
}

.tm-box:hover .tm-img{
    transform: translateY(-10px);
}

.tm-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.tm-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 4px;
    border-radius: 2px 0 0 2px;
    background-color: #c51f30;
    transition: .5s;
}

.tm-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 0 2px 2px 0;
    background-color: #c51f30;
    transition: .5s;
}

.tm-img {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 45px;
    background-color: #0c96e2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.tm-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 90px;
}

.tm-title h3 {
    color: #0c96e2;
    margin-top: 0.5rem;

}

.tm-title a {
    color: #aeaeae;
    text-decoration: none;
}

.tm-icon {
    width: 50px;
    z-index: 2;
}

/*------Career-----*/


/* Container styling */
.no-openings-message {
    background-color: #f9f9f9;
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    padding: 20px;
    width: auto;
    margin: 20px 0;
    text-align: center;
    font-family: 'Open sans';
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.no-openings-message a {
    display: inline-block;
    margin-top: 10px;
    color: #0c96e2;
    text-decoration: none;
    font-weight: 600;
}

.no-openings-message a:hover {
    text-decoration: underline;
}




/*-----Partnership TradeMark Settings------*/


.ptm {
    background-color: #fff;
}

.pinner {
    padding-top: 20px;
}

.ptm_header {
    text-align: center;
    color: #0c96e2;
    padding: 1rem;
    position: relative;
}

.ptm_header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
    background-color: #c51f30;
    border-radius: 2px;
}

.ptm_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-gap: 1rem;
    padding: 1rem 80px;
    font-size: 1.2rem;
}

.ptm-box {
    padding: 1rem;
    color: #ddd;
    cursor: pointer;
}

.ptm-box:hover > .ptm-title:after, .ptm-box:hover > .ptm-title:before{
   width: 35px;
}

.ptm-box:hover .ptm-img{
    transform: translateY(-10px);
}

.ptm-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.ptm-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 4px;
    border-radius: 2px 0 0 2px;
    background-color: #c51f30;
    transition: .5s;
}

.ptm-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 0 2px 2px 0;
    background-color: #c51f30;
    transition: .5s;
}

.ptm-img {
    width: 200px;
    height: 200px;
    position: relative;
    border-radius: 100px;
    background-color: #0c96e2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.ptm-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 90px;
}

.ptm-title h3 {
    color: #0c96e2;
    margin-top: 0.5rem;

}

.ptm-title a {
    color: #aeaeae;
    text-decoration: none;
}

.ptm-icon {
    width: 130px;
    z-index: 2;
}


/*----Doc Frias and Doc Gler Profiles----*/

.crs-title h1{
    text-align: center;
    margin-top: 50px;
}

.crs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 50vh;
    margin-top: 10px;
}

.person {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 650px;
}

.crs-container {
    height: 312px;
    width: 400px;
    cursor: pointer;
    transform: scale(0.48);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.circle {
    position: absolute;
    background: #0c96e2;
    height: 380px;
    width: 380px;
    top: 210px;
    left: 10px;
    border-radius: 60%;
}

.person img{
    position: relative;
    width: 340px;
    top: 250px;
    left: 22px;
    transform: translateY(20px) scale(1.15);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.container-inner {
    position: relative;
    clip-path: path("M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z");
    top: -200px;
}

.divider {
    height: 3px;
    width: 130px;
    border-radius: 5px;
    background: #0c96e2;
}

.person h1{
    color: #000;
    margin: 16px 0 0 0;
    text-align: center;
}

.person h2{
    color: #000;
    margin: 16px 0 0 0;
    text-align: center;
}

.person p {
    font-family: 'Open Sans';
    color: #000;
    font-size: 14px;
    margin: 16px 50px 0 50px;
    text-align: center;
}

.crs-container:hover{
    transform:scale(0.54);
}

.crs-container:hover img{
    transform: translateY(0) scale(1.3);
}

/*--Services--*/

.serv {
    margin: 0 auto;
	padding: 6rem 0;
}

.serv-container{
    width: 100%;
    height: 80vh;
    padding: 0 15%;
    margin-top: 10px;
}

.fa-solid{
    font-size: 50px;
    color: #0c96e2;
}

.serv-container h1{
    text-align: center;
    padding-top: 10%;
    margin-bottom: 100px;
    font-weight: 600;
    position: relative;
}

.serv-container h1::after{
    content: '';
    background:  #0c96e2;
    width: 150px;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.serv-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.service{
    text-align: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
}

.service i{
    font-size: 40px;
    margin-bottom: 10px;
    color: #0c96e2;
}

.service h2{
    font-weight: 600;
    margin-bottom: 8px;
}

.service:hover{
    background: #0c96e2;
    color: #fff;
}

.service:hover p{
    color: #fff;
}

.service:hover .fa-solid{
    color: #fff;
}

/*--Activities--*/

.activities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.activities-row{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
}

.activities-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
}

.activities-col img{
    width: 100%;
    border-radius: 10px;
}

.activities-col p{
    padding: 0;
    text-align: center;
    margin-bottom: 10px;
    margin: 30px;
}

.activities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center; 
}

.activities-col:hover{
    box-shadow: 0 0 20px 0px #0c96e2;
}

/*----Career---*/

.job-list-container{
    max-width: 900px;
    margin: 20px auto;
    font-family: 'Open Sans';
    margin-top: 50px;
    margin-bottom: 50px;
}

.job-list-container h2{
    font-size: 30px;
    border-left: 4px solid #0c96e2;
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-list-container .careers{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.job-list-container .careers img{
    width: 60px;
}

.job-list-container .career{
    box-shadow: 0 4px 24px 10px rgba(2, 48, 71, 0.2);
    padding: 24px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 400ms ease;
}

.job-list-container .job:hover{
    transform: scale(1.03);
}

.job-list-container .open-pos{
    position: absolute;
    top: 40px;
    font-weight: 600;
    right: 30px;
    color: #0c96e2;
}

.job-list-container .job-title{
    font-size: 20px;
    padding: 10px 0;
    margin: 0;
    color: #0c96e2;
}

.job-list-container .details{
    margin-top: 6px;
    font-size: 14px;
    color: #0c96e2;
    line-height: 1.8;
    flex: 1;
}

.job-list-container .details-btn{
    text-decoration: none;
    border: 1px solid #0c96e2;
    color: #0c96e2;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    transition: all 400ms ease;
}

.job-list-container .details-btn:hover{
    background: #0c96e2;
    color: #fff;
}

.job-list-container .job-search{
    width: 100%;
    padding: 12px 24px;
    font-size: 18px;
    font-family: 'Open Sans';
    box-sizing: border-box;
    border: 1px soild #333;
    border-radius: 8px;
    margin-bottom: 20px;
}

/*--Contact Us 2nd Part--*/

.contactus{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(img/foot.png);
    background-position: center;
    background-size: cover;
    border-radius: 50px;
    text-align: center;
    padding: 100px 0;
}

.contactus h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
    font-size: 50px;
}

.contactus h2{
    color: #0c96e2;
    margin-bottom: 40px;
    padding: 0;
    font-size: 50px;
}

/*--Activities Form--*/

.actform{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.actform-row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}

.actform-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.actform-col img{
    width: 100%;
    display: block;
}

.actform-layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.actform-layer:hover{
    background: #0c96e2;
}

.actform-layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.actform-layer:hover h3{
    bottom: 50%;
    opacity: 1;
}

/*---Retention Form

.retention{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.retention h1{
    margin-top: 100px;
    font-size: 35px;
}

.retention h2:after{
    content: "";
    display: block;
    width: 250px;
    height: 4px;
    background-color: #0c96e2;
    margin: 8px auto 0;
}

.retention-row{
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
}


.retention-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.retention-col img{
    width: 100%;
    border-radius: 10px;
}

.retention-big {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
}

.retention-big img{
    width: 55%;
    border-radius: 10px;
    background-position: center;
}

.retention-col p{
    padding: 0;
    text-align: center;
}

.retention-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

---*/

.retention {
    text-align: center;
    padding: 20px;
}

.retention-row {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap; /* Enables wrapping for smaller screens */
}

.retention-col, .retention-big {
    width: 30%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Adds space between rows on smaller screens */
}

.retention-col img, .retention-big img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
}

.retention-col h3, .retention-big h3 {
    font-size: 1.1em;
    margin: 0;
    color: #333;
}

.retention-col p, .retention-big p {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0 10px 0;
}


.slider-container {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slider-container h1 {
    font-size: 2em; /* Adjust font size as needed */
    margin: 10px 0;
}

.slider-container p {
    font-size: 1em; /* Adjust font size as needed */
    color: #555; /* Optional: gives the description a lighter color */
    margin: 0;
    padding-bottom: 50px;
}

.slider-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Text styling */
.slider-item h3 {
    font-size: 1.1em;
    margin: 0;
    color: #333;
    text-align: center;
}

.slider-item p {
    font-size: 0.9em;
    color: #666;
    text-align: center;
}


.retention-col {
    width: 250px; /* Desired width */
    height: auto; /* Allows the container to grow based on content */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9; /* Optional: adds a background color */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
}

.retention-col img {
    width: 100%; /* Ensures image takes up the full container width */
    height: auto; /* Maintains aspect ratio */
    object-fit: contain; /* Ensures the entire image fits within the container */
    margin-bottom: 10px; /* Space between image and text */
}

.retention-col h3 {
    font-size: 1.2em;
    margin: 5px 0;
}

.retention-col p {
    font-size: 0.9em;
    color: #555;
    margin: 0;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10px;
}

@media (max-width: 1024px) {
    /* Tablet view adjustments */
    .retention-col, .retention-big {
        width: 45%; /* Two columns for medium screens */
    }

    .retention-row {
        gap: 15px;
    }

    .retention-col img {
        height: 130px; /* Adjust image height for medium screens */
    }

    .slider-container h1 {
        font-size: 1.8em;
    }

    .slider-container p {
        font-size: 0.95em;
        padding-bottom: 30px;
    }
    .slider-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile view adjustments */
    .retention-col, .retention-big {
        width: 100%; /* Stacks columns vertically on smaller screens */
    }

    .retention-row {
        flex-direction: column; /* Ensures columns stack on top of each other */
        gap: 10px;
    }

    .retention-col img {
        height: auto; /* Allows images to scale naturally */
    }

    .slider-container h1 {
        font-size: 1.5em;
    }

    .slider-container p {
        font-size: 0.9em;
        padding-bottom: 20px;
    }

    .carousel-button {
        font-size: 20px;
        padding: 8px;
    }

    .slider-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
}

/*---------Location CSS------*/

.contact {
    height: 130vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    margin-bottom: 100px;
}

.contract-wrap {
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}


.contact-in {
    padding: 40px 30px;
}

.contact-in:nth-child(1){
    flex: 15%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(img/contact.jpg);
    color: #fff;
    background: cover;
    background-position: center;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.contact-in:nth-child(2){
    flex: 35%;
    background: #0c96e2;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.contact-in:nth-child(3){
    flex: 45%;
    padding: 0;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 50px;
    height: 50vh;
}

.contact-in h1{
    color: #0c96e2;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-in h2{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.contact-in h2 i{
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: #fff;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
}

.contact-in p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-left: 50px;
}

.contact-in .form-group label{
    font-size: 20px;
    color: #fff;
}

.contact-in .form-group input{
    width: 100%;
    height: auto;
    font-size: 20px;
    font-family: 'Open Sans';
}

.contact-in .form-group textarea{
    width: 100%;
    height: auto;
    font-family: 'Open Sans';
    font-size: 20px;
}

.contact-in button{
    font-size: 20px;
    width: 20%;
    background-color: #0c96e2;
    color: #fff;
    border-radius: 20px;
}

.contact-in-input {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    outline: none;
    padding-left: 5px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}

.contact-in-input::placeholder {
    color: #fff;
}

.contact-in-textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    padding-top: 5px;
    outline: none;
    padding-left: 5px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}

.contact-in-textarea::placeholder {
    color: #fff;
}

.contact-in-btn {
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
}

.contact-in iframe {
    width: 100%;
    height: 100%;
}


/*------Blog Content------*/
.sw_menu {
    height: 10vh;
}

.sw_menu .navMenu {
    position: absolute;
    top: 37%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .sw_menu .navMenu a {
    color: #0c96e2;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    width: 310px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .sw_menu .navMenu a:hover {
    color: #0c96e2;
  }
  
  .sw_menu .navMenu .dot {
    width: 6px;
    height: 6px;
    background: #0c96e2;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .sw_menu .navMenu a:nth-child(1):hover ~ .dot {
    -webkit-transform: translateX(120px);
    transform: translateX(120px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
  }
  
  .sw_menu .navMenu a:nth-child(2):hover ~ .dot {
    -webkit-transform: translateX(415px);
    transform: translateX(415px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
  }
  
  .sw_menu .navMenu a:nth-child(3):hover ~ .dot {
    -webkit-transform: translateX(730px);
    transform: translateX(730px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
  }
  
  .sw_menu .navMenu a:nth-child(4):hover ~ .dot {
    -webkit-transform: translateX(285px);
    transform: translateX(285px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
  }
  

.blog-content {
    width: 60%;
    margin: auto;
    padding: 60px 0;
}

.blog_left {
    flex-basis: 65%;
}

.blog_left img{
    width: 100%;
}

.blog_left h2{
    color: #000;
    font-weight: 600;
    margin: 30px;
}

.blog_left p {
    color: #4d4d4d;
    padding: 0;
}

.blog_right {
    flex-basis: 32%;
}

.blog_right h3 {
    background:#f91c37;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog_right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    padding: 8px;
    box-sizing: border-box;
}

/*------SW Gallery------*/

.gal_container {
    position: relative;
    min-height: 50vh;
    background: #aeaeae;
}

.gal_container h2 {
    color: #333;
    font-weight: 600;
    margin: 30px;
    text-align: center;
}

.gal_container .gal_image_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}

.gal_container .gal_image_container .gal_image{
    height: 300px;
    width: 350px;
    border: 10px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    overflow: hidden;
    cursor: pointer;
}

.gal_container .gal_image_container .gal_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.gal_container .gal_image_container .gal_image:hover img{
    transform: scale(1.1);
}

.gal_container .popup-image {
    position: fixed;
    top: 0; left: 0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.gal_container .popup-image span{
    position: absolute;
    top: 80px; right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}

.gal_container .popup-image img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

/*------Pharmacy Gallery------*/

.phar_container {
    position: relative;
    min-height: 30vh;
    background: #fff;
}

.phar_container h2 {
    color: #333;
    font-weight: 600;
    margin: 30px;
    text-align: center;
}

.phar_container .phar_image_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}

.phar_container .phar_image_container .phar_image{
    height: 300px;
    width: 350px;
    border: 10px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    overflow: hidden;
    cursor: pointer;
}

.phar_container .phar_image_container .phar_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.phar_container .phar_image_container .phar_image:hover img{
    transform: scale(1.1);
}

.phar_container .popup-image {
    position: fixed;
    top: 0; left: 0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.phar_container .popup-image span{
    position: absolute;
    top: 80px; right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}

.phar_container .popup-image img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

.sw_list_container {
    max-width: 1450px;
    margin: auto;
    width: 100%;
}

.sw_list_filter {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 2rem !important;
}

.sw_list_item {
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.sw_list_active-filter {
    background: #0c96e2;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}

.retention h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

/*-------Clinical Trial-------*/

.ct-about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin-bottom: 150px;
}

.ct-content {
    flex: 1;
}

.ct-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
}

.ct-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #aeaeae;
    text-align: justify;
}

.ct-image {
    display: flex;
    flex: wrap;
    overflow: hidden;
}

.ct_section_container {
    margin-bottom: 100px;
    margin-top: 80px;
}

.ct_htp h1 {
    margin: 4rem;
    display: flex;
    justify-content: center;
}

#searchBox {
    font-size: 1.2rem;
    margin-left: 10px;
    border-color: #0c96e2;
    text-align: center;
}

.ct_filter{
    font-size: 25px;
    font-weight: 600;
    color: #0c96e2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.ct_filter .fa-magnifying-glass{
    font-size: 25px;
    color: #0c96e2;
    margin-left: 50px;;
}

.ct_filter #searchBox{
    width: auto;
}

.ct_htp select{
    margin-left: 10px;
    margin-top: 7px;
    width: 17%;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    float: left;
}


.ct_htp {
    text-align: center;
    margin: 0 auto;
    margin-top: -450px;
}

.ct_htp img {
    max-width: 100%;
    height: auto;
    display: inline-block; 
}

.ct_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 70%;
    margin: auto;
}

.ct_grid h1 {
    font-size: 1.5rem;
    color: #333;
}

.ct_card {
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    height: 70vh;
    overflow: hidden;
}

.ct_card p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ct_card .stat_enroll {
    color: #fff;
    font-size: 0.8rem;
    width: 45%;
    text-align: center;
    padding: 1px;
    border-radius: 10px;
    border: 1px solid #0c96e2;
    background-color: #0c96e2;
}

.ct_card .stat_closed {
    color: #fff;
    font-size: 0.8rem;
    width: 60%;
    text-align: center;
    padding: 1px;
    border-radius: 10px;
    border: 1px solid #c51f30;
    background-color: #c51f30;
}

.ct_card .stat_pending {
    color: #333;
    font-size: 0.8rem;
    width: 75%;
    text-align: center;
    padding: 1px;
    border-radius: 10px;
    border: 1px solid #53cef9;
    background-color: #53cef9;
}

.ct_card:hover {
    background-color: #0c96e2;
    cursor: pointer;
}

.ct_card_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ct_card img {
    max-width: 50px;
    padding: 10px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.ct_card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ct_card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #c51f30;
    transition: 0.3s;
    margin-top: 10px;
}

.ct_card h4 {
    margin-block: 1rem .5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    transition: 0.3s;
}

.ct_card p {
    margin-bottom: 1rem;
    color: #4d4d4d;
    transition: 0.3s;
}

.ct_card_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.ct_card_footer span {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.9rem;
    font-weight: 550;
    border-radius: 5px;
}

.ct_section_container .pagination {
    display: flex;
    justify-content: center;
    margin: auto;
}

.ct_card_footer span {
    color: #333;
}

.ct_card_footer i {
    color: #333;
    font-size: 0.9rem;
}

.ct_card:hover :is(h5, h4) {
    color: #fff;
}

.ct_card:hover :is(h6, p) {
    color: #fff;
}

.ct_card:hover .ct_card_footer span {
    color: #0c96e2;
    background-color: #fff;
}

.ct_card:hover .stat_enroll{
    background-color: #fff;
    color: #0c96e2;
}

.ct_card:hover .stat_closed{
    background-color: #fff;
    color: #0c96e2;
    border-color: #0c96e2;
}

.ct_card:hover .stat_pending{
    background-color: #fff;
    color: #0c96e2;
}

.ct_card:hover .ct_card_footer i {
    color: #0c96e2;
}


/*------Recruitment SW-------*/

.rec_container {
    width: 90%;
    margin: auto;
}

.rec_section_heading {
    font-size: 40px;
    text-align: center;
    margin-top: 150px;
}

.rec_section_heading:after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background-color: #0c96e2;
    margin: 8px auto 0;
}

.rec_services_cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap; /* Ensures single-line layout on larger screens */
    overflow-x: auto; /* Allows horizontal scroll on smaller screens */
}

.rec_services_card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.5s ease;
}

.rec_services_card:hover {
    transform: translateY(-20px);
    background-color: #0c96e2;
}

.rec_services_card:hover i,
.rec_services_card:hover h3,
.rec_services_card:hover h2,
.rec_services_card:hover p {
    color: #fff;
}

.rec_services_card i {
    font-size: 38px;
    margin-bottom: 20px;
    color: #0c96e2;
}

.rec_services_card h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.rec_services_card p {
    font-size: 15px;
    color: #4d4d4d;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .rec_section_heading {
        font-size: 32px;
    }

    .rec_services_card {
        margin: 10px auto;
    }
}


@media (max-width: 768px) {
    .rec_section_heading {
        font-size: 28px;
    }

    .rec_services_cards {
        flex-direction: column;
        align-items: center; /* Center the cards */
    }

    .rec_services_card {
        width: 90%; /* Full width for smaller screens */
    }

    .rec_services_card i {
        font-size: 30px;
    }

    .rec_services_card h2 {
        font-size: 22px;
    }

    .rec_services_card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rec_section_heading {
        font-size: 24px;
    }

    .rec_services_card {
        width: 100%;
        padding: 15px;
    }

    .rec_services_card i {
        font-size: 28px;
    }

    .rec_services_card h2 {
        font-size: 20px;
    }

    .rec_services_card p {
        font-size: 13px;
    }
}

/*-------Main List-------*/
main {
    font-family: 'Open sans';
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
  }
  
  /* Heading styling */
  main h2 {
    font-size: 2rem;
    color: #0c96e2;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  /* Underline effect for heading */
  main h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #c51f30;
    margin: 8px auto 0;
  }
  
  /* List styling */
  .gradient-list {
    counter-reset: list-counter;
    list-style: none;
    padding: 0;
    width: 70%;
    margin: 0;
  }

  .nih {
    list-style: none;
    padding: 0;
    width: 70%;
    margin: 0;
  }

  .nih li {
    text-align: center;
    font-size: 20px;
  }
  
  .new-publication-header {
    font-size: 1.5rem;
    color: #c51f30; /* Subcolor for emphasis */
    text-align: left;
    margin: 20px 0 10px 0; /* Space above and below */
    font-weight: bold;
    border-bottom: 2px solid #c51f30;
    padding-bottom: 5px;
    width: 100%;
  }
  
  .gradient-list li {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1rem;
    background: #0c96e2;
    border-radius: 8px;
    transition: transform 0.2s ease;
  }
  
  .gradient-list li:hover {
    transform: scale(1.02);
  }
  
  .gradient-list a {
    color: #ffffff;
    text-decoration: none;
    width: 100%; /* Ensures the link fills the list item */
    display: inline-block;
    white-space: normal; /* Allow text wrapping */
  }
  
  .gradient-list a:hover {
    text-decoration: underline;
  }
  
  /* Add a numbered counter */
  .gradient-list li::before {
    counter-increment: list-counter;
    content: counter(list-counter) ".";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
  }
  
  .highlight {
    text-shadow: 1px 1px 5px rgba(255, 255, 0, 0.7); /* Yellow glow effect */
}

  
  /* Responsive styling */
  @media (max-width: 768px) {
    h2 {
      font-size: 1.5rem;
    }
  
    .gradient-list {
      width: 90%;
    }
  
    .gradient-list li {
      padding: 10px 14px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    h2 {
      font-size: 1.3rem;
    }
  
    .gradient-list {
      width: 95%;
    }
  
    .gradient-list li {
      padding: 8px 12px;
      font-size: 0.85rem;
    }
  }
  






/*-------Media Screen Dimension--------*/

@media screen and (max-width: 1499px){
  .serv {
    margin:0 auto;
  }

  .abt_section {
    height: 120vh;
    display: flex;
    justify-content: space-between;
  }

  .contactus {
    margin:0 auto;
    margin-bottom: 20px;
  }

  .ct-about {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 10px;
  }

  .mis_container {
        height: 60vh;
    }

    .crs {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .ct_card {
        height: auto;
    }

    .ct-image img {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .ct_htp {
        margin: auto;
    }
}

@media screen and (max-width: 1300px){
    header .navbar {
        border-bottom: 20px;
    }
    header .navbar ul {
        float: left;
        margin-right: 0px;
        max-height: 500px;
        overflow-y: auto;
    }

    header .navbar ul::-webkit-scrollbar {
        width: 8px;
    }

    header .navbar ul::-webkit-scrollbar-thumb {
        background-color: #aeaeae;
        border-radius: 10px;
    }

    header .navbar ul::-webkit-scrollbar-thumb:hover {
        background-color: #aeaeae;
    }

    header .navbar .crs_logo{
        padding-left: 30px;
        width: auto;
    }

    header .navbar ul li {
        display: block;
        width: 100%;
    }

    header .navbar ul ul li {
        display: block;
        width: 100%;
    }

    header .navbar ul ul {
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    header .navbar ul ul ul li {
        position: static;
    }

    header .navbar ul ul li {
        border-bottom: 0px;
        padding-left: 40px;
    }

    header .navbar ul ul a {
        padding-left: 22px;
    }

    header .navbar ul ul ul a {
        padding-left: 80px;
    }

    header .navbar .show {
        display: block;
        color: #0c96e2;
        font-size: 15px;
        padding: 0 20px;
        line-height: 70px;
        cursor: pointer;
    }

    header .navbar .show:hover {
        color: #0c96e2;
    }

    header .navbar .icons {
        display: block;
        color: #0c96e2;
        position: absolute;
        right: 40px;
        line-height: 70px;
        font-size: 25px;
        cursor: pointer;
    }

    header .navbar ul li a:hover {
        box-shadow: none;
    }

    header .navbar .show + a, header .navbar ul {
        display: none;
    }

    [id^=crs_btn]:checked + ul {
        display: block;
    }

    .serv {
        margin-top: 500px;
    }

    .mis_container {
        width: 90%;
        margin: 20px auto;
      }

    .mis_content-section {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }

    .mis_image_section {
        float: none;
        width: 100%;
    }

    .mis_image_section img {
        width: 100%;
        height: auto;
        display: block;
        margin-top: 30px;
    }

    .mis_content-section .mis_title {
        text-align: center;
        font-size: 19px;
    }

    .mis_content-section .mis_content .mis_button {
        text-align: center;
        margin-bottom: 20px;
    }

    .mis_content-section .mis_content .mis_button a{
        padding: 9px 30px;
    }

    .dots {
        top: 650px;
    }

    .crs-title {
        margin-top: 500px;
    }

    .ct_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
}

@media screen and (max-width: 1164px){

    .serv-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 1101px){

    .contact-in:nth-child(1) {
        flex: 30%;
        margin-top: 20px;
    }

    .contact-in:nth-child(2) {
        flex: 50%;
    }

    .contact-in:nth-child(3) {
        flex: 45%;
    }
    
    .ct-about {
        grid-template-columns: 1fr;
        display: grid;
        margin: auto;
        width: 70%;
      }
      .ct-content {
        margin-top: -100px;
      }

      .ct-image img {
        margin:auto;
      }

      .ct_htp img {
        margin:auto;
    }

    .ptm_container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        align-items: center;
        text-align: center;
        grid-gap: 1rem;
        padding: 1rem 80px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 990px){
    .tm_container {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 50px;
    }

    .latest-news-container {
        flex-direction: column;
        align-items: stretch;
      }
    
      .sliding-news,
      .steady-news {
        width: 100%;
        height: auto;
      }
    
      .sliding-news {
        height: auto;
      }
    
      .sliding-news-item img {
        height: auto;
        max-height: 400px;
      }
    
      .sliding-news-header {
        font-size: 1.3em; /* Slightly smaller for tablets */
        padding: 4px 8px;
      }
    
      .sliding-news-content {
        padding: 15px 20px;
      }
    
      .sliding-news-content h2 {
        font-size: 1em;
      }
    
      .steady-news {
        gap: 20px;
        height: auto;
      }
    
      .steady-news-header {
        font-size: 1.3em;
        padding-bottom: 4px;
      }
    
      .steady-news-item {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
      }
    
      .steady-news-image {
        width: 100%;
        height: auto;
        max-height: 200px;
        margin: 0 0 10px 0;
      }
    
      .steady-news-content h3 {
        font-size: 1em;
      }
    
      .steady-news-content p {
        font-size: 0.9em;
      }
    }


@media (max-width: 940px) {
    .job-list-container .careers {
        grid-template-columns: 1fr 1fr;
        margin-left: 20px;
        margin-right: 20px;
    }

    .ct_section_container {
        margin-top: 100px;
    }

    
      .ct_filter {
        display: flex;        
        flex-direction: column;
        align-items: center;
        margin: auto;
    }

    .ct_filter label,
    .ct_filter select,
    .ct_filter input {
        margin-bottom: 10px;
    }

}

@media screen and (max-width: 912px){

    .retention-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .abt_section {
        min-height: 70vh;
        margin-bottom: 300px;
      }

}

@media screen and (max-width: 853px){

    .serv {
        margin: 68vw 8vw 18vw 8vw;
      }
    
      .contactus {
        margin: 8vw 8vw 8vw 8vw;
      }

      .post-container_dm {
        margin-left: 100px;
      }

        .abt_section {
            margin-bottom: 400px;
    }

}

@media screen and (max-width: 830px){
    .contract-wrap .contact-in:nth-child(1) {
        flex: 35%;
    }

    .contract-wrap .contact-in:nth-child(2) {
        flex: 45%;
    }
    .contract-wrap .contact-in:nth-child(3) {
        flex: 25%;
    }
    
    .contactus h1{
        font-size: 28px;

    }

}

@media screen and (max-width: 768px){
    .slider {
        height: 400px;
    }

    .buttons {
        top: 200px;
    }

    .dots {
        top: 360px;
    }

    .gal_container .popup-image img {
        width: 95%;
    }

    .ct_grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .ptm_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media screen and (max-width:744px) {
      .contactus {
        margin: 10vw 8vw 8vw 8vw;
      }

      .abt_section {
        min-height: 60vh;
        margin-bottom: 550px;
      }
}

@media screen and (max-width: 698px){

    .contactus h1{
        font-size: 25px;
    }

    .contactus h2{
        font-size: 25px;
    }

    .contract-wrap .contact-in:nth-child(1) {
        flex: 25%;
        padding: 20px;
    }

    .contract-wrap .contact-in:nth-child(2) {
        flex: 35%;
        padding: 20px;
    }
    .contract-wrap .contact-in:nth-child(3) {
        flex: 15%;
        padding: 20px;
    }

    .ct_htp {
        width: auto;
        height: auto;
        margin: auto;
      }

}

@media screen and (max-width: 660px) {

    .serv {
        margin: 88vw 8vw 18vw 8vw;
      }
    
      .contactus {
        margin: 35vw 8vw 18vw 8vw;
      }


    .job-list-container .careers {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        
    }

    .retention-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact {
        margin-bottom: 35%;
    }

    .tm_container {
        grid-template-columns: 1fr;
    }

    .ct-image img {
        margin:auto;
    }
}

@media (max-width: 600px) {
    #news-section h2 {
        font-size: 1.5em;
    }

    .news-title {
        font-size: 1em;
    }

    .news-date {
        font-size: 0.85em;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 590px){
    .mis_content li{
        font-size: 12px;
    }

    .serv {
        margin: 88vw 8vw 88vw 8vw;
      }
    
    .serv-row {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        }

        header .navbar .crs_logo {
        width: auto;
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .contactus h1{
        font-size: 15px;
    }

    .contactus h2{
        font-size: 25px;
    }

    #career_banner h2{
        font-size: 35px;
    }

    .contract-wrap .contact-in:nth-child(1) {
        flex: 15%;
        padding: 20px;
    }

    .contract-wrap .contact-in:nth-child(2) {
        flex: 25%;
        padding: 20px;
    }
    .contract-wrap .contact-in:nth-child(3) {
        flex: 10%;
        padding: 20px;
    }

    .sliding-news-header,
  .steady-news-header {
    font-size: 1.1em;
  }

  .sliding-news-content h2 {
    font-size: 0.95em;
  }

  .steady-news-content h3 {
    font-size: 0.95em;
  }

  .steady-news-content p {
    font-size: 0.85em;
  }
  
}

@media screen  and (max-width: 543px) {
    .serv {
        margin-top: 100vw;
    }
    .contract-wrap .contact-in:nth-child(2) {
        flex: 95%;
        gap: 20px;
        margin-top: 20px;
    }
    .contact {
        padding-bottom: 1600px;
    }

    #career_banner h1 {
        font-size: 30px;
    }

    .abt_section {
        min-height: 50vh;
        margin-bottom: 700px;
    }

    .ct-content{
        margin: auto;
    }

    .ptm_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }

}

@media screen and (max-width: 470px){
    .contactus {
        margin: 100vw 8vw 8vw 8vw;
    }

    .serv {
        margin: 120vw 8vw 120vw 8vw;
    }

    .abt_section {
        margin-bottom: 750px;
    }
}

@media screen and (max-width: 454px){
    .abt_section {
        margin-bottom: 900px;
    }
}


@media screen and (max-width: 435px){
    .serv-row {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        }

    .retention-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ct_section_container {
        margin:auto;
    }
    
    .ct_grid {
        margin-top: 50px;
    }

    .sliding-news-header,
  .steady-news-header {
    font-size: 0.9rem;
  }

  .sliding-news-content h2 {
    font-size: 0.65em;
  }

  .steady-news-content h3 {
    font-size: 0.65em;
  }

  .steady-news-content p {
    font-size: 0.65em;
  }
}

@media screen and (max-width: 414px) {
    .serv-container{
        margin-top: 30%;
    }

    .serv-row h2 {
        font-size: 15px;
    }

    header .navbar .crs_logo {
        width: auto;
    }

    #career_banner h2{
        font-size: 35px;
    }

    .mis_section {
        height: 80vh;
    }

    .ct_filter{
        width: auto;
    }
}

@media screen and (max-width: 390px) {
    .person h1 {
        font-size: 20px;
    }

    .contactus {
        margin: 150vw 0 30vw 8vw;
    }

    .abt_section {
        margin-bottom: 1050px;
    }
}

@media screen and (max-width:375px) {
    .crs {
        margin-left: 20px;
    }

    .mis_container {
        width: 100%;
        display: block;
        margin: auto;
        padding-top: 18px;
    }

    .mis_content-section {
        float: none;
        width: 80%;
        display: block;
        margin: auto;
    }

    .mis_image_section {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }

    .mis_content-section .mis_title {
        text-align: center;
        font-size: 9px;
    }

    .mis_content-section .mis_content .mis_button {
        text-align: center;
        margin-bottom: 12px;
    }

    .mis_content-section .mis_content .mis_button a{
        padding: 4px 10px;
    }

    .contactus h1{
        font-size: 15px;
    }

    .contactus h2{
        font-size: 20px;
    }

    .serv-container {
        margin-top: 80%;
    }

    .post-filter {
        margin: 10px 10px;
    }

}

@media screen and (max-width:360px) {
    

    #career_banner h2{
        font-size: 25px;
    }

    .contactus {
        margin: 180vw 0 30vw 8vw;
    }
}

@media screen and (max-width:351px) {
    .abt_section {
        margin-bottom: 1250px;
    }
}

@media screen and (max-width:344px) {
    .serv-row {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .person h1 {
        font-size: 20px;
    }

    .person h2 {
        font-size: 17px;
    }

    header .navbar .crs_logo {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .ct_section_container {
        margin:auto;
    }

}

@media screen and (max-width:335px) {
    .contactus {
        margin: 180vw 0 30vw 13vw;
    }

    .ct_section_container {
        margin: auto;
    }

    .ct-content {
        margin:auto;
    }

}

@media screen and (max-width:315px) {
    .crs {
        margin: 50vw;
    }
}

@media screen and (max-width:305px) {
    .abt_section {
        margin-bottom: 1450px;
    }
}

@media screen and (max-width:296px) {


    header .navbar .crs_logo{
       width: auto;
    }

    header .navbar {
        width: 100%;
    }
}

@media screen and (max-width:275px) {


    header .navbar .crs_logo{
       width: auto;
    }

    header .navbar {
        width: 115%;
    }

    .abt_section {
        margin-bottom: 1650px;
    }
}

@media screen and (max-width:253px) {
    .abt_section {
        margin-bottom: 1800px;
    }
}

@media screen and (max-width:229px) {
    

    header .navbar .crs_logo{
       width: auto;
    }

    header .navbar {
        width: 110%;
    }

    .abt_section {
        margin-bottom: 2000px;
    }
}

