body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
/* Transparent Header with Background */
/* Transparent Header with Background */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 2px 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: #FFC107; */
    background: #fff;
    transition: all 0.3s ease-in-out;
}
/* Logo Styling */
.logo img {
    max-height: 85px;
    transition: all 0.3s ease-in-out;
}
/* Right Section (Accreditation Logos + Helpline) */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* Accreditation Logos */
.accreditation-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}
.accreditation-logo {
    max-height: 60px;
    transition: all 0.3s ease-in-out;
}
.accreditation-logo:hover {
    transform: scale(1.1);
}
/* Helpline Number Section */
.helpline a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
}
.helpline a:hover {
    background: linear-gradient(135deg, #141b3b 0%, #3F51B5 100%);
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(2, 166, 87, 0.3);
}
/* Sticky Header Effect on Scroll */
.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 30px;
    transition: all 0.3s ease-in-out;
}
/* Responsive View: Only Show Logo & Enquiry */
@media (max-width: 992px) {
    .header {
        padding: 10px 20px;
    }
    .logo img {
        max-height: 60px;
    }
    .helpline a {
        padding: 6px 12px;
        font-size: 14px;
    }
    .accreditation-logos {
        display: none; /* Hide accreditation logos in responsive view */
    }
}
.mt-7{
    margin-top: 70px;
}
.banner-wrapper {
    margin-top: 60px;
      position: relative;
      width: 100%;
      /* min-height: 100vh; */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .banner-container {
      position: relative;
      width: 100%;
      max-width: 1920px;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 2rem;
    }
    .banner-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), url('../images/JISIASR.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -1;
      transition: all 0.5s ease;
    }
    .form-holder {
      background: rgba(255, 255, 255, 0.98);
      padding: 2.15rem;
      border-radius: 12px;
      width: 100%;
      max-width: 380px;
      margin: 3rem 0 0 0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      animation: fadeInUp 0.6s ease-out;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .lead-form h3 {
      text-align: center;
      margin-bottom: 2rem;
      color: #1a1a1a;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .form-control {
      width: 100%;
      padding: 0.9rem;
      margin-bottom: 0.92rem;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #f9f9f9;
    }
    .form-control:focus {
      outline: none;
      border-color: #0056b3;
      box-shadow: 0 0 8px rgba(0, 86, 179, 0.2);
      background: #fff;
    }
    .form-control::placeholder {
      color: #999;
      opacity: 0.8;
    }
    .btn-primary {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(90deg, #f97316, #fb923c);
      border: none;
      border-radius: 6px;
      color: white;
      font-size: 1.1rem;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }
    .btn-primary:active {
      transform: translateY(0);
    }
    .g-recaptcha {
      margin-bottom: 1.5rem;
      transform: scale(1);
      transform-origin: 0 0;
    }
    @media (max-width: 1024px) {
      .banner-container {
        flex-direction: column;
        min-height: auto;
        padding: 1rem;
      }
      .banner-bg {
        position: relative;
        height: 40vh;
        width: 100%;
        min-height: 300px;
      }
      .form-holder {
        max-width: 500px;
        margin: 1.5rem auto;
      }
    }
    @media (max-width: 850px) {
      .banner-container {
        padding: 0.5rem;
      }
      .banner-bg {
        height: 35vh;
        min-height: 250px;
      }
      .form-holder {
        padding: 2rem;
        max-width: 90%;
      }
      .lead-form h3 {
        font-size: 1.6rem;
      }
      .form-control {
        padding: 0.8rem;
        font-size: 0.95rem;
      }
      .btn-primary {
        padding: 0.9rem;
        font-size: 1rem;
      }
    }
    @media (max-width: 768px) {
      .banner-container {
        padding: 0.5rem;
      }
      .banner-bg {
        height: 40vh;
        min-height: 250px;
      }
      .form-holder {
        padding: 2rem;
        max-width: 90%;
      }
      .lead-form h3 {
        font-size: 1.6rem;
      }
      .form-control {
        padding: 0.8rem;
        font-size: 0.95rem;
      }
      .btn-primary {
        padding: 0.9rem;
        font-size: 1rem;
      }
    }
    @media (max-width: 480px) {
      .banner-container {
        padding: 0.5rem;
      }
      .banner-bg {
        height: 25vh;
        min-height: 200px;
      }
      .form-holder {
        padding: 1.5rem;
      }
      .form-control {
        font-size: 0.9rem;
      }
      .btn-primary {
        font-size: 0.95rem;
      }
      .g-recaptcha {
        transform: scale(0.85);
      }
    }
 /*About Section */
/* About Section */
.about-section {
    background: linear-gradient(135deg, #ffffff, #e6f0ff);
    padding: 100px 20px;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Section Title */
.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFC107;
    animation: fadeInDown 1s ease-in-out;
}
/* Tagline */
.section-tagline {
  font-style: italic;
  display: inline-block; /* makes width fit content */
  background-color: #222a68; /* example background color */
  color: #fff; /* white text */
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 5px;
  animation: fadeInUp 1s ease-in-out;
}
/* About Text */
.about-text {
    font-size: 18px;
    line-height: 1.6;
    /* max-width: 750px; */
    margin: 0 auto 30px;
    animation: fadeInLeft 1s ease-in-out;
}
/* Parent Row */
.row.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
  }
  /* Highlights Wrapper */
  /* ABOUT HIGHLIGHTS WRAPPER - give a soft white look with a border */
.about-highlights-wrapper {
    padding: 30px 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  /* About Highlights */
  .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    animation: zoomIn 1s ease-in-out;
  }
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    line-height: 1.4; /* Helps with alignment */
  }
  .highlight-item i {
    font-size: 20px;
    color: #FFC107;
    min-width: 24px; /* Ensures space for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .highlight-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
  }
  /* STUDENT CREDIT CARD SECTION - already has light blue */
.student-credit-card-section {
    background: #f4f9ff; /* soft blue remains */
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .student-credit-card-section .logos-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .student-credit-card-section .credit-logo {
    max-width: 160px;
    height: 60px;
    object-fit: contain;
  }
  /* Headings and Text */
  .student-credit-card-section .credit-text h2 {
    color: #004085;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .student-credit-card-section .credit-text h3 {
    color: #02a657;
    font-size: 18px;
    margin-bottom: 5px;
  }
  .student-credit-card-section .credit-text p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
  }
  /* Responsive Fixes */
  @media (max-width: 768px) {
    .row.align-items-stretch {
      flex-direction: column;
    }
    .about-highlights-wrapper,
    .student-credit-card-section {
      margin-top: 20px;
      height: auto;
    }
  }
  @media (max-width: 992px) {
    .student-credit-card-section .credit-logo {
      max-width: 125px !important;
    }
  }
/* Call-to-Action Button */
.about-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #FFC107;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}
.about-btn:hover {
    background: #ffd700;
    transform: scale(1.05);
}
/* Animations */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}
/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    .about-text {
        font-size: 16px;
    }
    .highlight-item {
        font-size: 16px;
    }
    .about-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* Our Courses Section */
/* Our Courses Section */
 .courses-section {
            background: #ffffff;
            padding: 30px 0;
            text-align: center;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3a8a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            animation: fadeInDown 0.5s ease-in-out;
        }
        .section-title span {
            color: #f97316;
        }
        .section-subtitle {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 400;
            margin-bottom: 15px;
            animation: fadeInUp 0.5s ease-in-out;
        }
        .search-bar {
            max-width: 350px;
            margin: 0 auto 15px;
        }
        .search-bar input {
            width: 100%;
            padding: 8px 12px;
            font-size: 0.85rem;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .search-bar input:focus {
            border-color: #f97316;
            box-shadow: 0 0 5px rgba(249, 115, 22, 0.2);
        }
        .course-center {
            margin-bottom: 20px;
        }
        .course-center h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            padding: 8px 12px;
            border-radius: 6px;
            margin-bottom: 10px;
            animation: fadeInUp 0.5s ease-in-out;
        }
        .course-center:nth-child(odd) h3 {
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
        }
        .course-center:nth-child(even) h3 {
            background: linear-gradient(90deg, #f97316, #fb923c);
        }
        .course-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}
.course-item {
    flex: 1 1 calc(50% - 10px); /* Two items per row with spacing */
    background: #f9fafb;
    border-left: 4px solid #f97316;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    min-height: 60px;
}
.course-item:hover {
    background: #fff7ed;
    transform: translateY(-2px);
}
/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
    .course-item {
        flex: 1 1 100%;
        font-size: 0.9rem;
    }
}
        .course-center:nth-child(odd) .course-item:nth-child(odd) {
            background: #eff6ff;
        }
        .course-center:nth-child(even) .course-item:nth-child(even) {
            background: #fff7ed;
        }
        /* Animations */
        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-8px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(8px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            .section-subtitle {
                font-size: 0.8rem;
            }
            .search-bar input {
                font-size: 0.8rem;
            }
            .course-center h3 {
                font-size: 1.1rem;
            }
            .course-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            .course-item {
                font-size: 0.75rem;
                padding: 6px;
            }
            .course-center:nth-child(1) .course-item:nth-child(1),
            .course-center:nth-child(3) .course-item:nth-child(3) {
                grid-row: span 1;
                font-size: 0.8rem;
                padding: 8px;
            }
            .course-center:nth-child(2) .course-item:nth-child(2),
            .course-center:nth-child(4) .course-item:nth-child(1) {
                grid-column: span 1;
                font-size: 0.8rem;
                padding: 8px;
            }
        }
        .pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.pill {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1.4;
  border: 1px solid #bae6fd;
  transition: background 0.3s ease;
}
.pill:hover {
  background-color: #bae6fd;
  color: #0c4a6e;
}
/* Optional: adjust within .course-item */
.phd-course {
  padding-bottom: 8px;
}
/* Course List */
.course-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    padding: 20px;
}
/* Card Base Styles */
.course-card {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
/* Smooth Hover Effect */
/* Icon (Optional) */
.course-card .icon {
    font-size: 45px;
    color: #4466a6;
    margin-bottom: 12px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
/* Interactive Icon Effect */
.course-card:hover .icon {
    color: #FFC107;
    transform: scale(1.1);
}
/* Course Title */
.course-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    transition: color 0.3s ease-in-out;
	text-align: center;
}
/* Change Title Color on Hover */
/* Course Description */
.course-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease-in-out;
}
/* Change Text Color on Hover */
.course-card:hover p {
    color: #fff;
}
/* Decorative Overlay Effect */
.course-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    transition: all 0.5s ease-in-out;
    opacity: 0;
}
/* Overlay Animation on Hover */
.course-card:hover::before {
    top: 0;
    left: 0;
    opacity: 1;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .course-card {
        padding: 18px;
    }
    .course-card h3 {
        font-size: 18px;
    }
    .course-card p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .course-card {
        padding: 16px;
        text-align: center;
    }
    .course-card .icon {
        font-size: 40px;
    }
    .course-card h3 {
        font-size: 17px;
    }
    .course-card p {
        font-size: 13px;
    }
}
/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #2b3e60);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
/* Section Title */
.achievements-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.achievements-section .section-title span {
    color: #FFD700; /* Gold Highlight */
}
.achievements-section .section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}
/* Wrapper for Horizontal Scroll */
.achievements-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
/* Scrolling Achievements */
.achievements-slider {
    display: flex;
    width: max-content;
    animation: scrollAnimation 25s linear infinite;
}
/* Achievement Card */
.achievement-card {
    background: #fff;
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    min-width: 300px;
    max-width: 320px;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.achievement-card:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}
