/* Header Search Box Styles */
.header-search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.search-form {
  width: 100%;
  max-width: 300px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  border: 2px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
  border-color: #2c5aa0;
  box-shadow: 0 3px 15px rgba(44, 90, 160, 0.15);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  background: #2c5aa0;
  border: none;
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: #1e3d6f;
}

.search-btn i {
  font-size: 14px;
}

/* Header layout adjustments */
.tob-header-area .heder-right-content {
  text-align: right;
}

.tob-header-area .heder-right-content ul {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}

/* Responsive Design for Search Box */
@media (max-width: 768px) {
  .header-search-box {
    padding: 8px 5px;
  }
  
  .search-form {
    max-width: 220px;
  }
  
  .search-wrapper {
    border-radius: 20px;
  }
  
  .search-input {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .search-btn {
    padding: 8px 12px;
  }
  
  .search-btn i {
    font-size: 13px;
  }
  
  .tob-header-area .heder-left-content ul li {
    margin-right: 15px;
  }
  
  .tob-header-area .heder-left-content ul li p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .search-form {
    max-width: 160px;
  }
  
  .search-input {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .search-btn {
    padding: 6px 10px;
  }
  
  .search-btn i {
    font-size: 12px;
  }
  
  .tob-header-area .heder-left-content ul li {
    margin-right: 10px;
    padding-left: 18px;
  }
  
  .tob-header-area .heder-left-content ul li p {
    font-size: 11px;
  }
  
  .tob-header-area .heder-right-content ul li .language {
    margin-right: 10px;
  }
}

/* Footer Helpful Links Styles */
.helpful-links-content {
  margin-top: 20px;
}

.helpful-links-content h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2c5aa0;
  display: inline-block;
}

.helpful-links-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.helpful-links-content ul li {
  margin-bottom: 5px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.helpful-links-content ul li:last-child {
  border-bottom: none;
}

.helpful-links-content ul li span {
  font-weight: 600;
  color: #2c5aa0;
  display: inline-block;
  min-width: 80px;
  margin-right: 10px;
}

.helpful-links-content ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.helpful-links-content ul li a:hover {
  color: #2c5aa0;
}

/* Contact Information Styles */
.contact-info h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-details {
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #2c5aa0;
}

.contact-item i {
  font-size: 20px;
  color: #2c5aa0;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-text span {
  font-weight: 600;
  color: #2c5aa0;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.contact-text p {
  color: #666;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* News List Styles */
.news-list-area {
  background-color: #f8f9fa;
}

.news-category-card {
  background: #fff;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.news-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-category-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
}

.news-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-category-card:hover .news-category-image img {
  transform: scale(1.05);
}

.news-category-card h3 {
  color: #2c5aa0;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 25px 25px 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-category-card h3 i {
  font-size: 22px;
  color: #28a745;
}

.news-list {
  list-style: none;
  padding: 0 25px;
  margin: 0 0 25px 0;
}

.news-list li {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.news-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-list li a {
  text-decoration: none;
  color: #333;
  display: block;
  transition: all 0.3s ease;
}

.news-list li a:hover {
  color: #2c5aa0;
}

.news-list .date {
  color: #6c757d;
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-list h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #333;
  transition: color 0.3s ease;
}

.news-list li a:hover h4 {
  color: #2c5aa0;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2c5aa0;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 25px 25px 25px;
}

.view-all-btn:hover {
  color: #1e3a5f;
  gap: 8px;
}

.view-all-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(3px);
}

/* Education Programs Styles */
.education-programs-area {
  background-color: #f8f9fa;
}

.education-category-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.education-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.education-category-card h3 {
  color: #2c5aa0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.education-category-card h3 i {
  font-size: 22px;
  color: #007bff;
}

.category-desc {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.education-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.education-list li {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.education-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.education-list li a {
  text-decoration: none;
  color: #333;
  display: block;
  transition: all 0.3s ease;
}

.education-list li a:hover {
  color: #2c5aa0;
}

.education-list .date {
  color: #007bff;
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #e3f2fd;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
}

.education-list h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 5px 0;
  color: #333;
  transition: color 0.3s ease;
}

.education-list p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

.education-list li a:hover h4 {
  color: #2c5aa0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-category-card,
  .education-category-card {
    margin-bottom: 20px;
    padding: 20px 15px;
  }
  
  .news-category-card h3,
  .education-category-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .news-list h4,
  .education-list h4 {
    font-size: 13px;
  }
  
  .education-list h4 {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .news-list-area .col-lg-4,
  .education-programs-area .col-lg-6 {
    margin-bottom: 20px;
  }
}

/* Research section list styles */
.about-content .list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-content .list ul li:hover {
  background: #e8f4fd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content .list ul li i {
  font-size: 24px;
  color: #007bff;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.about-content .list ul li div h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.about-content .list ul li div p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Responsive adjustments for research section */
@media (max-width: 768px) {
  .about-content .list ul li {
    flex-direction: column;
    text-align: center;
  }
  
  .about-content .list ul li i {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Research Section Styles */
.research-area {
  background-color: #f8f9fa;
}

.research-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.research-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.research-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.research-card:hover .research-image img {
  transform: scale(1.05);
}

.research-content {
  padding: 25px 20px;
  text-align: center;
}

.research-content h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.research-date {
  color: #27ae60;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
  background: #e8f5e8;
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-block;
}

.research-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Research */
@media (max-width: 768px) {
  .research-card {
    margin-bottom: 20px;
  }
  
  .research-image {
    height: 150px;
  }
  
  .research-content {
    padding: 20px 15px;
  }
  
  .research-content h4 {
    font-size: 16px;
  }
  
  .research-content p {
    font-size: 13px;
  }
}

/* Partners Section Styles */
.partners-area {
  background-color: #f8f9fa;
}

.partners-content {
  background-color: #f8f9fa;
}

.partners-slider.owl-carousel .owl-item {
  padding: 0 15px;
}

.single-partner-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
}

.single-partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-img {
  position: relative;
  overflow: hidden;
  height: 180px;
  width: 100%;
}

.partner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-partner-card:hover .partner-img img {
  transform: scale(1.05);
}

.partner-card-content {
  padding: 25px 20px;
  text-align: center;
}

.partner-card-content h3 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.partner-card-content p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Owl Carousel Custom Navigation for Partners */
.partners-slider.owl-carousel .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.partners-slider.owl-carousel .owl-nav button.owl-prev,
.partners-slider.owl-carousel .owl-nav button.owl-next {
  background: #2c5aa0;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  margin: 0 10px;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partners-slider.owl-carousel .owl-nav button.owl-prev:hover,
.partners-slider.owl-carousel .owl-nav button.owl-next:hover {
  background: #1e3a5f;
  transform: scale(1.1);
}

.partners-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.partners-slider.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.partners-slider.owl-carousel .owl-dots .owl-dot.active,
.partners-slider.owl-carousel .owl-dots .owl-dot:hover {
  background: #2c5aa0;
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
  .single-partner-card {
    margin-bottom: 20px;
  }
  
  .partner-img {
    height: 150px;
  }
  
  .partner-card-content {
    padding: 20px 15px;
  }
  
  .partner-card-content h3 {
    font-size: 16px;
  }
  
  .partner-card-content p {
    font-size: 13px;
  }
}

/* Introduction Section Custom Styles */
.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* General spacing utilities for reduced module spacing */
.pt-60 {
  padding-top: 20px;
}

.pb-40 {
  padding-bottom: 20px;
}

.about-area .about-title h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-area .about-title p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-area .about-img img {
  max-height: 350px;
  object-fit: cover;
}

.about-area .list ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-area .list ul li i {
  color: #28a745;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 0;
}

.about-area .list ul li p {
  font-size: 14px;
  margin: 0;
  flex: 1;
}

/* Responsive adjustments for Introduction and general spacing */
@media (max-width: 768px) {
  .ptb-50 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .pt-60 {
    padding-top: 40px;
  }
  
  .pb-40 {
    padding-bottom: 25px;
  }
  
  .about-area .about-title h2 {
    font-size: 24px;
  }
  
  .about-area .about-img img {
    max-height: 280px;
  }
}
