

/*  SUA branding */


.sua-banner-container {
  background-color: #4BC84A; /* SUA green */
  padding: 10px 0;
  border-top: 3px solid #FFD700; /* SUA yellow */
}

.sua-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Enables wrapping on small devices */
  gap: 15px;
  padding: 10px 20px;
}

.sua-banner-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.sua-banner-text {
  flex: 1;
  text-align: center;
}

.sua-country {
  font-size: 1rem;
  color: #FFD700; /* yellow */
  font-weight: 600;
  letter-spacing: 1px;
}

.sua-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 5px 0 0;
}

/* ✅ Responsive behavior for small devices */
@media (max-width: 768px) {
  .sua-banner {
    flex-direction: column;
    text-align: center;
  }

  .sua-banner-img {
    height: 70px;
  }

  .sua-title {
    font-size: 1.5rem;
  }

  .sua-country {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .sua-banner-img {
    height: 60px;
  }

  .sua-title {
    font-size: 1.3rem;
  }

  .sua-country {
    font-size: 0.85rem;
  }
}



/* Browse programs */
/* Add this to your theme's CSS file */

/* SUA Programme Search Block Styles */
.sua-programme-search-block {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px 20px;
  border-radius: 15px;
  margin: 30px 0;
  color: white;
}

.programme-search-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.programme-search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .programme-search-form {
    flex-direction: row;
    align-items: stretch;
  }
}

.search-input-wrapper {
  flex: 1;
}

.programme-search-input {
  border-radius: 10px !important;
  border: none !important;
  padding: 15px 20px !important;
  font-size: 1.1rem !important;
  height: auto !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.programme-search-input:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.search-buttons-wrapper {
  display: flex;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .search-buttons-wrapper {
    flex-direction: row;
  }
}

.btn-search-programme,
.btn-browse-programme {
  padding: 15px 25px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 140px;
  transition: all 0.3s ease !important;
}

.btn-search-programme {
  background: #ff6b35 !important;
  color: white !important;
}

.btn-search-programme:hover {
  background: #e55a2b !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-browse-programme {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-browse-programme:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.search-icon::before {
  content: "🔍";
  margin-right: 8px;
  font-size: 0.9em;
}

.browse-icon::before {
  content: "☰";
  margin-right: 8px;
  font-size: 0.9em;
}

/* Popular Searches */
.popular-searches {
  text-align: center;
}

.popular-searches-label {
  opacity: 0.9;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.popular-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.popular-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s ease;
  display: inline-block;
}

.popular-tag:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .programme-search-title {
    font-size: 2rem;
  }
  
  .search-buttons-wrapper {
    flex-direction: column;
  }
  
  .btn-search-programme,
  .btn-browse-programme {
    width: 100%;
  }
  
  .popular-tags-wrapper {
    gap: 0.3rem;
  }
  
  .popular-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
/* Education */
/* === SUA Degree Section Styling === */
.sua-degree-section {
  background-color: #00C000; /* SUA green background */
  color: white;
}

/* Title and text */
.sua-degree-section .sua-title {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Degree option links */
.sua-degree-section .sua-option {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 12px 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Hover effect - golden yellow text */
.sua-degree-section .sua-option:hover {
  color: #FFD700;
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

/* "Next" button style */
.sua-degree-section .btn-sua-next {
  background-color: #FFD700;
  color: #111;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* Button hover - invert to match theme */
.sua-degree-section .btn-sua-next:hover {
  background-color: white;
  color: #006400;
}


/* Campus Life Section */
.sua-campus-life {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sua-campus-life .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  border-left: 5px solid #28a745;
  padding-left: 12px;
  margin-bottom: 20px;
}

.sua-campus-life .icon-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.sua-campus-life .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sua-campus-life .icon {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sua-campus-life h5 {
  margin: 0;
  font-weight: 600;
  color: #2c3e50;
}

.sua-campus-life p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #6c757d;
}

.sua-campus-life .btn-success {
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.sua-campus-life .btn-success:hover {
  background-color: #218838;
}





/* Research and innovation*/

/* Research & SDG Section Styles */
.research-sdg-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.research-card,
.sdg-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.research-card:hover,
.sdg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.section-header {
    padding: 30px 30px 20px;
    position: relative;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #ff6b35;
    font-size: 1.5rem;
}

.section-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #2c5530);
    border-radius: 2px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.research-image,
.sdg-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.research-card:hover .research-image,
.sdg-card:hover .sdg-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.content-body {
    padding: 25px 30px 30px;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.highlight-green {
    color: #2c5530;
    font-weight: 600;
    background: rgba(44, 85, 48, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.achievement-box {
    background: linear-gradient(135deg, #fff9db, #ffec99);
    border: 2px solid #ffd43b;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sdg-achievement {
    background: linear-gradient(135deg, #d0ebff, #a5d8ff);
    border-color: #4dabf7;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sdg-achievement .achievement-icon {
    background: #2c5530;
}

.achievement-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.achievement-text {
    font-size: 0.9rem;
    color: #495057;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e67700;
}

.sdg-achievement .achievement-number {
    color: #2c5530;
}

.sdg-focus {
    margin: 25px 0;
}

.focus-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 12px;
}

.focus-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.focus-badge {
    background: rgba(44, 85, 48, 0.1);
    color: #2c5530;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(44, 85, 48, 0.2);
}

.action-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.btn-read-more {
    background: #2c5530;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #ff6b35;
    color: white;
    transform: translateX(5px);
}

.stats-preview {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c5530;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .research-sdg-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .action-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stats-preview {
        justify-content: center;
    }
    
    .achievement-box {
        flex-direction: column;
        text-align: center;
    }
    
    .focus-items {
        justify-content: center;
    }
}


/* news and events */

.footer-box {
  min-height: 280px;
  background-color: #f9fdf9;
  border-top: 4px solid #198754;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.announcement-box {
  background-color: #fdfdf9;
  border-top: 4px solid #FFD700;
}
.event-box {
  background-color: #f9fdf9;
  border-top: 4px solid #198754;
}
.footer-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
  text-align: left;
}


/*    SUA MAP*/
.footer-map {
  padding: 20px 0;
  background: #f8f9fa; /* Light background */
  text-align: center;
}

.footer-map h5 {
  color: #198754; /* Bootstrap green */
  font-weight: 600;
}

.footer-map iframe {
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


 


/* Stats Section Styling */
.stats-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
 font-size: 1.15rem;   /* Increase overall font size */
    line-height: 1.6;

}

.stats-box {
  border-right: 1px solid #ddd;
}

.stats-box:last-child {
  border-right: none;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e7d32; /* green */
}

.stat-label {
  font-size: 1.1rem;
  color: #f9a825; /* yellow */
}

.stats-section h2 {
  color: #2e7d32; /* green title */
  font-weight: 700;
}

.btn-readmore {
  background-color: #2e7d32; /* green */
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 40px;
  display: inline-block;
}

.btn-readmore:hover {
  background-color: #1b5e20; /* darker green */
  color: #fff;
}


/* Facultiesxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */


.carousel-item h2 {
  font-size: 2rem;
}
.carousel-item p {
  font-size: 1.05rem;
  line-height: 1.7;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}
#campusTourCarousel .btn {
  transition: all 0.3s ease-in-out;
}
#campusTourCarousel .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

