:root {
  --primary-blue: #1E90FF;
  --primary-yellow: #d3a634;
  --secondary-green: #005c34;
  
            --primary-blue-light: #3d3dc7;
            --primary-blue-dark: #080883;
            --primary-blue-darker: #050562;
            
            /* Complementary Colors */
            --complementary-orange: #A5690C;
            --complementary-orange-light: #d3a634;
            --complementary-orange-dark: #83540a;
            
            /* Analogous Colors */
            --analogous-purple: #450CA5;
            --analogous-cyan: #0C45A5;
            
            /* Triadic Colors */
            --triadic-red: #A50C45;
            --triadic-green: #45A50C;
            
            /* Neutral Colors */
            --neutral-light: #f8f9ff;
            --neutral-medium: #e6e8f5;
            --neutral-dark: #2a2a4a;
            
            /* Gradients */
            --primary-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--analogous-purple) 100%);
            --secondary-gradient: linear-gradient(135deg, var(--complementary-orange) 0%, var(--complementary-orange-light) 100%);
            --accent-gradient: linear-gradient(135deg, var(--analogous-cyan) 0%, var(--primary-blue-light) 100%);
            --success-gradient: linear-gradient(135deg, var(--triadic-green) 0%, #66bb6a 100%);
            --dark-gradient: linear-gradient(135deg, var(--neutral-dark) 0%, var(--primary-blue-darker) 100%);
            
            /* Glass effect */
            --glass-bg: rgba(12, 12, 165, 0.1);
            --glass-border: rgba(12, 12, 165, 0.2);
            --glass-bg-light: rgba(255, 255, 255, 0.1);
            --glass-border-light: rgba(255, 255, 255, 0.2);
            
            /* Shadows */
            --shadow-primary: 0 20px 60px rgba(12, 12, 165, 0.3);
            --shadow-secondary: 0 15px 45px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: "Montserrat", sans-serif;
}

.bg-primary-blue {
  background-color: var(--primary-blue) !important;
}

.text-primary-green {
  color: var(--primary-blue) !important;
}

.btn-primary-blue {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-green:hover {
  background-color: var(--secondary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 66, 37, 0.15);
}

.bg-yellow {
  background: var(--primary-yellow) !important;
}

.text-yellow {
  color: var(--primary-yellow) !important;
}

.nav-link {
  color: var(--primary-blue) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 1rem 1.2rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-yellow) !important;
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-brand {
  padding: 0;
}

/* .hero-section {
  min-height: 350px;
  background-size: cover;
  background-position: center;
} */

.hero-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}
.hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 3;
            width: 90%;
            max-width: 1200px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInDown 1s ease-out;
        }

        .hero-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .hero-content .highlight {
            background: linear-gradient(45deg, var(--complementary-orange-light), #E66F07);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .btn-hero-primary {
            background: var(--secondary-gradient);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 15px 35px rgba(165, 105, 12, 0.3);
            transition: var(--transition);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(165, 105, 12, 0.5);
            color: white;
            text-decoration: none;
        }

        .btn-hero-secondary {
            background: var(--glass-bg-light);
            color: white;
            padding: 1.2rem 2.5rem;
            border: 2px solid var(--glass-border-light);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }

.important-notice {
  border-left: 4px solid var(--primary-yellow);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.step-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-yellow);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.display-4 {
  font-weight: 800;
  letter-spacing: 1px;
}

.display-5 {
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}

.theme-color {
  color: #b78e2d !important;
}

        .carousel-indicators li {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid white;
        }

        .carousel-indicators .active {
            background-color: var(--complementary-orange);
        }


.btn-warning {
  background-color: var(--primary-yellow);
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #c69500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}

.btn-outline-primary-green {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-outline-primary-green:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 66, 37, 0.15);
}

.card-header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

footer {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-links ion-icon {
  font-size: 20px;
  color: white;
}

.contact-info ion-icon {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 5px;
}

.large-radio {
  width: 50px;
  height: 50px;
  accent-color: #1E90FF; /* Optional: Customize the color */
}

.form-group div div {
  font-size: 14px;
  margin-top: 5px; /* Adjust spacing between radio button and text */
}

.btn-apply-now {
  background-color: #1E90FF !important;
  border-color: #003348 !important;
  color: white !important;
}

@media (max-width: 768px) {
  .social-links {
    text-align: center;
    margin-top: 10px;
  }

  .contact-info {
    /* text-align: center; */
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }
}

 /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Add these to your existing CSS */

/* Hero Section Responsiveness */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content h2 {
        font-size: 1.5rem;
    }
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Rector Section Responsiveness */
@media (max-width: 768px) {
    .rector-section .col-lg-4 {
        margin-top: 2rem;
    }
    .rector-card {
        text-align: center;
    }
}

/* Courses Section Responsiveness */
.course-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.course-list {
    flex-grow: 1;
}

/* Floating Stats Responsiveness */
.floating-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
}
.stat-card {
    min-width: 120px;
}

/* Accordion Fixes for Bootstrap 4 */
.accordion .card {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}
.accordion .card-header {
    padding: 0;
    background-color: white;
}
.accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 100% 100%;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
}