.qsection{
    padding-top: 100px;
    width: 100%;
    min-height: 700px;
    background-image: url(../images/background2.jpg);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 50px;
}
.questions{

    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 80px;
    margin: 15px;
}
.questions h4{
    font-size: 20px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;

}
.questions h1{
    font-size: 50px;
}
.questions button{
    font-size: 30px;
    background-color: #00000000;
    border: 0;
    cursor: pointer;
    margin-left: 50px;
}
.qsection hr{
    width: 100%;
}
.answer{
    width: 100%;
    overflow: hidden;
}
.answer_unactive{
    height: 0;
    min-height: 0;
    padding-bottom: 0px;
    overflow: hidden;
    transition:all .1s linear;
}
.answer_active{
    height: auto;
    overflow: hidden;
    min-height: 50px;
    padding-bottom: 20px;
    transition:all .1s linear;
}
.skills-sec {
    background: linear-gradient(145deg, #001a4d, #012060);
    padding: 110px 6vw;
    position: relative;
    overflow: hidden;
}

/* Background Parallax Glow */
.skills-sec::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,170,0,0.35), rgba(255,170,0,0));
    top: 10%;
    left: 15%;
    filter: blur(40px);
    z-index: 0;
}
.skills-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 25px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.skills-text {
  flex: 1 1 550px;
}

.skills-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #f9c400;
  margin-bottom: 18px;
}

.skills-intro {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* SKILL GRID */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* SKILL CARDS */
.skill-card {
  background: #fdfdfd;
  padding: 22px 20px;
  border-radius: 14px;
  text-align: left;
  transition: 0.3s ease;
  z-index: 1;
}

.skill-card i {
  font-size: 32px;
  color: #ffaa00;
  margin-bottom: 12px;
}

.skill-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0a1b4d;
  margin-bottom: 6px;
}

.skill-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.skill-card:hover {
      box-shadow: 0 12px 30px rgba(255, 255, 255, 0.408);
        transform: translateY(-8px);
}


/* Glow Effect */
.skills-glow {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,170,0,0.45), rgba(255,170,0,0));
  filter: blur(35px);
  border-radius: 50%;
  z-index: -1;
}

/* RESPONSIVE */
@media(max-width: 980px){
  .skills-container {
    flex-direction: column-reverse;
  }
}
/* ===== FULL WIDTH MODERN COURSE SECTION ===== */
.course-fullwidth {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  overflow-x: hidden;
  border-top: 1px solid #eee;
}

/* ===== HERO AREA ===== */
.course-hero {
  width: 100%;
  display: flex;
  padding: 60px 80px;
  justify-content: space-between;
  align-items: center;
  background: #001b5e;
  color: white;
}

.course-hero-content {
  flex: 1.2;
}

.course-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 15px;
}

.course-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 550px;
}

.course-highlights {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 0.95rem;
}

.course-hero-img {
  flex: 1;
  text-align: right;
}

.course-hero-img img {
  width: 460px;
  height: auto;
  object-fit: contain;
}

/* ===== BODY GRID ===== */
.course-body {
  display: flex;
  width: 100%;
  padding: 50px 80px;
  gap: 60px;
}

.course-left {
  flex: 2;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #001b5e;
}

.inner-heading {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.course-list li {
  margin: 7px 0;
  line-height: 1.5;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f7f7f7;
  padding: 20px;
  margin: 15px 0;
  border: 1px solid #ddd;
}

.info-grid h4 {
  margin-bottom: 5px;
  color: #001b5e;
}

/* ===== RIGHT SIDEBAR ===== */
.course-right {
  flex: 1;
}

.course-sticky {
  position: sticky;
  top: 120px;
  padding: 20px;
  border-left: 3px solid #001b5e;
  background: #f8f9fb;
}

.course-sticky h3 {
  margin-bottom: 15px;
}

.quick-info li {
  margin-bottom: 10px;
}

.quick-info span {
  font-weight: 600;
}

.course-btn {
  display: block;
  margin-top: 25px;
  text-align: center;
  background: #001b5e;
  color: white;
  padding: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .course-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .course-hero-img img {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
  }

  .course-body {
    flex-direction: column;
    padding: 30px 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .course-sticky {
    position: static;
    border-left: none;
    border-top: 3px solid #001b5e;
    margin-top: 20px;
  }
}
/* HERO SECTION */
.hero {
    color: #fff;
    text-align: center;
    padding: 305px 6vw;
    text-align: left;
    padding-bottom: 6px;
    margin-top: 80px;
    background-image: url("../media/courses-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero h1{font-size:3rem;margin-bottom:20px}
.hero p{font-size:1.2rem;margin-bottom:30px}
.hero-btn{display:inline-block;padding:14px 28px;background:#ff7a00;color:#000;font-weight:700;text-decoration:none;border:none;border-radius:4px;}

/* COURSE SECTION */
.gsit-courses {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 12px 0;
    font-family: Inter,system-ui,sans-serif;
}
.gsit-inner {
    max-width: 1400px;
    margin: auto;
    padding: 5vw;
    padding-top: 37px;
}
.gsit-tabs{display:flex;gap:14px;margin-bottom:50px}
.tab{padding:14px 28px;border-radius:999px;border:none;background:#e5e7eb;font-weight:600;cursor:pointer}
.tab.active{background:#1e3a8a;color:#fff;box-shadow:0 10px 25px rgba(30,58,138,.25)}
.course-wrapper{display:grid;grid-template-columns:1fr 1.7fr;gap:45px}
.image-pane{display:flex}
.img-box{overflow:hidden;box-shadow:0 15px 35px rgba(0,0,0,.12)}
.img-box img{width:100%;height:100%;object-fit:cover;transition:opacity .45s}
.fade-out{opacity:0}
.content-pane{background:#fff;padding:45px;box-shadow:0 25px 60px rgba(0,0,0,.08)}
.course-block{display:none}
.course-block.active{display:block}
.meta{display:flex;gap:14px}
.tag{background:#dbeafe;padding:6px 14px;font-weight:600}
.tagline{color:#1e40af;font-weight:600}
section{margin-top:0px;padding-top:12px;border-top:1px solid #eef2f7}
section ul {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    gap:10px;
}
section ul li{
  display: flex;
  gap: 10px;
}
.two-col,.roles{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
.apply-btn{
  display: inline-block;
  font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    padding: 10px 15px;
    background-color: #f8b600;
    color: #fff;
    border-radius: 100px;
    transition: all .2s linear;
    cursor: pointer;
    text-decoration: none;
    margin-top: 50px;
}
@media(max-width:900px){.course-wrapper{grid-template-columns:1fr}}
@media screen and (max-width: 580px) {
.gsit-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}
.content-pane {
    background: #fff;
    padding: 6vw;
    box-shadow: none;
}

}