.hero {
  position: relative;
  min-height: 60vh;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
/* .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 11, 66, 0.9), rgba(0, 11, 66, 0.7));
  } */

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
}

.hero__description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero__text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero__play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #000b42;
  border: 5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 11, 66, 0.3);
}

.hero__play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #001166;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__play-icon {
  color: #ffffff;
  font-size: 30px;
  margin-left: 5px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__description,
  .hero__text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__play-button {
    margin: 0 auto;
  }
}

.about-section {
  padding: 40px 0;
  background: #fff;
  margin-bottom: 100px;
}

.about-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  position: relative;
}

/* Tabs Navigation */
.about-tabs {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 20px 0;
  border: 1px solid #e0e0e0;
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: fit-content;
}

.about-tabs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-tabs__item {
  margin: 0;
  padding: 0;
}

.about-tabs__item a {
  display: block;
  padding: 12px 24px;
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.about-tabs__item.active a {
  color: #fff;
  background: #000b42;
  font-weight: 600;
}

.about-tabs__item:hover a {
  color: #fff;
  background-color: #000b42;
}

/* Content Area */
.about-content {
  padding: 20px 0;
}

.about-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.about-content__title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.about-content__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #000b42;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s ease;
  margin: 0 auto;
}

.about-content__link:hover {
  background: #001666;
  color: white;
}

.about-content__tabs {
  color: #64748b;
  line-height: 1.6;
}

.about-content__tab {
  display: none;
}

.about-content__tab.active {
  display: block;
}

