:root {
  --primary-color: #f68b1f; /* Orange from logo */
  --secondary-color: #4a9d3e; /* Green from logo */
  --accent-color: #007bff; /* Blue from logo waves */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar Styles */
.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand img {
  max-height: 70px;
  width: auto;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(246, 139, 31, 0.1), rgba(74, 157, 62, 0.1));
  padding: 120px 0 60px;
  position: relative;
  margin-top: 100px;
}

/* Section Titles */
.section-title {
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Team Cards */
.team-card {
  border: none;
  transition: all 0.3s ease;
  background: white;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Project Cards */
.project-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Navigation Links */
.nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

/* Team Icons and Social */
.team-icon {
  transition: all 0.3s ease;
}

.team-card:hover .team-icon {
  transform: scale(1.1);
}

.team-social a {
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.team-social a:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.2);
}
.team-image {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.team-image .image-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
/* Hero Image */
.hero-section .img-fluid {
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-section {
    margin-top: 80px;
  }

  .hero-section .img-fluid {
    margin-top: 30px;
  }
}
.experience-section {
  background: linear-gradient(
      rgba(246, 139, 31, 0.95),
      /* Orange from logo with high opacity */ rgba(74, 157, 62, 0.95)
        /* Green from logo with high opacity */
    ),
    url("../images/full-shot-girl-learning-math-school_23-2150470852.avif")
      no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.experience-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f68b1f' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.program-card {
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-icon {
  height: 80px;
  width: 80px;
  background: rgba(246, 139, 31, 0.1); /* Light orange background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.program-card:hover .program-icon {
  background: rgba(74, 157, 62, 0.1); /* Light green background on hover */
}

.counter-item {
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.counter-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* Additional theme-specific styles */
.program-card .bi {
  color: var(--primary-color); /* Orange icons */
}

.program-card:hover .bi {
  color: var(--secondary-color); /* Green icons on hover */
}

.program-card h3 {
  color: var(--primary-color);
}

.program-card .bi-check2-circle {
  color: var(--secondary-color);
}

/* Make text in counter items more visible */
.counter-item p {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.counter-item i {
  color: var(--primary-color);
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.counter-item {
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-5px);
}

/* Counter Styles */
.experience-section {
  background-color: #1a1a1a;
  color: white;
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  color: white;
}

.counter::after {
  content: "+";
  font-size: 2rem;
  margin-left: 5px;
}

.counter-item {
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 10px;
}

.counter-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.counter-item i {
  color: var(--bs-primary);
  margin-bottom: 15px;
}

.counter-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

/* Update Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(rgba(246, 139, 31, 0.9), rgba(246, 139, 31, 0.9)),
    url("../images/contact-bg.jpg") center/cover;
}

.card .bi {
  color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Career Page Styles */
.career-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.9)),
        url("../images/career-bg.jpg") center/cover;
}

.form-label {
    font-weight: 500;
    color: var(--neutral-dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

/* Gallery Styles */
.gallery-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-overlay {
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Partners Styles */
.partner-item img {
  max-height: 80px;
  transition: all 0.3s ease;
}

.grayscale {
  filter: grayscale(100%);
}

.hover-color:hover {
  filter: grayscale(0%);
}

.partners-slider {
  padding: 20px 0;
}
.partner-item {
  transition: transform 0.3s ease;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  margin: 10px;
}

.partner-item:hover {
  transform: translateY(-5px);
}

.partner-logo {
  max-height: 100px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  margin: 0 20px;
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.modal-dialog {
  max-width: 90vw;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal-header {
  position: absolute;
  right: 0;
  z-index: 1;
}

.btn-close {
  background-color: white;
  opacity: 1;
  padding: 0.5rem;
  margin: 1rem;
  border-radius: 50%;
}

.modal-body img {
  border-radius: 5px;
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 800px;
  }
}