/*
Theme Name: UKS Institute Theme
Theme URI: https://uks.bunts.edu.in
Author: UKS Institute
Description: Official theme for UKS Institute of Management Studies & Research
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: uks-theme
*/

/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
}

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 70px 0;
}

.text-center {
  text-align: center;
}

.green-btn {
  display: inline-block;
  background: #5cb85c;
  color: #fff;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.green-btn:hover {
  background: #4a9e4a;
  color: #fff;
}

.outline-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.outline-btn:hover {
  background: #fff;
  color: #333;
}

.section-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #eef7ee;
  color: #5cb85c;
  border-radius: 50%;
  margin: 10px auto 20px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(92, 184, 92, 0.1);
}

.section-icon-container:hover {
  transform: scale(1.1);
  background: #5cb85c;
  color: #fff;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: #1a1a2e;
  color: #ccc;
  font-size: 0.8rem;
  padding: 6px 0;
  text-align: right;
}

.top-bar a {
  color: #ccc;
  margin-left: 16px;
}

.top-bar a:hover {
  color: #fff;
}

/* ===========================
   NAVBAR
=========================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.navbar-logo img {
  height: 60px;
  width: auto;
}

.navbar-logo .logo-placeholder {
  height: 60px;
  width: 100px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #5cb85c;
  border-radius: 4px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-menu>li {
  position: relative;
}

.navbar-menu>li>a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #222;
  border-radius: 4px;
  transition: color 0.2s;
}

.navbar-menu>li>a:hover,
.navbar-menu>li.current-menu-item>a {
  color: #5cb85c;
}

.navbar-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 200;
}

.navbar-menu li:hover>.sub-menu {
  display: block;
}

.navbar-menu .sub-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #333;
  transition: background 0.2s;
}

.navbar-menu .sub-menu li a:hover {
  background: #f5f5f5;
  color: #5cb85c;
}

.navbar-apply {
  background: #ff6b35;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

.navbar-apply:hover {
  background: #e55a25 !important;
  color: #fff !important;
}

.uks-badge {
  background: #1a1a2e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
  text-align: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #333;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   HERO SLIDER
=========================== */
/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  position: relative;
  background: #1a1a2e;
  /* Matches top-bar and site-footer */
  overflow: hidden;
  padding: 100px 0 90px;
  color: #fff;
}

/* Elegant diagonal corporate background highlight */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: rgba(255, 255, 255, 0.015);
  transform: skewX(-12deg) translateX(15%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tagline {
  color: #5cb85c;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #5cb85c;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
}

.hero-title span {
  color: #5cb85c;
  /* Brand solid green */
}

.hero-description {
  font-size: 1.05rem;
  color: #cbd5e0;
  line-height: 1.65;
  max-width: 580px;
}

/* Professional checkmark list */
.hero-usps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.usp-item i {
  color: #5cb85c;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.btn-primary-gradient {
  background: #5cb85c;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.25);
  font-size: 0.95rem;
}

.btn-primary-gradient:hover {
  background: #4a9e4a;
  transform: translateY(-1px);
  color: #fff;
}

.btn-secondary-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

/* Enquiry Form Card - Highly Professional White Card */
.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.enquiry-card {
  background: #ffffff;
  /* Solid white card for corporate look */
  border-radius: 8px;
  padding: 35px 30px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: #333;
  border-top: 4px solid #5cb85c;
  /* Top colored border accent */
}

.enquiry-card h3 {
  font-size: 1.45rem;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-weight: 700;
}

.enquiry-card p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 24px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a5568;
}

.form-group label .required {
  color: #e53e3e;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 0.9rem;
  transition: color 0.2s;
  z-index: 5;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  background: #f8fafc;
  /* Subtle off-white input */
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  padding: 12px 14px 12px 40px;
  color: #333;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23718096'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 36px;
}

.input-wrapper select option {
  background: #ffffff;
  color: #333;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
  border-color: #5cb85c;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.15);
}

.input-wrapper input:focus+i,
.input-wrapper select:focus+i {
  color: #5cb85c;
}

