
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: "Roboto", sans-serif;
}



/* PREMIUM HERO SECTION */
.hero-banner {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: linear-gradient(-45deg, #c7e0e6, #e8dfc7, #c7e0e6);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  height: 700px;
}

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* GRID */
.hero-inner {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 90px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TEXT */
.hero-small {
  font-size: 14px;
  font-weight: 600;
  color: #0d5ea6;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin: 20px 0;
  color: #0b1b2b;
}

.hero-content p {
  font-size: 18px;
  color: #5f6b7a;
  max-width: 520px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.hero-btn-primary a {
  background: #0d5ea6;
  color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.hero-btn-primary a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px rgba(13,94,166,.3);
}

.hero-btn-outline a {
  border: 2px solid #ff3b3b;
  color: #ff3b3b;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}

.hero-btn-outline a:hover {
  background: #ff3b3b;
  color: #fff;
  transform: translateY(-4px);
}

/* FLOATING IMAGE */
.hero-image {
  animation: floatImage 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 560px;
  width: 100%;
}

@keyframes floatImage {
  0% {transform: translateY(0);}
  50% {transform: translateY(-20px);}
  100% {transform: translateY(0);}
}

/* GLASS CARD */
.glass {
  backdrop-filter: blur(15px);
  background: rgba(255,255,255,.7);
  border-radius: 20px;
  padding: 25px 35px;
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

.hero-card {
  position: absolute;
  right: 25%;
  top: 35%;
  text-align: center;
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
  100% {transform: translateY(0);}
}

.hero-card strong {
  font-size: 36px;
  font-weight: 800;
}

.hero-card span {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    display: none;
  }
}

header .container-fluid,
.navbar .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-title,
h1.page-title,
.block-page-title-block {
  display: none !important;
}
.field__label {
  display: none;
}
.site-header {
  border-bottom: 1px solid #eee;
}

.navbar {
  padding: 15px 40px;
}

.navbar-brand img {
  max-height: 50px;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 15px;
}


.advantages-section {
  padding: 80px 0;
  background: #f6f7f9;
  text-align: center;
}

.advantages-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 60px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.adv-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: all .25s ease;
  height: 100%;
}

.adv-card:hover {
  transform: translateY(-8px);
}

.adv-icon img {
  width: 64px;
  margin-bottom: 20px;
}

.adv-title {
  font-weight: 600;
  color: #0d5ea6;
  font-size: 16px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}


/* Remove Drupal field wrappers from grid */
.advantages-grid > .field {
  display: contents;
}

.advantages-grid .field__items {
  display: contents;
}

.advantages-grid .field__item {
  display: contents;
}
/* FULL WIDTH BLUE SECTION */
.about-section {
  background: linear-gradient(135deg,#0d5ea6,#1e88e5);
  padding: 100px 0;
  color: white;
}

/* CONTAINER */
.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* LEFT SIDE */
.about-left {
  position: relative;
}

/* MAIN IMAGE */
.about-image-main img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

/* SMALL FLOAT IMAGE */
.about-image-small {
  position: absolute;
  bottom: -50px;
  right: 20px;
}

.about-image-small img {
  width: 300px;
  border-radius: 16px;
  border: 6px solid white;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

/* RIGHT SIDE */
.about-right {
  max-width: 520px;
}

/* TITLE */
.about-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

/* DESCRIPTION */
.about-desc {
  margin-top: 25px;
  opacity: .9;
  line-height: 1.8;
  border-left: 3px solid #ff3b3b;
  padding-left: 20px;
}

/* FEATURES LIST */
.about-features {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-features {
  margin-top: 35px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon img {
  width: 40px;
  min-width: 40px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.feature-desc {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

/* BUTTON */
.about-button a {
  display: inline-block;
  margin-top: 40px;
  background: #ff3b3b;
  padding: 14px 32px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.about-features .field__items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-features .field__item {
  width: 100%;
}
.courses-section {
  padding: 80px 0;
  background: #f6f7f9;
  width: 100%;
}

.courses-title {
  text-align: center;
  font-size: 36px;
  color: #0d5ea6;
  margin-bottom: 60px;
}

/* GRID ONLY HERE */
.courses-grid .field__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.course-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 100%;
}

.course-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.course-content {
  padding: 25px;
}

.course-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.course-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-btn a {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #0d5ea6;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.course-btn a:hover {
  background: #0d5ea6;
  color: white;
}

/* Tablet */
@media (max-width: 992px) {
  .courses-grid .field__items {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .courses-grid .field__items {
    grid-template-columns: 1fr;
  }
}
/* Outer wrapper gives colored outline */
.course-card-wrapper {
  padding: 14px;
  border-radius: 20px;
}

/* Individual colors */
.card-green {
  background: #cfead9;
}

.card-purple {
  background: #e5c9e9;
}

.card-beige {
  background: #efe2cf;
}

.card-blue {
  background: #cfe2f3;
}
.why-section {
  padding: 90px 0;
  background: #f2faf7;
}

.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 60px;
}

/* Yellow Highlight */
.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: #ffc107;
  z-index: -1;
  border-radius: 4px;
}

/* GRID FIX */
.why-grid .field__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-grid {
  width: 100%;
}

/* CARDS */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-icon img {
  width: 70px;
  margin-bottom: 20px;
}

.why-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid .field__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid .field__items {
    grid-template-columns: 1fr;
  }
}

/* Hide Drupal Labels */
.field__label {
  display: none;
}

.faculty-section {
  padding: 90px 0;
   background: #f5f5f5;
}

.faculty-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 60px;
}
.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 8px;
  background: #ffc107;
  z-index: -1;
  border-radius: 4px;
}
.faculty-grid .field__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.faculty-card {
  text-align: center;
}
.faculty-image {
  background: #2b6e9c;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
}

.faculty-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}
.faculty-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.faculty-subject {
  font-size: 15px;
  color: #666;
}
@media (max-width: 992px) {
  .faculty-grid .field__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .faculty-grid .field__items {
    grid-template-columns: 1fr;
  }
}
.field__label {
  display: none;
}

.stats-section {
  padding: 60px 0;
}
.stats-section .container {
  max-width: 1300px;
}


.stats-box {
  background: linear-gradient(90deg,#0d5ea6,#1e88e5);
  border-radius: 20px;
  padding: 70px 60px;
  color: white;
  font-size: 20px;
}

.stats-grid .field__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  text-align: center;
}

.stats-item h3 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
}

.stats-item p {
  margin-top: 12px;
  font-size: 18px;
  opacity: 0.95;
}

/* Divider lines */
.stats-item {
  position: relative;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid .field__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stats-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-grid .field__items {
    grid-template-columns: 1fr;
  }
}
.field__label {
  display: none;
}

.campuses-section {
  padding: 90px 0;
  background: #f6f7f9;
}

.campuses-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 15px;
}

.campus-desc{
  max-width: 720px;
  margin: 20px auto 50px auto;
  text-align: center;
  font-size: 17px;
  color: #6c757d;
  line-height: 1.7;
}

.campuses-grid .field__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.campus-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.campus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.campus-icon {
  font-size: 34px;
  color: #0d5ea6;
  margin-bottom: 15px;
}
.campus-name {
  font-size: 18px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 10px;
}

.campus-text {
  font-size: 15px;
  color: #666;
}
@media (max-width: 992px) {
  .campuses-grid .field__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .campuses-grid .field__items {
    grid-template-columns: 1fr;
  }
}

.hero-info-section{
  padding:120px 0;
  background: linear-gradient(120deg,#4c78a8,#d94b5a);
  position:relative;
  overflow:hidden;
}
.hero-info-inner{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  align-items:center;
  gap:60px;
}
.hero-info-title{
  font-size:42px;
  font-weight:700;
  color:#fff;
  line-height:1.25;
  margin-bottom:20px;
}
.hero-info-desc{
  font-size:17px;
  color:white;
  margin-bottom:25px;
}
.hero-info-list{
  margin-bottom:30px;
    color:#fff;

}

.hero-bullet-item{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  align-items:flex-start;
}

.bullet-icon{
  width:26px;
  height:26px;
  background:#ffffff33;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:#fff;
}

.bullet-text{
  color:#fff;
  font-size:16px;
  line-height:1.6;
}
.hero-info-buttons{
  display:flex;
  gap:16px;
}

.btn-primary a{
  background:#ff3b3b;
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.btn-light a{
  background:#fff;
  color:#333;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
.hero-info-image img{
  width:100%;
  max-width:520px;
}
@media(max-width:992px){
  .hero-info-inner{
    grid-template-columns:1fr;
    text-align:center;
    
  }

  .hero-info-buttons{
    justify-content:center;
  }

  .hero-bullet-item{
    justify-content:center;
  }
}
.faq-section {
  padding: 100px 0;
  background: #f6f7f9;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.faq-title {
  font-size: 34px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 40px;
}
.faq-left img {
  width: 100%;
  max-width: 500px;
}
.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background: #176fa3;
  color: #fff;
  padding: 18px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  float: right;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-left {
    text-align: center;
  }
}

/* ===============================
   FOOTER MAIN BACKGROUND
================================= */

.site-footer {
  position: relative;
  background: 
    linear-gradient(
      rgba(10, 45, 65, 0.92),
      rgba(10, 45, 65, 0.92)
    ),
    url('/sites/default/files/2026-02/Design-concept_0.jpg') center center / cover no-repeat;
  color: #fff;
}

/* ===============================
   FOOTER TOP SECTION
================================= */

.footer-top {
  padding: 80px 0;   /* more spacing like reference */
}

/* ===============================
   FOOTER GRID
================================= */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;  /* bigger gap like original */
}

/* ===============================
   HEADINGS
================================= */

.footer-col h3,
.footer-col h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

/* ===============================
   TEXT STYLING
================================= */

.footer-col p {
  color: #d4e0ea;
  font-size: 15px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li::before {
  content: "›";
  margin-right: 8px;
  color: #4da6ff;
}

.footer-col ul li a {
  color: #d4e0ea;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #4da6ff;
}

/* ===============================
   LOGO
================================= */

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* ===============================
   SOCIAL ICONS
================================= */

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #4da6ff;
  border-color: #4da6ff;
}

/* ===============================
   FOOTER BOTTOM
================================= */

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  margin-top: 40px;
}
.latest-news {
  padding: 100px 0;
  background: #f3f6f7;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0d5ea6;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffb703;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
}

.news-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.news-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0;
}

.news-card p {
  font-size: 15px;
  color: #666;
}

.news-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #0d5ea6;
  text-decoration: none;
}