@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

:root {
  --primary-gradient: linear-gradient(to bottom,
      #ffe0b2 0%,
      #ffffff 33%,
      #c8e6c9 66%);
  --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --primary-color: #0066cc;
  ----secondary-color: rgba(0, 0, 0, 0.772);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  background-color: #f8fafc;
  font-family: "Roboto", serif;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-brand span {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-item {
  margin: 0 5px;
  position: relative;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 8px 15px !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link:hover {
  color: #2575fc !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px;
}

.dropdown-item {
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(45deg, #2575fc20, #6a11cb20);
  transform: translateX(5px);
}

.btn-outline-primary {
  border: 2px solid #2575fc;
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 117, 252, 0.2);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: none;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #2575fc;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: 8px;
}

.navbar-toggler-icon::after {
  bottom: 8px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' opacity='0.1'%3E%3Cpattern id='pattern' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 0 L50 50 L100 0 Z' fill='%236a11cb' opacity='0.1'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.floating-element {
  position: absolute;
  opacity: 0.6;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.video-section {
  background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
  color: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1600189261867-30e5ffe7b8da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.video-section .container {
  position: relative;
  z-index: 1;

}

.brand-logo {
  background: linear-gradient(45deg, #FF9933, #138808);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  position: relative;
  display: inline-block;
}

.video-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
  border-radius: 2px;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.check-list li:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.check-list svg {
  margin-right: 15px;
  min-width: 24px;
}

.card-hover-effect {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid #FF9933;
  position: relative;
  overflow: hidden;
}

.card-hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(19, 136, 8, 0.2));
  z-index: 1;
}

.card-hover-effect:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: #138808;
}

.azadi-badge {
  position: absolute;
  top: -45px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 700;
  color: #FF9933;
  display: flex;
  align-items: center;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.azadi-badge svg {
  margin-right: 8px;
  color: #138808;
}

@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
    clip-path: none;
  }

  .video-section h2 {
    font-size: 2rem;
  }

  .brand-logo {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  .azadi-badge {
    top: -50px;
  }
}

/* .achievements-section {
  background: var(--secondary-gradient);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  animation: pulse 10s infinite alternate;
}

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

  100% {
    transform: scale(1.1);
  }
}

.achievement-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.achievement-card:hover {
  transform: translateY(-20px) rotate(3deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.achievement-number {
  font-size: 3.5rem;
  font-weight: bold;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.achievement-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.2) rotate(15deg);
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
} */

.courses-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #f8fafc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.courses-title {
  color: #1e3a8a;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}

.courses-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
  justify-items: center;
}

.course-card {
  text-decoration: none;
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  color: #1e293b;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(59, 130, 246, 0.1);
  border-color: #bfdbfe;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 50%;
  color: #1d4ed8;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  background: #3b82f6;
  color: white;
  transform: scale(1.1);
}

.course-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin-bottom: 10px;
}

.course-description {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .courses-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .courses-title {
    font-size: 2.2rem;
  }

  .course-card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .courses-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .courses-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .course-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .course-title {
    font-size: 1rem;
  }
}

/* Custom Icons with Colors */
.icon-web {
  color: #2563eb;
}

.icon-android {
  color: #16a34a;
}

.icon-game {
  color: #9333ea;
}

.icon-data {
  color: #0284c7;
}

.icon-ai {
  color: #ea580c;
}

.icon-ml {
  color: #0d9488;
}

.icon-java {
  color: #dc2626;
}

.icon-cyber {
  color: #b91c1c;
}

.icon-cloud {
  color: #0369a1;
}

.icon-marketing {
  color: #c026d3;
}

.icon-devops {
  color: #059669;
}

.icon-design {
  color: #db2777;
}

.icon-mobile {
  color: #7c3aed;
}

.icon-backend {
  color: #475569;
}

.icon-fullstack {
  color: #ea580c;
}

.recognition-container {
  display: flex;
  width: 90%;
  margin: 0 auto;
  background-color: #f8fafc;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.recognition-content {
  width: 60%;
  padding: 40px;
  background: white;
}

.recognition-highlights {
  width: 40%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recognition-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.recognition-description {
  line-height: 1.6;
  color: #666;
}

.highlights-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.highlight-list {
  list-style-type: none;
  padding: 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.highlight-item:hover {
  opacity: 1;
}

.highlight-icon {
  margin-right: 15px;
  font-size: 1.5rem;
}

.certification-container {
  width: 91%;
  margin: 20px auto;
  background-color: #f8fafc;
  border-radius: 15px;
  padding: 30px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.certification-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #1e3a8a;
  font-weight: bold;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-card:hover {
  transform: scale(1.05);
}

.logo-card img {
  max-width: 200px;
  max-height: 130px;
  object-fit: contain;
}

.milestone-wrapper {
  background-color: #f8fafc;
  color: #333;
  /* padding: 60px 0; */
  text-align: center;
  position: relative;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 150px;
}

/* Base Styles */
.milestone-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 25px;
}

/* Feedback Slider Styles */
.feedback-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
  overflow: hidden;
}

.feedback-slider {
  display: flex;
  width: max-content;
  /* animation: slide 30s linear infinite; */
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.feedback-slide {
  flex: 0 0 auto;
  width: 300px;
  padding: 0 10px;
}

.feedback-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feedback-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feedback-icon {
  font-size: 1.8rem;
  color: #6a11cb;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-user-info {
  flex-grow: 1;
}

.feedback-author {
  font-weight: bold;
  color: #333;
  margin: 0;
  font-size: 1.1rem;
}

.feedback-domain {
  color: #6a11cb;
  margin: 3px 0 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.feedback-quote {
  font-style: italic;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.feedback-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.feedback-rating {
  color: #FFD700;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.rating-value {
  color: #333;
  font-weight: bold;
  margin-left: 5px;
  font-size: 0.9rem;
}

.feedback-date {
  color: #777;
  font-size: 0.8rem;
  margin: 0;
}

/* Metrics Styles */
.milestone-metrics {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.metric-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  width: 160px;
}

.metric-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #6a11cb;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.5rem;
  }

  .feedback-slide {
    padding: 10px;
  }

  .feedback-card {
    padding: 15px;
  }

  .feedback-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .feedback-domain {
    font-size: 0.4rem;
  }

  .feedback-quote {
    font-size: 0.85rem;
  }

  .feedback-author{
    font-size: 0.7rem;
  }

  .feedback-footer {
    flex-direction: column;
  }

  .metric-block {
    width: calc(50% - 10px);
    padding: 15px 10px;
  }

  .metric-icon {
    font-size: 1.5rem;
  }

  .metric-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  /* .feedback-slide {
    width: 200px;
  } */

  .milestone-metrics {
    gap: 10px;
  }

  .metric-block {
    width: 100%;
    max-width: 160px;
  }
}

/* Contact Us Section */
.contact-us {
  /* background-color: #f8fafc; */
  color: #333;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-us .section-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.contact-us .section-subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 20px;
  text-align: left;
}

.contact-info strong {
  font-size: 1.2rem;
  color: #6088b0;
}

.contact-info p,
.contact-info a {
  font-size: 1rem;
  color: #555;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ff8c00;
}

/* Card Design */
.contact-card {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.image-container {
  text-align: center;
  position: relative;
}

.contact-image {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  filter: brightness(0.95) contrast(1.1);
  transition: transform 0.5s ease, filter 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Footer Styles */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 150px;
  margin-bottom: 1rem;
}

.footer-links h5 {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links a {
  color: white;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid #334155;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

.team-section {
  /* padding: 4rem 1rem; */
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.team-section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-member-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

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

.team-member-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 50%;
}

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

.team-member-details {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.5rem;
  color: #333;
  margin: 0 0 0.5rem;
}

.team-member-position {
  font-size: 1rem;
  color: #ff7e5f;
  margin: 0 0 1rem;
  font-weight: 500;
}

.team-member-bio {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff7e5f;
}

.swiper {
  padding: 2rem 1rem;
}

.swiper-button-next,
.swiper-button-prev {
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem !important;
  color: #ff7e5f;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff7e5f;
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .nav-item {
    margin: 5px 0;
  }

  .dropdown-menu {
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  .btn-group {
    margin-top: 15px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recognition-container {
    flex-direction: column;
  }

  .recognition-content,
  .recognition-highlights {
    width: 100%;
  }

  .milestone-metrics {
    gap: 20px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .logo-container {
    max-width: 100px;
  }

  .contact-us {
    padding: 50px 10px;
  }

  .contact-card {
    padding: 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .contact-image {
    max-width: 300px;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

  .team-section-title h2 {
    font-size: 2rem;
  }

  .team-member-card {
    max-width: 300px;
  }

  .team-member-image-container {
    height: 200px;
  }

  .swiper {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-link {
    text-align: center;
    padding: 10px 0;
  }

  .dropdown-menu {
    text-align: center;
    border: 1px solid black;
    background-color: transparent;
    box-shadow: none;
  }

  .navbar-nav {
    margin-top: 20px;
    border-top: 1px solid #eee;
  }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }

  .navbar {
    padding: 10px 15px;
  }

  .navbar-brand {
    font-size: 0.9rem;
  }

  .navbar-brand svg {
    width: 40px;
    height: 40px;
  }

  .btn-group {
    /* flex-direction: column; */
    /* gap: 10px; */
    display: flex;
  }

  .btn-signup,
  .btn-login {
    width: 100%;
  }
}