.qhero {
  width: 100%;
  padding: 60px 170px;
  position: relative;
  background: 
    
    url("../assets/images/roungtacollegebaner.png") center/cover no-repeat;
  overflow: hidden;
}

.qhero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.qhero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qhero-title {
  color: #fff;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin: 0;
}

.qhero-subtitle {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* BUTTON */
.qhero-actions {
  display: flex;
}

.qhero-btn {
  width: 240px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  transition: 0.3s ease;
}

.qhero-btn:hover {
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.qhero-imageBox {
  flex: 1;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.qhero-imageBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
  .qhero {
    padding: 50px 60px;
  }

  .qhero-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .qhero-container {
    flex-direction: column;
    text-align: center;
  }

  .qhero {
    padding: 40px 20px;
  }

  .qhero-imageBox {
    width: 100%;
    height: 260px;
  }

  .qhero-btn {
    width: 100%;
  }
}




.qimage-section {
  width: 100%;
  padding: 60px 170px;
  overflow: hidden;
}

.qimage-container {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
}

.qimage-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1024px) {
  .qimage-section {
    padding: 50px 60px;
  }
}

@media (max-width: 768px) {
  .qimage-section {
    padding: 30px 20px;
  }

  .qimage-container {
    height: 200px;
  }
}




.qabout {
  width: 100%;
  padding: 60px 170px;
  background: radial-gradient(ellipse at center, #1E3D6B 0%, #0E264E 100%);
  overflow: hidden;
}

.qabout-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.qabout-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qabout-title {
  color: #FCCD0E;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin: 0;
}

.qabout-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* RIGHT SIDE */
.qabout-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.qabout-card {
  width: 100%;
  display: flex;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(139deg, #FCCD0E 0%, #C19E0D 100%);
  border-radius: 6px;
  align-items: flex-start;
}

/* IMAGE */
.qabout-card-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.qabout-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.qabout-card-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #1E3D6B;
}

.qabout-card-content p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1024px) {
  .qabout {
    padding: 50px 60px;
  }

  .qabout-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .qabout-container {
    flex-direction: column;
    text-align: center;
  }

  .qabout {
    padding: 40px 20px;
  }

  .qabout-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qabout-card-img {
    width: 80px;
    height: 80px;
  }
}