.achievement-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.achievement-img img {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}
.achievement-card:hover .achievement-img img {
    transform: scale(1.1);
}
/* Content Inside Card */
.achievement-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFD700; /* Gold */
}
.achievement-content p {
    font-size: 15px;
    color: #000;
    opacity: 0.9;
    line-height: 1.5;
}
/* Infinite Scroll Animation */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 20px;
    }
    .achievement-card {
        min-width: 250px;
    }
}
/* Placement Section - Dark Themed */
.placement-section {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
}
/* Section Title */
.placement-section .section-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffcc00;
}
.placement-section .section-title span {
    color: #f8b400;
}
/* Subtitle */
.placement-section .section-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    color: #ddd;
}
/* Placement Stats - Grid Layout */
.placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
/* Stat Box */
.stat {
    background: #372670;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 4px solid #ffcc00;
}
/* Hover Effect */
.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.3);
}
/* Circular Progress Bar */
.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
}
/* SVG Progress */
.progress-svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}
/* Background Circle */
.bg-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}
/* Progress Circle */
.progress {
    fill: none;
    stroke: #ffcc00;
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease-in-out;
}
/* Counter Number */
.count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: #ffcc00;
}
/* Stat Text */
.stat p {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #ccc;
    transition: color 0.3s ease-in-out;
}
/* Hover Effect on Text */
.stat:hover p {
    color: #ffcc00;
}
/* Responsive */
@media (max-width: 768px) {
    .placement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat {
        padding: 25px;
    }
    .count {
        font-size: 32px;
    }
    .section-title {
        font-size: 34px;
    }
    .section-subtitle {
        font-size: 18px;
    }
}
/* Section Styling */
/* ====== Partner Section Styling ====== */
/* Partner Section */
.mt-6{
    margin-top: 60px !important;
}
.partner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    text-align: center;
    position: relative;
}
/* Attractive Header Styling */
.partner-header {
    margin-bottom: 30px;
}
.partner .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
}
.partner .section-title span {
    font-size: 2.1rem;
    border-radius: 5px;
    padding: 8px;
    background: antiquewhite;
    color: #ff9800;
}
/* Subtitle Styling */
.partner .section-subtitle {
    font-size: 1.2rem;
    color: #fff !important;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}
/* Underline Effect */
.partner .section-title::after {
    content: "";
    width: 100px;
    height: 4px;
    background: #ff9800;
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}
/* Partner Slider */
.partner-slider {
    margin-top: 50px;
    position: relative;
    padding: 20px 0;
}
/* Partner Card */
.partner-card {
    width: 180px;
    height: 100px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.partner-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}
.partner-card:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.partner-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: #ff9800;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #222a68;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ff9800;
    opacity: 0.5;
    transition: 0.3s;
}
.swiper-pagination-bullet-active {
    background: #222a68;
    opacity: 1;
}
/* Footer Styles */
.footer {
    background: #323c79; /* Dark Blue Background */
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* Footer Item */
.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Footer Icons */
.footer-item i {
    font-size: 18px;
    color: #02a657; /* Theme Highlight Color */
}
/* Footer Links */
.footer-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer-item a:hover {
    color: #02a657; /* Green Hover Effect */
}
/* Responsive: Stacked on Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}
/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}
/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #4466a6 50%, #FFC107 50%);
    text-align: center;
}
.section-title span {
    color: #ff9800;
}
/* Testimonial Box */
.testimonial-box {
    background: white;
    padding: 40px;
    max-width: 750px;
    margin: auto;
    border-radius: 12px;
    /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
    position: relative;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}
/* Quote Icon */
.testimonial-box::before {
    content: "\f10d"; /* FontAwesome quote icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: rgba(255, 152, 0, 0.2);
}
/* Student Image */
.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff9800;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
}
.testimonial-box:hover .testimonial-img {
    transform: scale(1.1);
}
/* Testimonial Text */
.testimonial-text {
    font-size: 18px;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding: 10px 20px;
}
.testimonial-text::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff9800;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}
/* Name and Role */
.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #222a68;
    margin-top: 15px;
}
.testimonial-role {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}
/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}
.company-logo {
  width: 75px !important;
  height: 75px !important;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-box strong {
  display: inline-block;
  font-size: 11px;
  background-color: #ff9800;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin:5px;
}
/* Infrastructure Section */
.infra-section {
    position: relative; /* Ensure children position relative to this */
    background: black;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
    z-index: 1; /* Base z-index for the section */
}
.infra-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    filter: brightness(0.5);
    z-index: -2; /* behind everything */
}
.infra-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(2, 166, 87, 0.4), rgba(0, 64, 133, 0.4), rgba(34, 42, 104, 0.4));
    background-size: 600% 600%;
    animation: gradientShift 15s ease infinite;
    z-index: 0; /* overlay between bg image and content */
}
/* Keep content above overlay */
.infra-title,
.infra-subtitle,
.infra-slider,
.infra-card {
    position: relative;
    z-index: 1;
}
/* Remove individual z-index overrides from infra-title and infra-subtitle */
/* Adjust font sizes and margins as you like */
.infra-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffcc00; /* Optional: your preferred color */
}
.infra-title span {
    color: #02a657;
}
.infra-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}
/* Infra slider styles */
.infra-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.infra-track {
    display: flex;
    gap: 20px;
    min-width: 100%;
}
/* Individual Cards */
.infra-card {
    flex: 0 0 300px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.9);
}
.infra-card:hover {
    transform: translateY(-5px);
}
.infra-card img {
    width: 100%;
    border-radius: 10px;
}
.infra-card h3 {
    font-size: 22px;
    margin-top: 15px;
    font-weight: bold;
    color: #ff9800;
}
.infra-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.custom-btn {
    cursor: none;
    background-color: #ff9800;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.custom-btn:hover {
    background-color: #e68900;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
 /* Modal Enhancements */
/* Modal Enhancements */
.modal-content {
    max-width: 420px;
    border-radius: 12px;
    background: rgba(13, 1, 78, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.modal label{
    text-align: center;
    color:#fff;
    font-weight: 700;
}
.modal-content:hover {
    transform: translateY(-4px);
}
/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #2C3E50 10%, #ff9800 90%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    text-align: center;
    padding: 14px;
    position: relative;
}
.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.btn-close {
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
/* Modal Body */
.modal-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.25);
}
/* Modal Footer */
.modal-footer {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    padding: 12px;
    justify-content: space-between;
}
/* Form Fields */
/* .form-control {
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.85rem;
    border: #ddd;
    color: #333;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(8px);
} */
.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.form-control:focus {
    border-color: #243D80;
    box-shadow: 0 0 10px rgba(36, 61, 128, 0.3);
    background: rgba(255, 255, 255, 0.4);
}
/* Style for the CAPTCHA container */
/* Style for Math CAPTCHA */
.math-captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
#mathCaptchaQuestion {
    font-weight: bold;
    font-size: 1.1rem;
    color: #222a68;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #02a657;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}
#mathCaptchaResult {
    margin: 1px;
    flex: 1;
    padding: 10px;
    border: 2px solid #02a657;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}
#mathCaptchaResult:focus {
    outline: none;
    border-color: #004085;
    box-shadow: 0 0 8px rgba(0, 64, 133, 0.5);
}
/* Facts Section */
.facts {
    background: linear-gradient(135deg, #f5f0eb, #e6ddd3);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/* Subtle Background Pattern */
.facts::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 200%;
    height: 150%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.2;
    z-index: 0;
}
.fact-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}
.fact-left {
    max-width: 500px;
}
.fact-left h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222a68;
    line-height: 1.4;
    text-transform: capitalize;
}
.fact-left span {
    color: #02a657;
}
.fact-left p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-top: 10px;
}
.fact-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
/* Individual Fact Card */
.fact {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* Hover Effects */
.fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
}
.fact-icon {
    margin-right: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}
