/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  line-height: 1.7;
  background-color: #f7f7f7;
  color: #333;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 33px;
  background: linear-gradient(
    90deg,
    rgba(22, 15, 131, 1) 0%,
    rgba(9, 9, 121, 0.980071252133666) 60%,
    rgba(0, 21, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
  margin-top: 0px !important;
}

/* .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
} */

.section-subtitle {
  color: #777;
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1em;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button.primary {
  background: rgb(23, 13, 166);
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
}

.cta-button.secondary {
  background-color: #6c757d;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px; /* Adjust as needed */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Add this new rule to override the default nav link styles for details-button */
nav ul li a.details-button {
  color: #ffffff; /* Override the default nav link color */
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
}

nav ul li a.details-button:hover {
  color: #ffffff; /* Keep text white on hover */
  opacity: 0.9; /* Add subtle hover effect */
}

nav ul li a:hover {
  color: #007bff;
}

.hamburger {
  display: none;
  font-size: 1.5em;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 41%,
    rgba(0, 21, 255, 1) 100%
  );
  padding: 120px 0;
  padding-bottom: 60px !important;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Subtle overlay */
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 2;
  padding-right: 60px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 45px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content .tagline {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.hero-content p {
  font-size: 1.15em;
  color: #555;
  margin-bottom: 30px;
}

.hero-image {
  flex: 1;
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Courses Section */
.courses {
  padding: 80px 0;
  background-color: #fff;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.course-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgb(20 52 205 / 20%);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.course-card a {
  margin-top: 25px;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.course-card i {
  font-size: 2.5em;
  background: linear-gradient(
    90deg,
    rgba(22, 15, 131, 1) 0%,
    rgba(9, 9, 121, 0.980071252133666) 60%,
    rgba(0, 21, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 15px;
}

.course-card h3 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.course-card p {
  color: #555;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.tag.short-term {
  background-color: #27ae60;
}

.tag.long-term {
  background-color: #e74c3c;
}

.details-button {
  padding: 10px 20px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
  border-radius: 6px;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 700;
  border: none;
}

.details-button:hover {
  background-color: #007bff;
  color: #fff;
}

/* Blueprint Section */
.blueprint {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.blueprint .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blueprint-content {
  flex: 1;
  padding-right: 60px;
  animation: fadeInLeft 1s ease-out;
}

.blueprint .section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 30px;
}

.blueprint .section-title::after {
  background-color: #fff;
  left: 0;
  transform: translateX(0);
}

.blueprint .featured-text {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.8;
}

.blueprint-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.blueprint-content ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.blueprint-content ul li i {
  font-size: 1.2em;
  margin-right: 15px;
  color: #fff;
}

.blueprint-image {
  flex: 1;
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.blueprint-image img {
  max-width: 100%;
  height: auto;
}

/* Why Choose Us Section */
.why-us {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.why-us-card {
  background-color: #fff;
  padding: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: 0 6px 15px rgb(20 52 205 / 20%);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  color: white;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-us-card i {
  font-size: 2.5em;
  color: #2ecc71; /* A different accent color */
  margin-bottom: 15px;
}

.why-us-card.agency-backed i {
  color: #007bff;
}

.why-us-card h3 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 20px;
}

.why-us-card p {
  color: #555;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background-color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  font-size: 1em;
  text-align: center;
  padding: 0 20px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f0fb 100%);
}

.contact-form {
  width: 390px;
  margin: 20px auto 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 28px rgba(138, 137, 137, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
  text-align: left;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
textarea,
.form-group input[type="number"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

/* Footer */
footer {
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 0.9em;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 30px;
  }

  .hero .container,
  .blueprint .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .blueprint-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-image img,
  .blueprint-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    text-align: center;
  }

  nav ul.show {
    display: flex !important;
  }
  nav ul li {
    margin-left: 30px;
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .hamburger {
    display: block;
  }
}

.hero-buttons .course-btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: rgb(12 12 133 / 98%);
  background-color: white;
  border-radius: 6px;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 700;
}
.hero-buttons {
  background-color: white;
  display: inline-block;
  margin-top: 10px;
  border-radius: 10px;
}
/*  */

.industry-relevant h3 {
  padding-top: 20px;
}
.about-content p {
  text-align: justify;
}
.space {
  padding: 60px 0px;
}
.highlights-card {
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
}

.highlights-card h3 {
  color: white;
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
}
.highlights-card p {
  color: white;
}
td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 15px;
}
th {
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
  color: white;
}

table {
  border: 1px solid black;
  width: 100%;
}
.space-bottom {
  padding-bottom: 60px;
}
.call-to-action {
  border: 2px solid rgb(8 21 165);
  padding: 20px 10px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgb(20 52 205 / 20%);
}
.call-to-action h3 {
  background: linear-gradient(
    90deg,
    rgba(22, 15, 131, 1) 0%,
    rgba(9, 9, 121, 0.980071252133666) 60%,
    rgba(0, 21, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-sec .col-lg-6 img {
  width: 100%;
  border-radius: 20px;
}
.enroll-btn a {
  text-align: center;
}
.tagline {
  font-size: 20px;
}
.list li a {
  text-decoration: none;
  color: white;
}
.list li {
  font-size: 18px;
  list-style-type: none;
}
.footer .col-lg-6 p {
  margin-bottom: 0px !important;
}
/* thank you */

.mission-vision {
  padding: 80px 0px;
  background-color: #f7f7f7;
  margin: 70px 0px;
}

.mission-box {
  background: linear-gradient(
    90deg,
    rgba(23, 13, 166, 1) 17%,
    rgba(12, 12, 133, 0.980071252133666) 93%,
    rgba(8, 21, 165, 1) 100%
  );
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.mission-content {
}

.mission-icon {
  background-color: #ffffff;
  padding: 10px;
  height: 90px;
  border-radius: 20px;
}

.mission-box {
  display: flex;
  justify-content: space-evenly;
  gap: 35px;
  align-items: center;
  height: 160px;
}

.highlights-gap {
  padding: 0px 0px 60px 0px;
}

@media (max-width: 768px) {
  .mission-box {
    display: flex;
    justify-content: space-evenly;
    gap: 35px;
    align-items: center;
    height: 200px;
    margin-bottom: 30px;
  }
  .mission-vision {
    padding: 40px 0px;
    background-color: #f7f7f7;
    margin: 70px 0px;
  }

  .smonlyshow {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  #hidesm {
    display: none;
  }

  header .container {
    padding: 0px 30px 15px 0px;
  }
  .contact-form {
    width: 100%;
    margin: 20px auto 0;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 28px rgba(138, 137, 137, 0.25),
      0 10px 10px rgba(0, 0, 0, 0.22);
  }
}

@media (min-width: 1200px) {
  .smonlyshow {
    display: none;
  }
}
