/*
===========================================
Table of Contents:
1. Reset & Base Styles
2. Typography
3. Layout & Container
4. Header & Navigation
5. Hero Section
6. Section Styles
7. About Section
8. Courses Section
9. Testimonials Section
10. Statistics Section
11. CTA Section
12. Footer
13. Buttons
14. Form Elements
15. WhatsApp Widget
16. Miscellaneous Components
17. Utility Classes
===========================================
*/

/* ===========================================
1. Reset & Base Styles
===========================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  background-color: #fff;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #29186e;
  transition: color 0.3s ease;
}

a:hover {
  color: #0192dd;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================================
2. Typography
===========================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #333;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 16px;
}

/* ===========================================
3. Layout & Container
===========================================*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: #29186e;
  margin: 15px auto;
}

.alternate-bg {
  background-color: #f8f9fa;
}

/* ===========================================
4. Header & Navigation
===========================================*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.scrolled {
  background-color: #fff !important;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  max-width: 180px;
}

.logo img {
  height: 60px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #333;
  position: relative;
  font-size: 1rem;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #29186e;
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.login-btn {
  background-color: #29186e;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #0192dd;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* ===========================================
5. Hero Section
===========================================*/
#hero {
  position: relative;
  height: 600px;
  margin-top: 80px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.2s;
}

.slide-content .btn {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.4s;
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-btn, .next-btn {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 15px;
}

.prev-btn:hover, .next-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #fff;
}

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

/* ===========================================
6. Section Styles
===========================================*/
#page-banner {
  position: relative;
  height: 250px;
  background: linear-gradient(rgba(41, 24, 110, 0.8), rgba(1, 146, 221, 0.8)),
    url('https://images.pexels.com/photos/267885/pexels-photo-267885.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  text-align: center;
  color: #fff;
}

#page-banner h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.breadcrumb a {
  color: #fff;
  opacity: 0.8;
}

.breadcrumb span {
  margin: 0 5px;
}

/* ===========================================
7. About Section
===========================================*/
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  margin-bottom: 20px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.stat-box {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h4 {
  font-size: 2rem;
  color: #29186e;
  margin-bottom: 5px;
}

/* Mission & Vision */
.mission-vision-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.mission-box, .vision-box, .values-box {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 2.5rem;
  color: #29186e;
  margin-bottom: 20px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #29186e;
  margin-bottom: 20px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* For exactly two team members, make them appear side by side centered */
.team-grid.two-members {
  grid-template-columns: repeat(2, 1fr);
}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-details {
  padding: 20px;
  text-align: center;
}

.designation {
  display: block;
  color: #29186e;
  margin-bottom: 10px;
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #29186e;
  color: #fff;
}

/* Statistics Section */
#statistics .stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

#statistics .stat-box {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#statistics .stat-box .stat-icon {
  font-size: 3rem;
  color: #29186e;
  margin-bottom: 15px;
}

#statistics .stat-box h3 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

/* ===========================================
8. Courses Section
===========================================*/
#course-categories {
  text-align: center;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.category-tab {
  background: none;
  border: 2px solid #29186e;
  color: #29186e;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab.active, .category-tab:hover {
  background-color: #29186e;
  color: #fff;
}

.course-section {
  margin-bottom: 60px;
}

.course-section:last-child {
  margin-bottom: 0;
}

.course-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.category-icon {
  width: 60px;
  height: 60px;
  background-color: #29186e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  margin-right: 15px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.course-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-card:hover .course-overlay {
  opacity: 1;
}

.course-content {
  padding: 20px;
  position: relative;
}

.course-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: #FF8B00;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px 0;
  font-size: 0.9rem;
  color: #666;
}

.course-info span i {
  margin-right: 5px;
  color: #29186e;
}

.course-features {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.course-features h5 {
  margin-bottom: 10px;
}

.course-features ul {
  padding-left: 20px;
}

.course-features li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.course-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #29186e;
}

.text-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.text-btn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.text-btn:hover {
  transform: translateX(5px);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -15px;
  height: 2px;
  width: 30px;
  background-color: #29186e;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: #29186e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 20px;
}

/* Course FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: #f8f9fa;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

/* ===========================================
9. Testimonials Section
===========================================*/
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: #29186e;
  opacity: 0.2;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-details h4 {
  margin-bottom: 5px;
}

.author-details p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #29186e;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-testimonial-btn, .next-testimonial-btn {
  background: #29186e;
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 0 15px;
}

.prev-testimonial-btn:hover, .next-testimonial-btn:hover {
  background: #0192dd;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-dots .dot {
  background: rgba(0, 82, 204, 0.3);
}

.testimonial-dots .dot.active {
  background: #29186e;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===========================================
10. Statistics Section
===========================================*/
/* Defined above in the About Section */

/* ===========================================
11. CTA Section
===========================================*/
#cta {
  background: linear-gradient(rgba(0, 82, 204, 0.9), rgba(0, 64, 160, 0.9)),
    url('https://images.pexels.com/photos/267885/pexels-photo-267885.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* ===========================================
12. Footer
===========================================*/
#footer {
  background-color: #333;
  color: #fff;
  padding: 70px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #29186e;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-info i {
  margin-right: 10px;
  color: #29186e;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #999;
}

/* ===========================================
13. Buttons
===========================================*/
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.primary-btn {
  background-color: #29186e;
  color: #fff;
}

.primary-btn:hover {
  background-color: #0192dd;
  color: #fff;
}

.secondary-btn {
  background-color: #5243AA;
  color: #fff;
}

.secondary-btn:hover {
  background-color: #443690;
  color: #fff;
}

.outline-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.outline-btn:hover {
  background-color: #fff;
  color: #29186e;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* ===========================================
14. Form Elements
===========================================*/
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #29186e;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 5px;
}

.g-recaptcha {
  margin-bottom: 20px;
}

/* ===========================================
15. WhatsApp Widget
===========================================*/
#whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: pulse 1.5s infinite;
}

.whatsapp-button:hover {
  animation: none;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup-header {
  background-color: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.1rem;
}

.close-popup {
  cursor: pointer;
  font-size: 1.5rem;
}

.popup-body {
  padding: 15px;
}

.whatsapp-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.whatsapp-chat-btn:hover {
  background-color: #1da851;
  color: #fff;
}

/* ===========================================
16. Miscellaneous Components
===========================================*/
/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Info */
.contact-info-box {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 82, 204, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #29186e;
  margin-right: 15px;
}

.contact-details h4 {
  margin-bottom: 5px;
}

/* Map */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Results */
.result-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.result-item:hover {
  transform: translateY(-10px);
}

.result-image {
  height: 250px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-item:hover .result-image img {
  transform: scale(1.05);
}

.result-details {
  padding: 20px;
}

.result-details h3 {
  margin-bottom: 10px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.result-meta span i {
  margin-right: 5px;
  color: #29186e;
}

/* ===========================================
17. Utility Classes
===========================================*/
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-primary {
  color: #29186e;
}

.bg-light {
  background-color: #f8f9fa;
}

.d-flex {
  display: flex;
}

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

.align-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-20 {
  gap: 20px;
}

/* Responsive adjustments for team grid */
@media screen and (max-width: 768px) {
  .team-grid.two-members {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