/* Hover Effect for Icons */
.fact:hover .fact-icon {
    transform: scale(1.1);
}
/* Unique Colors for Each Fact */
.fact:nth-child(1) .fact-icon {
    background: #222a68;
}
.fact:nth-child(2) .fact-icon {
    background: #02a657;
}
.fact:nth-child(3) .fact-icon {
    background: #d9534f;
}
.fact:nth-child(4) .fact-icon {
    background: #f39c12;
}
/* Typography */
.fact h3 {
    font-size: 26px;
    font-weight: bold;
    color: #222a68;
    margin: 0;
    transition: color 0.3s ease;
}
.fact:hover h3 {
    color: #02a657;
}
.fact p {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin: 5px 0 0;
    transition: color 0.3s ease;
}
.fact:hover p {
    color: #333;
}
/* Responsive Design */
@media (max-width: 992px) {
    .fact-div {
        flex-direction: column;
        text-align: center;
    }
    .fact-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fact {
        justify-content: center;
        text-align: left;
    }
    .fact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .fact h3 {
        font-size: 22px;
    }
    .fact p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .fact-left h2 {
        font-size: 28px;
    }
    .fact-left p {
        font-size: 16px;
    }
}
/* Placement Section */
/* Placement Section */
.placement {
    background-color: #fcfaee;
    padding: 60px 0;
}
/* Background Container */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  display: none !important;
}
/* Swiper Container */
.swiper.mySwiper {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
/* Logo Box */
.company-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.3s ease;
}
.company-box:hover {
    transform: scale(1.05);
}
/* Image Styling */
.logo-company img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* filter: grayscale(100%); */
}
.logo-company img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #004085;
    transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #02a657;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    transition: background 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: #004085;
}
.placement-company .heading {
    margin-bottom: 30px;
}
.placement-company .heading h3 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    color: #222a68;
}
.placement-company .heading p {
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    color: #555;
}
/* Placement Background */
.placement {
    background-color: #f8f9fa;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
/* Placement Container */
.placement-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(132deg, #37286c 90%, #FFC107 10%);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* Left Content Section */
.placement-content {
    flex: 1;
    color: #fff;
    text-align: left;
    padding-right: 40px;
    max-width: 55%;
    z-index: 2;
}
.placement-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}
.placement-content h2 span {
    color: #ffd700; /* Gold Accent */
}
.placement-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
/* Placement Amount */
.placement-amount {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.placement-amount .amount {
    color: #ffd700;
    font-size: 64px;
    font-weight: 800;
}
.placement-amount .crore {
    color: #ffd700;
    font-size: 32px;
    font-weight: 700;
}
.placement-amount .country {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
/* Right Image Section */
.placement-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 45%;
    position: relative;
}
.placement-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 10%;
    /* border: 5px solid rgba(255, 255, 255, 0.5); */
    /* box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s ease-in-out;
}
.placement-image img:hover {
    transform: scale(1.05);
}
/* Name Tag */
.name {
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 15%;
    font-weight: 700;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 6px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
/* Hover Effect */
.placement-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.4);
}
/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .placement-bg {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .placement-content {
        max-width: 100%;
        padding: 0;
    }
    .placement-image {
        max-width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    .placement-content h2 {
        font-size: 34px;
    }
    .placement-amount .amount {
        font-size: 54px;
    }
    .placement-amount .crore {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .placement-bg {
        padding: 30px;
    }
    .placement-content h2 {
        font-size: 30px;
    }
    .placement-content p {
        font-size: 16px;
    }
    .placement-amount {
        padding: 10px 15px;
    }
    .placement-amount .amount {
        font-size: 46px;
    }
    .placement-amount .crore {
        font-size: 26px;
    }
    .placement-image img {
        max-width: 220px;
    }
    .name {
        font-size: 20px;
        bottom: 10px;
        left: 5%;
    }
}
@media (max-width: 480px) {
    .placement-bg {
        padding: 20px;
    }
    .placement-content h2 {
        font-size: 24px;
    }
    .placement-content p {
        font-size: 14px;
    }
    .placement-amount {
        gap: 6px;
        padding: 8px 12px;
    }
    .placement-amount .amount {
        font-size: 36px;
    }
    .placement-amount .crore {
        font-size: 20px;
    }
    .placement-amount .country {
        font-size: 14px;
    }
    .name {
        font-size: 16px;
        bottom: 10px;
        left: 3%;
    }
    .placement-image img {
        max-width: 180px;
    }
}
/* Testimonial Section */
/* Section Styling */
.testi-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}
.testi-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.testi-left {
    width: 30%;
}
.testi-left h3 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
}
.testi-left p {
    font-size: 18px;
    color: #444;
    margin: 10px 0 20px;
}
.btns {
    display: flex;
    gap: 12px;
}
.btns-innr {
    width: 45px;
    height: 45px;
    background: #222a68;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 18px;
    color: white;
}
.btns-innr:hover {
    background: #02a657;
}
/* Carousel Section */
.carousel-container {
    width: 70%;
}
/* Ensuring Equal Height for Items */
.owl-carousel .item {
    background: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensures equal height */
}
.owl-carousel ol, ul{
    padding-left: 0.61rem !important;
}
.owl-carousel .owl-stage {
    display: flex;
}
/* Enlarged Image */
.item img {
    width: 100%;
    height: auto; /* Increased height */
    object-fit: cover; /* Maintains aspect ratio */
    border-radius: 10px;
}
/* Equal Height for Content */
.testi-content {
    flex-grow: 1; /* Ensures equal height */
    margin-top: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.testi-content h3 {
    font-size: 15px;
    color: #02a657;
    margin-bottom: 8px;
}
.testi-content p {
    font-size: 13px;
    font-weight: bold;
    color: #222a68;
    margin-bottom: auto; /* Pushes elements to maintain equal spacing */
}
/* Play Button */
.play-icon {
    font-size: 40px;
    color: #d9534f;
    transition: 0.3s;
    cursor: pointer;
}
.play-icon:hover {
    color: #c9302c;
}
/* Modal Styling */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative; /* Ensure close button is positioned relative */
}
/* Perfectly Positioned Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.close-modal:hover {
    color: #d9534f;
    background: #f5f5f5;
}
/* Responsive */
@media (max-width: 768px) {
    .testi-grid {
        flex-direction: column;
        text-align: center;
    }
    .testi-left,
    .carousel-container {
        width: 100%;
    }
    .btns {
        justify-content: center;
    }
    .video-modal-content {
        width: 90%;
    }
    .item img {
        height: auto; /* Adjust image size for smaller screens */
    }
    .owl-carousel .item{
        margin-top:20px;
    }
}
 .course-card {
      margin-bottom: 40px;
    }
    .course-card h3 {
      margin-bottom: 30px;
      font-weight: 700;
      color: #333;
      border-bottom: 2px solid #0d6efd;
      display: inline-block;
      padding-bottom: 5px;
    }
    .custom-card {
      background-color: #fff;
      padding: 25px 20px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      height: 100%;
    }
    .custom-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .custom-card {
      font-size: 36px;
      color: #0d6efd;
    }
    .edu-icon-wrapper {
		 width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: #e9f1ff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }
    .custom-card h5 {
      font-size: 16px;
      font-weight: 600;
      color: #333;
      margin-top: 10px;
    }
 .gradient-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff7e00, #ff3c00);
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}