/* ------------------- General Reset ------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  /* background-color:; */
  /* color:; */
  padding-top: 95px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================= HEADER ================= */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 38px;
}

/* Desktop Nav */

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #666; /* default color */
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #f58220; /* hover orange */
}

/* NO underline anywhere */
.desktop-nav a::after {
  display: none;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f58220;
  border-radius: 2px;
}

/* ================= MOBILE MENU ================= */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1000;
  padding: 30px 20px;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

.close-btn {
  font-size: 34px;
  cursor: pointer;
  color: #f58220;
}

.mobile-menu ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #f58220;
}

/* Active */

.mobile-menu.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= FOOTER ================= */

.main-footer {
  background: #f58220; /* Main Orange */
  margin-top: 80px;
  font-family: "Jost", sans-serif;
  color: #fff;
}

/* Top Footer */

.footer-top {
  padding: 60px 0 40px;
}

/* Logo & About */

.footer-logo {
  height: 38px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* makes logo white if needed */
}

.footer-about p {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  max-width: 340px;
  opacity: 0.9;
}

/* Titles */

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #fff;
  opacity: 1;
  padding-left: 5px;
}

/* Social */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #23a455; /* Green on hover */
  color: #fff;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  background: #23a455;
  padding: 15px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  opacity: 0.9;
}

.footer-bottom .designer {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .footer-about p {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: left; /* your preferred left align */
  }
}

/* Gallery Page -------------------------- */

/* ================= GALLERY SECTION ================= */

.gallery-section {
  padding: 80px 0;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

/* Tabs */

.gallery-tabs {
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin: 0 15px;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
  transition: color 0.3s;
}

.tab-btn.active {
  color: #f58220;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f58220;
}

/* ================= CONTENT VISIBILITY ================= */

#photosContent {
  display: block; /* Default visible */
}

#videosContent {
  display: none; /* Default hidden */
}

/* ================= PHOTOS ================= */

.photo-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

/* ================= VIDEOS ================= */

.video-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumb {
  position: relative;
  background: #ccc;
}

.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: #f58220;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.video-info {
  padding: 15px;
  text-align: center;
}

.video-info p {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.view-video {
  font-size: 14px;
  font-weight: 600;
  color: #23a455;
  text-decoration: none;
}

.view-video:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .photo-card img {
    height: 240px;
  }

  .video-thumb img {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .photo-card img {
    height: 220px;
  }

  .video-thumb img {
    height: 170px;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

/* ================= CONTACT PAGE ====================================== */

.contact-page {
  padding-top: 0;
}

/* Page Title */

.page-title-section {
  background: linear-gradient(135deg, #fef4ec, #ffcf9f);
  padding: 70px 0;
  text-align: center;
}

.page-title-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.page-title-section p {
  font-size: 16px;
  color: #444;
}

/* Contact Section */

.contact-section {
  padding: 90px 0 70px;
  background: #fafafa;
}

.contact-form-box,
.contact-info-box {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form-box:hover,
.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.contact-form-box h4,
.contact-info-box h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}

/* Form */

.contact-form .form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.contact-form textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form .form-control:focus {
  border-color: #f58220;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15);
}

.contact-btn {
  background: linear-gradient(135deg, #f58220, #e07015);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #e07015, #c85f10);
  transform: translateY(-2px);
}

/* Contact Info */

.contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
}

.contact-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-list i {
  font-size: 24px;
  color: #f58220;
  margin-top: 4px;
}

.contact-info-list strong {
  display: block;
  font-size: 15px;
  color: #222;
  margin-bottom: 3px;
}

.contact-info-list p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Social */

.contact-social {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #f58220;
  color: #fff;
  transform: translateY(-3px);
}

/* Map */

.map-section {
  padding: 0 0 80px;
  background: #fafafa;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .page-title-section h2 {
    font-size: 28px;
  }

  .contact-section {
    padding: 60px 0 50px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 28px;
  }

  .map-section {
    padding-bottom: 60px;
  }
}

/* ================= PROFILE INTRO ================= */

.profile-intro-section {
  padding: 90px 0;
  background: #fff;
}

.profile-image {
  position: relative;
  text-align: center;
  overflow: visible;
  isolation: isolate; /* isolates glow from page */
}

/* Soft controlled orange glow behind image */

.profile-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  max-width: 520px;
  max-height: 520px;
  background: radial-gradient(
    circle,
    rgba(245,130,32,0.55) 0%,
    rgba(245,130,32,0.35) 28%,
    rgba(245,130,32,0.18) 52%,
    rgba(245,130,32,0) 75%
  );
  filter: blur(65px);
  z-index: -1;
  pointer-events: none;
}

/* Profile Image */

.profile-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  height: auto;
  display: inline-block;
  border-radius: 14px;
}

/* TEXT */

.profile-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.profile-content .designation {
  font-size: 16px;
  font-weight: 600;
  color: #f58220;
  margin-bottom: 18px;
}

.profile-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

/* ================= CONTRIBUTIONS (PREMIUM VERSION) ================= */

.contributions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fafafa, #fff4ea); /* soft warm background */
}

