/* Body Content Styles */
/* Why Study in USA Section */
.py-5 {
  padding: 5rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.align-items-center {
  align-items: center;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 10px;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.fw-bold {
  font-weight: 700;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.mb-3 {
  margin-bottom: 1rem;
}

.text-primary {
  color: #0066cc;
}

.me-2 {
  margin-right: 0.5rem;
}

/* University Partners Section */
.university-partners-section {
  background-color: #f8f9fa;
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: #0066cc;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.partnership-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  flex: 1;
  min-width: 250px;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.feature-item p {
  color: #6c757d;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .partnership-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-item {
    min-width: 100%;
  }
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c3e50; /* More professional color */
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #0066cc;
  margin: 15px auto 0;
}

.mySwiper {
  padding: 30px 10px;
  position: relative;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: auto;
  transition: all 0.3s ease;
}

.swiper-slide img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Add navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #0066cc;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

/* Pagination styling */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0066cc;
}

/* Responsive improvements */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .swiper-slide img {
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .students-carousel-section {
    padding: 60px 0;
  }
  
  .swiper-slide img {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .swiper-slide img {
    max-width: 100px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
/* Popular Courses Section */
.g-4 {
  margin: -1rem;
}

.g-4 > * {
  padding: 1rem;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.border-0 {
  border: 0;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(10px - 1px);
  border-top-right-radius: calc(10px - 1px);
  height: 180px;
  object-fit: cover;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.card-body p {
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .py-5 {
    padding: 3rem 0;
  }
  
  .swiper-slide {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .swiper-slide img {
    max-height: 60px;
  }
  
  .card-img-top {
    height: 150px;
  }
}


/* Why Choose Us Section */
.why-choose-us {
  background-color: #f8f9fa;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-icon {
  padding: 30px 0 20px;
  text-align: center;
  color: #0066cc;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card-text {
  color: #6c757d;
  font-size: 0.95rem;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
  
  .card-icon i {
    font-size: 2.5rem;
  }
}


/* Study Process Section */
.study-process {
  background-color: #fff;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  background-color: #0066cc;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.step-content p {
  color: #6c757d;
  margin: 0;
}

/* Popular Courses Section */
/* Popular Courses Section */
.popular-courses {
  background: #fff;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2c3e50;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.course-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.course-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 102, 204, 0.9);
  color: white;
  padding: 15px;
  margin: 0;
  font-size: 1.3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .course-img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}



/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 1000;
  padding: 10px 0;
}

.dropdown-content a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #0066cc;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    width: 100%;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
}





 /* Testimonial Section Styles */
        .testimonials-section {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .section-header p {
            font-size: 18px;
            color: #666;
            margin-top: 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            font-weight: 700;
            color: rgba(0,0,0,0.03);
            z-index: 1;
            font-family: 'Poppins', sans-serif;
        }
        
        .client-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            color: #0066cc;
            font-family: 'Poppins', sans-serif;
        }
        
        .testimonial-text {
            color: #555;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            line-height: 1.6;
        }
        
        .divider {
            height: 1px;
            background: #eee;
            margin: 25px 0;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            color: #555;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
            font-family: 'Poppins', sans-serif;
        }
        
        .read-more:hover {
            color: #000;
        }
        
        .read-more::after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .read-more:hover::after {
            transform: translateX(3px);
        }
        
        @media (max-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
        }