* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px; 
  background: #fff;
}

.logo img {
  height: 45px;
  margin-left: 20px;
}

.login-btn {
  background: #ff6a00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 20px;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url('image/mainBanner.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 80px;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* FORM */
.form-box {
  position: relative;
  background: #f2f2f2;
  padding: 30px;
  width: 450px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 100%;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-box input,
.form-box select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* PHONE FIELD */
.phone {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.phone span {
  padding: 12px;
  background: #eaeaea;
  font-size: 14px;
}

.phone input {
  border: none;
  flex: 1;
}

/* CHECKBOX TEXT */
.checkbox {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #444;
  align-items: flex-start;
}

.checkbox input {
  margin-top: 5px;
}

.checkbox p {
    font-size: 12px;
}

.checkbox span {
  color: #0077cc;
  font-weight: 600;
}

/* BUTTON */
.register-btn {
  background: #ff6a00;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* LOGIN TEXT */
.login-text {
  text-align: center;
  font-size: 13px;
}

.login-text span {
  color: #0077cc;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    height: 25px;
    margin-left: 0;
  }

  .login-btn {
    padding: 6px 14px;
    font-size: 14px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 20px;
  }

  .form-box {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
  }

}






/* STATS SECTION */
.stats-section {
  background: #f3f3f3;
  padding: 30px 20px;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* STAT BOX */
.stat-box {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.stat-box p {
  font-size: 14px;
  color: #444;
  margin-top: 5px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 40px;
  background: #a7a6a6;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {
  .stats-container {
    justify-content: center;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .stat-box h2 {
    font-size: 22px;
  }

  .stat-box p {
    font-size: 12px;
  }
}






/* ABOUT SECTION */
.about-section {
  /* background: #f5f5f5; */
  padding: 40px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  display: block;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.about-content p {
  font-size: 16px;
  line-height: 24px;
  color: #444;
  font-weight: 500;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

  .about-container {
    flex-direction: column; /* stack */
    gap: 40px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .about-section {
    padding: 30px 15px;
  }

  .about-container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  /* IMAGE */
  .about-image img {
    border-radius: 15px;
  }

  /* TEXT */
  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.6;
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .about-content h2 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 13px;
  }

}









/* SECTION */
.faculty-section {
  /* background: #f5f5f5; */
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 35px;
  font-weight: 700;
}

.section-header p {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* WRAPPER */
.faculty-wrapper {
  display: flex;
  gap: 30px;
}

/* CARD */
.faculty-card {
  flex: 1;
  border-radius: 20px;
  padding: 30px;
}

/* CARD COLORS */
.non-medical {
  background: #fff7f2;
  border: 1px solid #ffe2d3;
}

.medical {
  background: #f3f6fb;
  border: 1px solid #dbe6ff;
}

/* HEADER INSIDE */
.card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

/* ICON */
.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-box.orange {
  background: #ffe8db;
  color: #ff6a00;
}

.icon-box.blue {
  background: #e4edff;
  color: #2b6ef2;
}

/* TITLE */
.card-head h3 {
  font-size: 22px;
  font-weight: 700;
}

.non-medical h3 {
  color: #ff6a00;
}

.medical h3 {
  color: #2b6ef2;
}

/* LINE */
.line {
  height: 2px;
  width: 120px;
  margin-top: 5px;
}

.line.orange {
  background: #ff6a00;
}

.line.blue {
  background: #2b6ef2;
}

/* GRID LIST */
.list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ITEM */
.item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* DOT */
.item span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.non-medical .item span {
  background: #ff6a00;
}

.medical .item span {
  background: #2b6ef2;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

  .faculty-wrapper {
    flex-direction: column; /* stack cards */
    gap: 25px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 15px;
  }

  .card-head h3 {
    font-size: 20px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .faculty-section {
    padding: 20px 15px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  /* STACK CARDS */
  .faculty-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* CARD */
  .faculty-card {
    padding: 20px;
    border-radius: 15px;
  }

  /* ICON */
  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  /* TITLE */
  .card-head h3 {
    font-size: 18px;
  }

  /* GRID -> SINGLE COLUMN */
  .list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ITEM */
  .item {
    font-size: 13px;
    padding: 12px;
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .section-header h2 {
    font-size: 20px;
  }

  .card-head {
    gap: 10px;
  }

  .item {
    font-size: 12px;
    padding: 10px;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

}





.why-section {
  padding: 60px 20px;
  text-align: center;
  /* background: #f5f6f7; */
}

.why-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* IMAGE */
.why-image img {
  width: 100%;
  max-width: 1100px; /* control size */
  height: auto;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

  .why-section {
    padding: 50px 15px;
  }

  .why-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .why-image img {
    max-width: 900px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .why-section {
    padding: 40px 15px;
  }

  .why-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .why-image img {
    max-width: 100%; /* full width */
    border-radius: 8px; /* optional nice look */
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .why-section {
    padding: 30px 12px;
  }

  .why-title {
    font-size: 20px;
  }

}





/* SECTION */
.placement-section {
  background: url('image/sgt.webp') center/cover no-repeat;
  position: relative;
  padding: 80px 20px;
  color: #fff;
}

.placement-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* WRAPPER */
.placement-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.placement-left h2 {
  font-size: 35px;
  letter-spacing: 2px;
  font-weight: 700;
}

.highlight {
  font-size: 20px;
  padding-bottom: 30px;
}

.sub-text {
  font-size: 14px;
  margin-bottom: 30px;
}

/* LEFT TEXT IMPROVEMENT */
.placement-left h2,
.highlight,
.sub-text {
  color: #fff;
}


/* ================= */
/* STATS WITH DIVIDER */
/* ================= */
.placement-stats1 {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.stat-box1 {
  position: relative;
  padding-right: 30px;
}

/* DIVIDER LINE */
.stat-box1:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.stat-box1 h3 {
  font-size: 28px;
  font-weight: 700;
}

.stat-box1 span {
  font-size: 16px;
  opacity: 0.9;
  white-space: nowrap;
}

/* ================= */
/* BIGGER LOGO BOX */
/* ================= */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 160px); /* increased */
  gap: 20px;
}

.logo-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  height: 90px; /* bigger */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* LOGO IMAGE */
.logo-box img {
  max-width: 100%;
  height: 45px;
  object-fit: contain;
}

@media (max-width: 768px) {

  /* FORCE COLUMN LAYOUT */
  .placement-wrapper {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  /* FULL WIDTH BLOCKS */
  .placement-left,
  .placement-right {
    width: 100%;
  }

  /* PUSH LOGOS BELOW */
  .placement-right {
    margin-top: 30px;
  }

  /* FIX STATS */
  .placement-stats1 {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
  }

  /* REMOVE DIVIDER */
  .stat-box1::after {
    display: none;
  }

  .stat-box1 {
    padding-right: 0;
  }

  /* LOGO GRID */
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* SECTION PADDING */
  .placement-section {
    padding: 50px 15px;
  }

  /* TITLE */
  .placement-left h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }

  .highlight {
    font-size: 16px;
    padding-bottom: 15px;
  }

  .sub-text {
    font-size: 13px;
  }

  /* STATS */
  .stat-box1 h3 {
    font-size: 20px;
  }

  .stat-box1 span {
    font-size: 12px;
  }

  /* LOGO GRID SIZE */
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-box {
    height: 70px;     /* reduced */
    padding: 12px;    /* reduced */
  }

  .logo-box img {
    height: 30px;     /* reduced */
  }

}




/* SECTION */
.sgt-feature-video {
  padding: 50px 20px;
  /* background: #f8f9fb; */
}

/* WRAPPER */
.feature-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT VIDEO */
.feature-video {
  flex: 1;
}

/* REMOVE FIXED HEIGHT ISSUE */
.video-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  aspect-ratio: 16/9; /* ✅ perfect responsive height */
}

/* IMAGE FIT */
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  background: #FF0000; /* YouTube red */
  width: 70px;
  height: 50px;
  border-radius: 12px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  cursor: pointer;

  transition: 0.3s;
}

/* hover */
.play-btn:hover {
  background: #cc0000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* RIGHT CONTENT */
.feature-content {
  flex: 1;
}

.feature-content h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LIST */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

/* BULLET STYLE */
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #ff6a00;
  border-radius: 50%;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

  .feature-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .feature-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .feature-list li {
    font-size: 15px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .sgt-feature-video {
    padding: 40px 15px;
  }

  .feature-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  /* VIDEO FULL WIDTH */
  .feature-video {
    width: 100%;
  }

  .video-box {
    border-radius: 12px;
  }

  /* SMALLER PLAY BUTTON */
  .play-btn {
    width: 55px;
    height: 40px;
    font-size: 22px;
  }

  /* TEXT CENTER */
  .feature-content {
    text-align: center;
  }

  .feature-content h2 {
    font-size: 24px;
  }

  .feature-list li {
    font-size: 14px;
    padding-left: 20px;
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .sgt-feature-video {
    padding: 30px 12px;
  }

  .feature-content h2 {
    font-size: 20px;
  }

  .feature-list li {
    font-size: 13px;
    margin-bottom: 12px;
    text-align: left;
  }

  /* SMALL BULLET */
  .feature-list li::before {
    width: 8px;
    height: 8px;
    top: 6px;
  }

  .play-btn {
    width: 50px;
    height: 35px;
    font-size: 18px;
  }

}






.testimonial-section {
  padding: 40px 20px;
  /* background: #f8f9fb; */
}

.testimonial-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* IMAGE */
.testimonial-img {
  width: 100%;
  border-radius: 10px;
}

/* CONTENT */
.testimonial-content h5 {
  font-size: 22px;
  /* margin-bottom: 20px; */
  padding-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* give space below card */
.testimonial-box {
  background: #f3f6fb;
  border-radius: 12px;
  padding: 30px;
  color: #000;
  margin-bottom: 60px; /* important */
}

/* move dots properly below */
.carousel-indicators {
  position: relative; /* key fix */
  bottom: 0;
  margin-top: 10px;
}

/* dot styling */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  /* border-radius: 50%; */
  background: #d1d5db; 
  opacity: 1;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

  .testimonial-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .testimonial-box {
    padding: 25px;
  }

  .testimonial-content h5 {
    font-size: 20px;
  }

  .testimonial-content p {
    font-size: 15px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .testimonial-section {
    padding: 30px 15px;
  }

  .testimonial-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  /* STACK IMAGE + TEXT */
  .testimonial-box {
    text-align: center;
    padding: 20px;
  }

  .testimonial-img {
    max-width: 220px;
    margin: 0 auto 15px;
  }

  .testimonial-content h5 {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* DOTS SPACING */
  .carousel-indicators {
    margin-top: 15px;
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .testimonial-title {
    font-size: 20px;
  }

  .testimonial-img {
    max-width: 180px;
  }

  .testimonial-content h5 {
    font-size: 16px;
  }

  .testimonial-content p {
    font-size: 13px;
  }

  .testimonial-box {
    padding: 15px;
  }

  /* DOT SIZE SMALL */
  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }

}







/* SECTION */
.sgt-scholarship-section {
  position: relative;
  height: 55vh;
  background: url('image/hero1.jpg') center/cover no-repeat;
  background-attachment: fixed; /* key line */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* OVERLAY */
.overlay1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 70, 0.75);
  z-index: 1;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.main-title1 span {
  color: #ff6a00;
}

.main-title1 {
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* TEXT */
.desc {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* LIST */
.scholarship-list p {
  margin-bottom: 8px;
  font-size: 18px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #ff6a00;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (max-width: 992px) {

  .sgt-scholarship-section {
    height: auto; /* allow content to grow */
    padding: 60px 20px;
    background-attachment: scroll; /* FIX mobile bug */
  }

  .main-title1 {
    font-size: 28px;
  }

  .desc,
  .scholarship-list p {
    font-size: 16px;
  }

}


/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {

  .sgt-scholarship-section {
    height: auto;
    padding: 40px 15px;
    background-position: center;
    background-size: cover;
    background-attachment: scroll; /* important */
  }

  .content {
    max-width: 100%;
  }

  .main-title1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .desc {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .scholarship-list p {
    font-size: 14px;
    line-height: 1.4;
  }

  .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
  }

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px) {

  .sgt-scholarship-section {
    padding: 30px 12px;
  }

  .main-title1 {
    font-size: 20px;
  }

  .desc,
  .scholarship-list p {
    font-size: 13px;
  }

  .btn-primary {
    padding: 8px 18px;
    font-size: 13px;
  }

}







.sgt-admission-section {
  padding: 60px 20px;
  /* background: #f5f5f5; */
}

.sgt-admission-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* IMAGE */
.admission-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: auto;
}

/* DEFAULT (DESKTOP) */
.sgt-admission-section {
  padding: 60px 20px;
}

.sgt-admission-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.admission-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: auto;
}


/* ================= */
/* TABLET */
/* ================= */
@media (max-width: 1024px) {
  .sgt-admission-section {
    padding: 50px 15px;
  }

  .admission-img {
    max-width: 900px;
  }
}


/* ================= */
/* MOBILE */
/* ================= */
@media (max-width: 768px) {

  .sgt-admission-section {
    padding: 30px 10px; /* reduce spacing */
  }

  .admission-img {
    max-width: 100%; /* full width */
    border-radius: 8px; /* optional nice look */
  }

}


/* ================= */
/* SMALL MOBILE */
/* ================= */
@media (max-width: 480px) {

  .sgt-admission-section {
    padding: 20px 10px;
  }

  .admission-img {
    max-width: 100%;
  }

}



/* HERO */
.sgt-hero {
  position: relative;
  height: 90vh;
  background: url('image/hero-2.png') no-repeat center/cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* CONTENT */
.sgt-hero-content {
  position: relative;
  z-index: 2;
  width: 45%;
  padding-left: 80px;
}

.sgt-title-img img {
  width: 100%;
  max-width: 420px;
  display: block;
}

/* DESCRIPTION */
.sgt-hero-desc {
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

/* BUTTON */
.sgt-btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #ff6a00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {

  /* HERO */
  .sgt-hero {
    height: 30vh; /* reduce height */
    background-size: cover;
    background-position: center;
  }

  /* CONTENT AREA */
  .sgt-hero-content {
    width: 65%; /* slightly more space */
    padding-left: 20px; /* reduce spacing */
  }

  /* TITLE IMAGE (if used) */
  .sgt-title-img img {
    max-width: 120px; /* smaller */
  }

  /* CONTENT AREA (fit inside blue shape) */
  .sgt-hero-content {
    width: 48%; /* keep inside blue */
    padding-left: 15px;
  }

  /* TITLE (NURTURING...) */
  .sgt-hero-content h6 {
    font-size: 8px;
    line-height: 1.2;
  }

  /* MAIN TEXT */
  .sgt-hero-desc {
    font-size: 11px;
    line-height: 1.4;
    max-width: 120px; /* IMPORTANT → keeps inside blue */
  }

  /* BUTTON SMALL */
  .sgt-btn-primary {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 4px;
    margin-top: 12px;
  }

}









/* FOOTER */
.footer {
  background: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
}

/* TOP */
.footer-top {
  padding: 40px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col h5 {
  font-size: 18px;
  font-weight: 700;
  color: #2b6ef2;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* LOGO */
.logo-col img {
  height: 55px;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  border-top: 1px solid #ddd;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* COPYRIGHT CENTER */
.footer-bottom .copyright {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #2b6ef2;
}

/* SOCIAL RIGHT */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons i {
  font-size: 20px;
  color: #ff6a00;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  transform: translateY(-3px);
}

.social-icons i:hover {
  transform: translateY(-3px);
}

/* ================= */
/* RESPONSIVE */
/* ================= */
@media (max-width: 768px) {

  .footer-top {
  padding: 20px 10px;
}

  /* STACK + LEFT ALIGN */
  .footer-grid {
    flex-direction: column;
    gap: 15px;
  }

  /* LOGO SMALL */
  .logo-col img {
    height: 35px; /* smaller */
    margin-bottom: 20px;
    align-items: flex-start;
  }

  /* COLUMN */
  .footer-col {
    width: 100%;
  }

  /* HEADINGS SMALL */
  .footer-col h5 {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
  }

  /* TEXT SMALL */
  .footer-col p {
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    flex-direction: column;
    align-items: center;  /* LEFT */
    text-align: left;
    gap: 8px;
  }

  /* COPYRIGHT */
  .footer-bottom .copyright {
    text-align: center;
    font-size: 12px;
  }

  /* SOCIAL ICONS LEFT */
  .social-icons {
    justify-content: center;
  }

  .social-icons i {
    font-size: 18px;
  }

}