/* Card */

.contribution-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;

  /* Premium shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Orange accent bar on top */

.contribution-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f58220, #ffb25c);
}

/* Hover: lift + deeper shadow */

.contribution-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* Icon */

.contribution-box i {
  font-size: 42px;
  color: #f58220;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

/* Slight icon pop on hover */

.contribution-box:hover i {
  transform: scale(1.1);
}

/* Title */

.contribution-box h5 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

/* Text */

.contribution-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .contributions-section {
    padding: 60px 0;
  }

  .contribution-box {
    padding: 32px 26px;
  }

  .contribution-box h5 {
    font-size: 20px;
  }

  .contribution-box p {
    font-size: 14.5px;
  }
}


/* ================= STATS ================= */

.profile-stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.stat-box {
  background: #fafafa;
  border-radius: 12px;
  padding: 22px 25px;
  text-align: center;
  flex: 1;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #f58220;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}

/* ================= LEADER CARD CLEAN PROFESSIONAL ================= */

.leader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* BIG CLEAN IMAGE CARD */

.leader-image {
  width: 280px;              /* Bigger, professional */
  height: 340px;
  margin-bottom: 22px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;

  /* Clean soft shadow */
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* Force same size for all */

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name */

.leader-card h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Text */

.leader-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
}

/* ================= VMI (PREMIUM VERSION) ================= */

.vmi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #fff7f0); /* subtle warm white */
}

.vmi-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 38px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;

  /* Premium shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Orange accent strip on top */

.vmi-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f58220, #ffb25c);
}

/* Hover: lift + richer shadow */

.vmi-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* Title */

.vmi-box h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #222;
  position: relative;
}

/* Small orange underline for title */

.vmi-box h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #f58220;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* Text */

.vmi-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-top: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .vmi-section {
    padding: 60px 0;
  }

  .vmi-box {
    padding: 30px 26px;
  }

  .vmi-box h4 {
    font-size: 21px;
  }

  .vmi-box p {
    font-size: 14.5px;
  }
}


/* ================= CTA ================= */

.about-cta-section {
  padding: 80px 0 60px;
  margin-bottom: 0;
  background: linear-gradient(135deg, #fef4ec, #ffcf9f);
}

.about-cta-section h3 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.about-cta-section p {
  font-size: 17px;
  color: #444;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: #f58220;
  color: #fff;
  padding: 14px 42px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #e07015;
  transform: translateY(-2px);
}

/* ================= FOOTER TRANSITION FIX ================= */

footer {
  margin-top: 0 !important;
  padding-top: 40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .leader-image {
    width: 240px;
    height: 300px;
  }
}

@media (max-width: 768px) {

  .profile-intro-section {
    padding: 60px 0;
  }

  .profile-content h3 {
    font-size: 26px;
  }

  .profile-content p {
    font-size: 15px;
  }

  .profile-stats {
    flex-direction: column;
  }

  .contributions-section,
  .vmi-section {
    padding: 60px 0;
  }

  .about-cta-section {
    padding: 60px 0 40px;
  }

  /* Mobile profile image */

  .profile-image img {
    max-width: 300px;
  }

  /* Mobile leader images */

  .leader-image {
    width: 220px;
    height: 280px;
  }
}


/* works page =================== */

/* ================= WORKS INTRO ================= */

.works-intro-section {
  padding: 70px 0 40px;
  background: #fff;
}

.works-intro-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px; /* increased */
  line-height: 2;
  color: #444; /* darker for authority */
}

/* ================= WORKS GRID ================= */

.works-section {
  padding: 70px 0 90px;
  background: #fafafa;
}

.work-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  border-top: 4px solid transparent; /* accent line */
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f58220; /* orange accent on hover */
}

.work-image {
  height: 230px; /* slightly bigger */
  overflow: hidden;
  background: #eee;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.1);
}

.work-content {
  padding: 28px 24px 32px;
  text-align: center;
}

.work-content h5 {
  font-size: 21px; /* increased */
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.work-content p {
  font-size: 15px; /* increased */
  line-height: 1.8;
  color: #555;
}

/* ================= WORKS STATS STRIP ================= */

.works-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef4ec, #ffcf9f);
}