.about-content__tab p {
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .about-section__container {
    grid-template-columns: 220px 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-section__container {
    grid-template-columns: 1fr;
  }

  .about-content__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-tabs {
    margin-bottom: 30px;
    position: static;
  }
}

footer {
  background-color: #004d66;
  padding: 50px 0 20px;
  color: white;
}

footer h2 {
  color: #00aaff;
  font-size: 24px;
  margin-bottom: 20px;
}

footer .social-icons a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

footer iframe {
  border-radius: 8px;
}

.map-container {
  padding: 20px;
}

.core_studies_images {
  height: 200px;
  margin-bottom: 20px;
  width: 500px;
  object-fit: cover;
  border-radius: 8px;
}

/* News Section Styles */
.news {
  padding: 80px 0;
  background-color: #fff;
}

.news__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.news__subtitle {
  color: #333;
  font-size: 14px;
  text-align: center;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.news__title {
  color: #0f172a;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.news__description {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.article-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.article-card--small {
  display: flex;
  flex-direction: row;
}

.article-card--small .article-card__image {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.news__side-articles {
  display: grid;
  gap: 14px;
}

.article-card__content {
  padding: 20px;
}

.article-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.article-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.news__button {
  background: #0f172a;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.news__button:hover {
  background: #1e293b;
  color: white;
  text-decoration: none;
}

.arrow-icon {
  font-size: 18px;
}

@media (max-width: 992px) {
  .news__container {
    padding: 0 40px;
  }
}

.news_section_container {
  display: grid;
  grid-template-columns: 270px 1fr;
  margin: 0px 100px;
  gap: 24px;
}

@media (max-width: 768px) {
  .news__grid {
    grid-template-columns: 1fr;
  }

  .news__container {
    padding: 0 20px;
  }

  .article-card--small {
    flex-direction: column;
  }

  .article-card--small .article-card__image {
    width: 100%;
    height: 200px;
  }
}

.frame-type-uploads {
  margin: 60px 100px;
  margin-bottom: 300px;
}

.ce-uploads > li {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: white;
  /* border-radius: 8px; */
  overflow: hidden;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  margin-bottom: 2rem;
}

.news-img-wrap {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

.news-img-wrap img {
  max-width: 100%;
  height: 300px;
  display: block;
  object-fit: initial;
}

.news-content {
  padding: 1.5rem 0;
  font-family: "Montserrat", sans-serif;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-title a {
  color: #333;
  text-decoration: none;
}

.news-teaser {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.news-link {
  margin-top: 1rem;
}

.read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.news-grid-container {
  width: 100%;
  padding: 40px 160px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 0 auto;
}

/* News item styling */
.news-article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.news-article:hover {
  transform: translateY(-5px);
}

.news-img-wrap {
  width: 100%;
  overflow: hidden;
}

.news-img-wrap img {
  width: 100%;
  height: 600px !important;
}

.news-img-wrap-landing img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
}

.news-text-wrap {
  padding: 20px;
}

.news-header h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.news-teaser {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
}

.back-button:hover {
  background: #333;
}

@media (max-width: 768px) {
  .news-grid-container {
    padding: 20px 30px;
  }

  .news-grid {
    gap: 30px;
  }
}

@media (min-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-detail-container {
  font-family: "Montserrat", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.3;
}

.news-text-wrap {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 20px 0;
}

.teaser-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 30px;
}

.img-responsive {
  width: 100%;
  height: auto;
  margin: 30px 0;
}

.back-button {
  margin-top: 40px;
}

.back-button a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background-color: #333;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.back-button a:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 24px;
  }

  .news-text-wrap {
    font-size: 15px;
  }

  .teaser-text {
    font-size: 16px;
  }
}

/* News Detail Styles */

.news-detail-container {
  font-family: "Montserrat", sans-serif;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.header h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.3;
  text-transform: none;
}

.news-list-date {
  display: block;
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 500;
}

.news-text-wrap {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 30px 0;
}

.teaser-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  margin: 20px 0 30px 0;
}

.img-responsive {
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 4px;
}

.back-button {
  margin: 40px 0;
}

.back-button a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background-color: #333;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.back-button a:hover {
  background-color: #555;
  color: #fff;
  text-decoration: none;
}

/* Fix spacing issues */
.news-detail-container p {
  margin: 0 0 20px 0;
}

/* Fix image container */
.news-img-wrap {
  margin: 0;
  padding: 0;
  width: 100%;
}

.news-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Media queries for news detail */
@media (max-width: 768px) {
  .news-detail-container {
    margin: 20px auto;
    padding: 0 15px;
  }

  .header h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .news-text-wrap {
    font-size: 15px;
  }

  .teaser-text {
    font-size: 16px;
  }

  .img-responsive {
    margin: 20px 0;
  }
}

.latest-news-section {
  padding: 0 160px;
}

.latest-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.news-navigation {
  display: flex;
  gap: 1rem;
}

.nav-arrow {
  background: white;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #f5f5f5;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* News item card styles */
.news-grid .news-article {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-grid .news-article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-grid .article-content {
  padding: 1.5rem;
}

.news-grid .article-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-grid .article-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.news-grid .article-text {
  color: #444;
  margin-bottom: 1rem;
}

.news-grid .read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

/* RCA Admissions Section */
.rca-admissions {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.rca-admissions__container {
  max-width: 80rem; /* Equivalent to 7xl in Tailwind */
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align content to start */
}

.rca-admissions__header {
  margin-bottom: 20px;
}

.rca-admissions__title {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  text-align: left; /* Align title to the start */
}

.rca-admissions__content {
  text-align: left; /* Align text to the start */
}

.rca-admissions__content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Call-to-Action Button */
.rca-admissions__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #0056b3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

.rca-admissions__cta:hover {
  background-color: #003d80;
}

.rca-admissions__icon {
  margin-left: 8px;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rca-admissions__container {
    padding: 30px;
  }

  .rca-admissions__title {
    font-size: 24px;
  }

  .rca-admissions__content p {
    font-size: 14px;
  }

  .rca-admissions__cta {
    font-size: 14px;
    padding: 10px 20px;
  }
}


.contact-us {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-us__title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.contact-us__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #4CAF50;
  outline: none;
}

textarea {
  resize: vertical;
}

button.form__submit-btn {
  padding: 1rem;
  background-color: #4CAF50;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

button.form__submit-btn:hover {
  background-color: #45a049;
}

button.form__submit-btn:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .contact-us {
      padding: 1rem;
  }

  .contact-us__title {
      font-size: 1.8rem;
  }

  button.form__submit-btn {
      font-size: 1rem;
  }
}


.rca-contact-section {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin-bottom: 5vh;
}

.rca-contact-info {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(135deg, #010a35, #01052a);
  color: white;
  padding: 40px;
}

.rca-contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
}

.rca-contact-info h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: white;
}

.rca-info-item {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
}

.rca-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  text-align: center;
  line-height: 24px;
  font-style: normal;
}

.rca-contact-form {
  flex: 2;
  min-width: 300px;
  padding: 40px;
}

.rca-contact-form h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}

.rca-contact-form h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #010a35;
}

.rca-form-group {
  margin-bottom: 25px;
}

.rca-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.rca-form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.rca-form-control:focus {
  border-color: #010a35;
  box-shadow: 0 0 0 3px rgba(1, 10, 53, 0.1);
  outline: none;
}

textarea.rca-form-control {
  min-height: 150px;
  resize: vertical;
}

.rca-btn {
  background: #010a35;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rca-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 10, 53, 0.2);
}

.rca-btn:active {
  transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
  .rca-contact-section {
    flex-direction: column;
  }
  
  .rca-contact-info, .rca-contact-form {
    padding: 30px;
  }
}