.btn-submit-enquiry {
  background: #5cb85c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.2);
}

.btn-submit-enquiry:hover {
  background: #4a9e4a;
  transform: translateY(-1px);
}

.btn-submit-enquiry:active {
  transform: translateY(0);
}

.btn-submit-enquiry:disabled {
  background: #cbd5e0;
  color: #718096;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.form-response {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 4px;
  border-radius: 4px;
  display: none;
}

.form-response.success {
  display: block;
  color: #234e52;
  background: #e6fffa;
  border: 1px solid #b2f5ea;
  padding: 10px 12px;
}

.form-response.error {
  display: block;
  color: #742a2a;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  padding: 10px 12px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-container {
    gap: 30px;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}

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

  .hero-section::after {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .hero-tagline::before {
    display: none;
  }

  .hero-usps {
    align-items: center;
  }

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

  .hero-form-wrapper {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ===========================
   AICTE BANNER
=========================== */
.aicte-banner {
  background: #2196f3;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.aicte-banner p {
  font-size: 0.9rem;
  margin: 0 0 4px;
  opacity: 0.9;
}

.aicte-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: #fff;
}

.about-section h2 {
  margin-bottom: 8px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 30px 0 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #eef7ee;
  color: #5cb85c;
  border-radius: 50%;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(92, 184, 92, 0.1);
  transition: all 0.2s ease;
}

.about-feature:hover .icon {
  background: #5cb85c;
  color: #fff;
  transform: translateY(-2px);
}

.about-feature strong {
  display: block;
  color: #222;
  margin-bottom: 2px;
}

.about-feature p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-images img,
.about-images .img-ph {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.img-ph {
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* ===========================
   UKS INFO SECTION
=========================== */
.uks-info-section {
  background: #f8f8f8;
}

.uks-info-section h2 {
  margin-bottom: 20px;
}

.uks-info-section .intro {
  max-width: 860px;
  margin: 0 auto 16px;
  text-align: center;
  color: #555;
}

.uks-diagram {
  margin: 40px auto;
  max-width: 800px;
}

.uks-diagram .diagram-img,
.uks-diagram .diagram-ph {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.uks-spokes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.spoke-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #5cb85c;
}

.spoke-item h4 {
  font-size: 0.92rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.spoke-item p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
}

/* ===========================
   COURSES SECTION
=========================== */
.courses-section {
  background: #fff;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.course-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}

.course-card img,
.course-card .card-img-ph {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-img-ph {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
}

.course-card-body {
  padding: 20px;
  background: #fff;
}

.course-card-body h3 {
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
}

/* ===========================
   ACHIEVEMENTS SECTION
=========================== */
.achievements-section {
  background: linear-gradient(135deg, #ff4e6a, #e8365d);
  color: #fff;
  padding: 80px 0;
}

.achievements-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.achievements-trophy {
  flex: 0 0 auto;
}

.achievements-trophy .trophy-ph {
  width: 220px;
  height: 280px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.achievements-content {
  flex: 1;
}

.achievements-content h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.achievements-content p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.stats-row {
  display: flex;
  gap: 40px;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* ===========================
   FACULTY SECTION
=========================== */
.faculty-section {
  background: #f8f8f8;
}

.faculty-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #555;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.faculty-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.2s;
}

.faculty-card:hover {
  transform: translateY(-4px);
}

.faculty-card img,
.faculty-card .fac-img-ph {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.fac-img-ph {
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.faculty-card h3 {
  font-size: 1rem;
  color: #222;
  margin: 16px 16px 4px;
}

.faculty-card .role {
  font-size: 0.82rem;
  color: #5cb85c;
  font-weight: 600;
  margin-bottom: 2px;
}

.faculty-card .qual {
  font-size: 0.8rem;
  color: #888;
}

/* ===========================
   BLOGS SECTION
=========================== */
.blogs-section {
  background: #fff;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-img-wrap {
  position: relative;
}

.blog-img-wrap img,
.blog-img-wrap .blog-img-ph {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-img-ph {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.blog-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #333;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.blog-date span {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.blog-tag {
  display: inline-block;
  background: #5cb85c;
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-body {
  padding: 20px;
  background: #fff;
}

.blog-body h3 {
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}

.blog-read {
  color: #5cb85c;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-read:hover {
  color: #4a9e4a;
}

.blogs-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===========================
   WHY UKS SECTION
=========================== */
.why-section {
  background: #f0f4f0;
}

.why-section .why-tagline {
  color: #5cb85c;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 30px;
  align-items: center;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-item .wi-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #5cb85c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: #fff;
}

.why-item h4 {
  font-size: 1rem;
  color: #222;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.why-center-img {
  text-align: center;
}

.why-center-img img,
.why-center-img .wc-ph {
  width: 100%;
  border-radius: 12px;
}

.wc-ph {
  height: 320px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* ===========================
   FOLLOW US SECTION
=========================== */
.follow-section {
  background: #fff;
}

.follow-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.video-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}

.video-wrap .video-ph {
  width: 100%;
  height: 420px;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.video-ph .play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  cursor: pointer;
}

.video-ph .yt-label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.si-fb {
  background: #1877f2;
}

.si-ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.si-yt {
  background: #ff0000;
}

/* ===========================
   TESTIMONIALS SECTION
=========================== */
.testimonials-section {
  background: #f8f8f8;
}

.testimonials-section p.subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #e8365d;
  object-fit: cover;
  margin: 0 auto 16px;
}

.testimonial-avatar-ph {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #aaa;
  margin: 0 auto 16px;
  border: 3px solid #e8365d;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .name {
  font-weight: 700;
  color: #222;
  font-size: 0.9rem;
}

.testimonial-card .designation {
  font-size: 0.8rem;
  color: #888;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: #5cb85c;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #aaa;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #5cb85c;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  border-radius: 4px;
}

.footer-logo .fl-ph {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: #5cb85c;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: #aaa;
}

.footer-contact-item span:first-child {
  color: #5cb85c;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #888;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #aaa;
}

.footer-bottom a:hover {
  color: #5cb85c;
}

/* ===========================
   DOWNLOAD BROCHURE FLOAT BUTTON
=========================== */
.brochure-float {
  position: fixed;
  left: -55px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;

  background: #e8365d;
  color: #fff;

  padding: 12px 25px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  white-space: nowrap;

  border-radius: 6px 6px 0 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.brochure-float:hover {
  background: #d1224c;
  color: #fff;
}

/* Global spokes fallback for mobile */
.spokes-mobile-list {
  display: none;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-center-img {
    display: none;
  }

  .achievements-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.7rem;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 16px;
    gap: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-menu.open {
    display: flex;
    animation: slideDownFade 0.3s ease forwards;
  }

  .navbar-menu > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-menu > li > a {
    display: block;
    padding: 12px 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }

  .navbar-menu .sub-menu {
    display: block !important;
    position: static;
    box-shadow: none;
    background: #fcfcfc;
    padding: 4px 0 12px 16px;
    border-radius: 0;
    min-width: 100%;
  }

  .navbar-menu .sub-menu li a {
    display: block;
    padding: 8px 8px;
    font-size: 0.9rem;
    color: #555;
  }

  .hamburger {
    display: flex;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .slide-text h1 {
    font-size: 2.4rem;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .uks-spokes {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .navbar-right {
    gap: 4px;
  }

  .uks-badge {
    display: none;
  }

  /* Responsive Spokes diagram fallback */
  .uks-diagram {
    display: none;
  }

  .spokes-mobile-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
    text-align: left;
  }

  .spoke-mobile-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #5cb85c;
  }

  .spoke-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
  }

  .spoke-content h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: #1a1a2e;
    font-weight: 700;
  }

  .spoke-content p {
    margin: 0;
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .slide-text h1 {
    font-size: 1.8rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* Placements Page Specific Styles */
.placement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}

.placement-card:hover .placement-img-wrap img {
  transform: scale(1.05);
}