/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

:root {
  --primary: #273246;
  --primary-dark: #273246;
  --secondary: #273246;
  --text-dark: #273246;
  --text-light: #64748b;
  --background: #f4f7fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar Styles */
/* Navbar Styles */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2{
  text-align: center;
  margin-bottom: 30px;
}
/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;         /* Add this */
    overflow-y: auto; 
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/*  hero */

.hero-section {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  flex-wrap: wrap;
  background:#26365a;
  background: url('../images/about_comany.webp')center center/cover no-repeat;
  height: 100vh;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff ;
}

.hero-content h1 span {
  color:rgb(231, 76, 60);
}

.hero-content p {
  font-size: 16px;
  color: white;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: rgb(231, 76, 60);
  color: #fff;
}

.btn-primary:hover {
  background-color: #273246;
}

.btn-secondary {
  border: 2px solid #273246;
  background-color: white;
  color: #273246;
}

.btn-secondary:hover {
  background-color: #273246;
  color: #fff;
}

.hero-image {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
}

.badge {
  position: absolute;
  background: white;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  width: 120px;
}

.badge strong {
  font-size: 16px;
  color: #1e3a8a;
}

.badge.top-left {
  top: 10%;
  left: 15%;
}

.badge.top-right {
  top: 10%;
  right: -15%;
}

.badge.bottom {
  bottom: 10%;
  left: 25%;
  transform: translateX(-50%);
}

/* Page Header */
/* .about-banner {
  background-attachment: fixed;
  animation: parallaxScroll 10s ease-in-out infinite alternate;
}

.page-title {
  animation: zoomIn 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
} */

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  color: var(--text-dark);
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Programs Section */


.program-category {
  margin-bottom: 60px;
}

.program-category h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
  text-align: center;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-column ul {
  list-style: none;
}

.course-list li {
  padding: 15px;
  margin-bottom: 10px;
  background-color: var(--background);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  padding-left: 35px;
}

.course-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: var(--primary);
  font-weight: bold;
}

.course-list li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
  border-left: 4px solid var(--primary);
}
/* program and certificate section */
.programs-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

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

.program-card {
  background: white;
  color: var(--text-dark);
  padding: 40px 30px;
  border-radius: 16px;
  width: 300px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
  position: relative;
  overflow: hidden;

  /* Floating animation */
  animation: floatAnimation 3s ease-in-out infinite;

  /* Scroll reveal initial state */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

.program-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.program-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  animation-play-state: paused;
}

.program-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.program-card:hover h3 {
  color: #6b46c1;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  margin: 15px auto 25px;
  transition: width 0.3s ease;
}

.program-card:hover .divider {
  width: 80px;
}

.program-card p {
  margin: 12px 0;
  font-size: 16px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.program-card:hover p {
  color: var(--text-dark);
}

.program-card p:last-of-type {
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 20px;
  transition: color 0.3s ease;
}

.program-card:hover p:last-of-type {
  color: #6b46c1;
}

.highlight {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.highlight::before {
  height: 8px;
  background: linear-gradient(90deg, #4f46e5, #3b82f6);
}

.highlight:hover {
  transform: scale(1.05) translateY(-10px);
}

@media (max-width: 768px) {
  .programs-grid {
    flex-direction: column;
    align-items: center;
  }

  .program-card {
    width: 100%;
    max-width: 320px;
  }

  .highlight {
    transform: scale(1);
  }

  .highlight:hover {
    transform: translateY(-10px);
  }
}

/* Keyframes for motion */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

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


/* Program Detail Section - Modern Design */
.program-detail-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  padding: 80px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  position: relative;
  overflow: hidden;
}

.program-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.program-detail-section .container {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-detail-section .container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.program-detail-section .container:hover .program-icon {
  transform: rotate(360deg);
}

.program-detail-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 20px 0 0 20px;
}

.program-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 30px;
  margin-right: 100px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: -0.5px;
}

.program-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
  border-radius: 2px;
}

.program-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(79, 70, 229, 0.2);
  transition: all 0.3s ease;
}

.program-description:hover {
  border-left: 2px solid var(--primary);
  background-color: rgba(255, 255, 255, 0.7);
  transform: translateX(5px);
  padding-right: 10px;
}

.program-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

.program-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .program-detail-section {
    padding: 60px 15px;
  }

  .program-detail-section .container {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .program-title {
    font-size: 26px;
  }

  .program-description {
    font-size: 15px;
    padding-left: 15px;
  }
}


/* Education Services Section */
/* .education-services {
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
} */

/* University Partners Section */
/* .university-partners {
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    max-width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
} */
/* Contact Section */
/*Contact section*/
.contact-container {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  background: #f8fafa;
  border-radius: 8px;
  max-width: 100%px;
  margin: 0 auto;
}

.contact-container h2 {
  color: #273246;
  margin-bottom: 10px;
}

.contact-container p {
  color: #273246;
  margin-bottom: 25px;
}

.contact-btn {
  display: inline-block;
  background: #273246;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  background: #273246;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}


/* Responsive Styles */
@media (max-width: 992px) {
  .header-content h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

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

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



  .social-icons {
    justify-content: center;
  }
}


/* Footer Section */

.footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color:orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;
  white-space: pre-line;
  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* Keyframes for floating animation */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* General Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .hero-section{
      height: 60vh;
    }
    .container {
        max-width: 960px;
    }

    .hero-section {
        padding: 60px 5%;
    }

    .program-detail-section .container {
        max-width: 800px;
    }

    .footer-container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-section {
        height: auto;
        padding: 80px 5% 40px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        flex: 1 1 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        flex: 1 1 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .program-detail-section .container {
        max-width: 700px;
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    
    body {
        font-size: 14px;
    }

    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 5% 30px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .program-category h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

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

    .program-card {
        width: 100%;
        max-width: 350px;
    }

    .program-detail-section .container {
        padding: 25px;
        margin-bottom: 30px;
    }

    .program-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .program-icon {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-col {
        flex: 1 1 100%;
        margin: 15px 0;
    }

    .footer-socials a {
        margin: 8px 5px 0;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
   
    .hero-section {
        padding: 40px 5% 20px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .program-category h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .course-list li {
        padding: 12px;
        margin-bottom: 8px;
        padding-left: 30px;
    }

    .program-card {
        padding: 30px 20px;
    }

    .program-card h3 {
        font-size: 20px;
    }

    .program-card p {
        font-size: 14px;
    }

    .program-detail-section .container {
        padding: 20px;
    }

    .program-title {
        font-size: 22px;
    }

    .program-description {
        font-size: 14px;
        padding-left: 10px;
    }

    .footer-container {
        padding: 0 15px;
    }
}

/* Hover effects for touch devices */
@media (hover: none) {
    .course-list li:hover,
    .program-card:hover,
    .program-detail-section .container:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .program-card:hover .divider {
        width: 50px;
    }

    .program-card:hover h3,
    .program-card:hover p,
    .program-card:hover p:last-of-type {
        color: inherit;
    }

    .program-detail-section .container:hover .program-icon {
        transform: none;
    }
}


/*contact us button footer*/
.btn {
    padding: 10px 20px;
    background-color: rgb(231, 76, 60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.btn:hover {
    background-color: rgb(241, 93, 77);
}
@media (min-width: 2560) {
  .hero-section{
    height:60vh;
  }

}