/* Base Styles */
:root {
    --primary: #3f51b5;
    --primary-dark: #303f9f;
    --secondary: #ff4081;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}
html, body {
  height: 100%;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
      margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
    width: auto;
}




/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.students-carousel-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #e76f51;
}

.swiper-slide img {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.swiper {
  padding: 20px 0;
}


.why-swiftedu {
  padding: 60px 20px;
  background: #fff;
}

.why-title {
  text-align: center;
  font-size: 24px;
  color: #e76f51;
  margin-bottom: 40px;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.why-card {
  border: 1px solid #f58634;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  background: #fff;
  transition: 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.why-card h3 {
  color: #2d3e50;
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 3px solid var(--swift-orange);
  }
  
  /* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-section .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }
/* Course Card */
.course-card {
    position: relative;
    overflow: hidden;
}

.course-card .course-img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-img {
    transform: scale(1.05);
}

.course-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Testimonials */
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.review-slider {
    position: relative;
    height: 200px; /* Adjust based on your image height */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: #f16923;
}