.works-stat h3 {
  font-size: 38px; /* increased */
  font-weight: 700;
  color: #f58220;
  margin-bottom: 8px;
}

.works-stat p {
  font-size: 16px; /* increased */
  color: #333;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .work-image {
    height: 215px;
  }
}

@media (max-width: 768px) {
  .works-intro-section p {
    font-size: 17px;
  }

  .work-image {
    height: 200px;
  }

  .works-stats-section {
    padding: 60px 0;
  }

  .works-stat h3 {
    font-size: 30px;
  }

  .work-content h5 {
    font-size: 19px;
  }

  .work-content p {
    font-size: 14px;
  }
}

/* ================= HOME Page ======================================================================= ================= */

.home-hero-section {
  padding: 80px 0 0 0 ;
  background: linear-gradient(135deg, #fef4ec, #ffffff);
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.hero-content h1 span {
  color: #f58220;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-btn {
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #f58220, #ff9f45);
  color: #fff;
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #e07015, #ff8c2a);
  transform: translateY(-2px);
}

.hero-btn.secondary {
  border: 2px solid #f58220;
  color: #f58220;
}

.hero-btn.secondary:hover {
  background: #f58220;
  color: #fff;
}

/* HERO IMAGE WITH ORANGE GLOW (REFINED) */

.hero-image.glow-image {
  position: relative;
  display: flex;              /* important for centering */
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Stronger, smoother glow */

.hero-image.glow-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;               /* slightly smaller base */
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255,102,0,0.55) 0%,
    rgba(255,102,0,0.35) 35%,
    rgba(255,102,0,0.12) 65%,
    transparent 75%
  );
  border-radius: 50%;
  z-index: 0;
  filter: blur(22px);        /* smoother glow */
}

/* Image above glow */

.hero-image.glow-image img {
  position: relative;
  z-index: 1;
  max-width: 550px;          
  width: 100%;
  height: auto;
  display: block;
}

/* ================= HOME STATS ================= */

.home-stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #fafafa, #fff4ea);
}

.home-stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #f58220;
  margin-bottom: 6px;
}

.home-stat-box p {
  font-size: 15px;
  color: #444;
}

/* ================= HOME ABOUT PREVIEW ================= */

.home-about-section {
  padding: 90px 0;
  background: #fff;
}

/* CONTROL IMAGE SIZE HERE */

.home-about-image {
  text-align: center;
}

.home-about-image img {
  width: 100%;
  max-width: 460px;            /* 🔥 IMAGE SIZE REDUCED */
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle professional hover */

.home-about-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
}

.home-about-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.home-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #f58220;
  text-decoration: none;
  position: relative;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f58220;
  transition: width 0.3s ease;
}

.read-more-btn:hover::after {
  width: 100%;
}

/* ================= HOME WORKS ================= */

.home-works-section {
  padding: 80px 0;
  background: #fafafa;
}

.home-work-card {
  background: #fff;
  border-radius: 16px;
  padding: 38px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.home-work-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #fef4ec, #fff0e0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f58220;
  font-size: 28px;
}

.home-work-card h5 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-work-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

.view-all-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, #f58220, #ff9f45);
  color: #fff;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #e07015, #ff8c2a);
  transform: translateY(-2px);
}

/* ================= HOME LEADERSHIP ================= */

.home-leadership-section {
  padding: 80px 0;
  background: #fff;
}

.home-leadership-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.home-leadership-section p {
  max-width: 750px;
  margin: 0 auto 25px;
  font-size: 16px;
  color: #555;
}

.leadership-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.leadership-names span {
  background: #fff4ea;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  transition: background 0.3s ease, transform 0.3s ease;
}

.leadership-names span:hover {
  background: #f58220;
  color: #fff;
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  /* Orange Glow Tablet Size */
  .hero-image.glow-image::before {
    width: 290px;
    height: 290px;
  }

  /* Hero Image Tablet Size (reduced a bit) */
  .hero-image.glow-image img {
    max-width: 380px;   /* was 460px, now cleaner */
    margin: 0 auto;
  }

  .home-about-image img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {

  .home-hero-section {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .home-about-section,
  .home-works-section,
  .home-leadership-section {
    padding: 60px 0;
  }

  /* Orange Glow Mobile Size */
  .hero-image.glow-image::before {
    width: 220px;
    height: 220px;
  }

  /* Hero Image Mobile Centered Properly */
  .hero-image.glow-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .hero-image.glow-image img {
    max-width: 280px;   /* reduced from 300px */
    margin: 0 auto;    /* force perfect center */
    display: block;
  }

  .home-about-image img {
    max-width: 300px;   /* PERFECT MOBILE SIZE */
  }
}



html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
