:root {
  --primary-color: #97140d;
  --primary-light-color: #ffada9;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --black: #000000;
  --bg-dark: #2a2a2a;
  --bg-gradient: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Common Styles - Typography & Base
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  p {
    line-height: 1.4 !important;
    font-size: 1rem !important;
  }
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
}

.text-muted {
  color: var(--text-light);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Buttons */
.btn {
  position: relative;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.5;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #7a0f0a;
  border-color: #7a0f0a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

button:focus,
button:focus-visible,
.btn:focus,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================
   Header Styles
   ============================================ */

.header {
  position: relative;
  width: 100%;
}

/* ============================================
   Topbar Styles
   ============================================ */

.topbar {
  background: var(--bg-gradient);
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.topbar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left {
  flex: 1;
}

.topbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.topbar-links li {
  display: inline-block;
}

.topbar-links a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  transition: var(--transition);
  padding: 5px 0;
}

.topbar-links a:hover {
  color: var(--primary-light-color);
}

.topbar-links .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
}

.topbar-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.social-icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.875rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-icons a[href*="facebook"]:hover {
  background-color: #1877f2;
}

.social-icons a[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons a[href*="linkedin"]:hover {
  background-color: #0077b5;
}

.social-icons a[href*="twitter"]:hover {
  background-color: #1da1f2;
}

.social-icons a[href*="youtube"]:hover {
  background-color: #ff0000;
}

/* ============================================
   Main Navigation Styles
   ============================================ */

.main-nav {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
  width: 100%;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  flex-shrink: 0;
  z-index: 1001;
}

.logo-link {
  display: inline-block;
  transition: var(--transition);
}

.logo-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.logo-img {
  max-height: 60px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1010 !important;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(1px, 0);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -10px);
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-item>a {
  display: block;
  padding: 12px 18px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.menu-item>a i {
  font-size: 0.75rem;
  margin-left: 5px;
  transition: var(--transition);
}

.menu-item.active>a,
.menu-item>a:hover {
  color: var(--primary-color);
}

.menu-item.active>a::after,
.menu-item>a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background-color: var(--primary-color);
}

/* Dropdown Menu */
.menu-item.has-dropdown .dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 220px !important;
  background-color: var(--white) !important;
  box-shadow: var(--shadow-hover) !important;
  border-radius: 4px !important;
  list-style: none !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000 !important;
  float: none !important;
  border: none !important;
  font-size: 0.9rem !important;
}

.menu-item.has-dropdown:hover .dropdown-menu,
.menu-item.has-dropdown .dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.menu-item.has-dropdown:hover>a i {
  transform: rotate(180deg);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background-color: rgba(151, 20, 13, 0.05);
  color: var(--primary-color);
  padding-left: 25px;
}

/* ============================================
   Responsive Styles - Mobile Menu
   ============================================ */

@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 0 30px;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    z-index: 1005 !important;
    align-items: flex-start !important;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 30px;
  }

  .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .menu-item>a {
    padding: 15px 25px;
    width: 100%;
  }

  .menu-item.active>a::after,
  .menu-item>a:hover::after {
    display: none;
  }

  /* Mobile Dropdown Menu */
  .menu-item.has-dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background-color: rgba(151, 20, 13, 0.03) !important;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .menu-item.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .menu-item.has-dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-menu a {
    padding: 12px 25px 12px 40px;
    font-size: 0.875rem;
  }

  .dropdown-menu a:hover {
    padding-left: 45px;
  }

  /* Mobile Menu Overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }

  body.menu-open::before {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 8px 0;
  }

  .topbar-content {
    gap: 10px;
  }

  .topbar-links {
    gap: 5px;
  }

  .topbar-links a {
    font-size: 0.8rem;
  }

  .menu-list {
    padding-top: 0px !important;
  }

  .social-icons {
    gap: 5px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .logo-img {
    max-height: 50px;
  }

  .nav-wrapper {
    padding: 12px 0;
  }

  .nav-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .topbar::after {
    width: 50%;
  }

  .topbar-left,
  .topbar-right {
    flex: none;
  }

  .topbar-content {
    gap: 15px;
  }

  .topbar-links .separator {
    margin: 0 3px;
  }

  .nav-menu {
    width: 260px;
  }

  .logo-img {
    max-height: 45px;
  }
}

.section-title {
  margin-bottom: 30px;
}

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

.section-title .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  position: relative;
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .section-title .title, .projects-main-title {
    font-size: 2rem !important;
  }
}
@media (max-width: 569px) {
  .section-title .title, .projects-main-title {
    font-size: 1.5rem !important;
  }
}

.section-title .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  border-radius: 2px;
}

.section-title .description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 0;
}

.section-title.center .title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title.section-light .title {
  color: var(--white);
}

.section-title.section-light .description {
  color: var(--white);
}

.section-title.center .description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sec-padd {
  padding: 40px 0;
}

.sec-padd-top {
  padding-top: 40px;
}

.sec-padd-bottom {
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .sec-padd {
	  padding: 80px 0;
	}

	.sec-padd-top {
	  padding-top: 80px;
	}

	.sec-padd-bottom {
	  padding-bottom: 80px;
	}
}

.mb-30 {
  margin-bottom: 30px;
}


/* ============================================
   Hero Slider Styles
   ============================================ */

.hero-slider-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-slider {
    height: 90vh !important;
    min-height: 600px;
  }
}
.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

/* ============================================
   Common Navigation Arrows (Square Design)
   ============================================ */

/* Base styles for all slider navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  position: absolute !important;
  width: 60px !important;
  height: 60px !important;
  background-color: rgba(255, 255, 255, 0.6) !important;
  border-radius: 4px !important;
  color: var(--primary-color) !important;
  transition: var(--transition);
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(151, 20, 13, 0.8) !important;
  color: var(--white) !important;
  transform: translateY(-50%) scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(151, 20, 13, 0.4) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
  content: none !important;
}

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 24px !important;
  font-weight: 700 !important;
  display: block !important;
  line-height: 1 !important;
  color: inherit !important;
}

.swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Hero Slider Navigation */
.hero-slider .swiper-button-next {
  right: 30px !important;
  left: auto !important;
}

.hero-slider .swiper-button-prev {
  left: 30px !important;
  right: auto !important;
}

.hero-slider .hero-nav-next,
.hero-slider .hero-nav-prev {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================
   About Us Section Styles
   ============================================ */

.about-us-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.about-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.about-us-section .container {
  position: relative;
  z-index: 1;
}

.about-us-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  /* min-height: 400px; */
}

.about-us-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(151, 20, 13, 0.2);
}

.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.about-us-image:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.about-us-content {
  padding-left: 40px;
  position: relative;
}

@media (max-width: 991px) {
.about-us-content {
  padding-left: 0;
}	
}

/* ============================================
   Services Section Styles
   ============================================ */

.services-section {
  position: relative;
  background-image: url('../images/bg/services-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-slider-wrapper {
  position: relative;
}

.services-slider {
  width: 100%;
  padding: 0 30px;
}

@media (max-width: 767px) {
.services-slider {
  padding: 0;
}	
}

.services-slider .swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: var(--transition);
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.service-card-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 12px;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(151, 20, 13, 0.3);
  border-color: rgba(151, 20, 13, 0.2);
}

.service-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.3) 0%, transparent 50%);
}

.service-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--primary-color);
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0;
  flex: 1;
}

/* Services Slider Navigation - Matching Hero Slider Style */
/* Services Slider Navigation */
@media (max-width: 1023px) {
  .services-slider .services-nav-next,
.services-slider .services-nav-prev  {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .services-slider .services-nav-next,
.services-slider .services-nav-prev {

  display: flex !important;
}
}
.services-slider .swiper-button-next {
/*   right: -30px !important; */
  left: auto !important;
}

.services-slider .swiper-button-prev {
/*   left: -30px !important; */
  right: auto !important;
}

.services-slider .services-nav-next,
.services-slider .services-nav-prev {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Services Pagination */
.services-pagination {
  position: relative !important;
  margin-top: 30px !important;
  bottom: 0 !important;
  text-align: center !important;
  width: 100% !important
}

.services-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  transition: var(--transition) !important;
}

.services-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
  width: 30px !important;
  border-radius: 6px !important;
}

/* Responsive Styles for Services Section */
@media (max-width: 991px) {
  .services-slider-wrapper {
    padding: 0 40px;
  }

  .service-image {
    height: 160px;
  }

  .service-content {
    padding: 20px;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .services-slider .swiper-button-next,
  .services-slider .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
  }

  .services-slider .swiper-button-next {
    right: 20px !important;
  }

  .services-slider .swiper-button-prev {
    left: 20px !important;
  }
}

@media (max-width: 767px) {
  .services-slider-wrapper {
    padding: 0;
  }

  .service-image {
    height: 150px;
  }

  .service-content {
    padding: 18px;
  }

  .service-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .services-slider .swiper-button-next,
  .services-slider .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
  }

  .services-slider .swiper-button-next i,
  .services-slider .swiper-button-prev i {
    font-size: 20px !important;
  }

  .services-slider .swiper-button-next {
    right: 15px !important;
  }

  .services-slider .swiper-button-prev {
    left: 15px !important;
  }
}

@media (max-width: 575px) {
  .services-slider-wrapper {
    padding: 0;
  }

  .services-slider .swiper-button-next,
  .services-slider .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .services-slider .swiper-button-next i,
  .services-slider .swiper-button-prev i {
    font-size: 18px !important;
  }

  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ============================================
   Services Listing Section Styles
   ============================================ */

.services-listing-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.services-listing-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.services-listing-section .container {
  position: relative;
  z-index: 1;
}

.services-listing-section .services-listing-row {
  --bs-gutter-y: 2.5rem;
  row-gap: 2.5rem;
}

.services-listing-section .services-listing-row > [class*='col-'] {
  margin-bottom: 2.5rem;
}

.services-listing-section .services-listing-row > [class*='col-']:nth-child(n+4) {
  margin-top: 0;
}

.service-listing-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: var(--transition);
}

.service-listing-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.service-listing-card-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 12px;
}

.service-listing-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.service-listing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-listing-card:hover::before {
  transform: scaleX(1);
}

.service-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(151, 20, 13, 0.3);
  border-color: rgba(151, 20, 13, 0.2);
}

.service-listing-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.service-listing-card:hover .service-listing-image img {
  transform: scale(1.1);
}

.service-listing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}

.service-listing-card:hover .service-listing-overlay {
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.3) 0%, transparent 50%);
}

.service-listing-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-listing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: var(--transition);
}

.service-listing-card:hover .service-listing-title {
  color: var(--primary-color);
}

.service-listing-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.service-listing-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(151, 20, 13, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1rem;
  transition: var(--transition);
  margin-top: auto;
}

.service-listing-card:hover .service-listing-arrow {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateX(5px);
}

/* Responsive Styles for Services Listing */
@media (max-width: 991px) {
  .service-listing-image {
    height: 220px;
  }

  .service-listing-content {
    padding: 25px;
  }

  .service-listing-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .service-listing-image {
    height: 200px;
  }

  .service-listing-content {
    padding: 20px;
  }

  .service-listing-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .service-listing-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .service-listing-image {
    height: 180px;
  }

  .service-listing-content {
    padding: 18px;
  }

  .service-listing-title {
    font-size: 1.15rem;
  }

  .service-listing-description {
    font-size: 0.9rem;
  }
}

/* ============================================
   Board of Directors Section Styles
   ============================================ */

.board-directors-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.board-directors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.board-directors-section .container {
  position: relative;
  z-index: 1;
}

.board-directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.director-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 3;
}

.director-card:hover::before {
  transform: scaleX(1);
}

.director-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(151, 20, 13, 0.25);
  border-color: rgba(151, 20, 13, 0.2);
  text-decoration: none;
  color: inherit;
}

.director-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.director-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition);
}

.director-card:hover .director-image {
  transform: scale(1.1);
}

.director-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0) 0%, rgba(151, 20, 13, 0.4) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.director-card:hover .director-overlay {
  opacity: 1;
}

.director-overlay-content {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: var(--transition);
}

.director-card:hover .director-overlay-content {
  transform: scale(1);
}

.director-overlay-content i {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
}

.director-info {
  padding: 25px;
  text-align: center;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.director-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: var(--transition);
}

.director-card:hover .director-name {
  color: var(--primary-color);
}

.director-title {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 500;
}

/* ============================================
   Board of Directors Modern Section
   ============================================ */

.board-directors-modern-section {
  position: relative;
  background: #ffffff;
  padding-bottom: 60px;
}

.board-directors-modern-section .row.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.board-directors-modern-section .row.no-gutters > [class*='col-'] {
  padding-left: 0;
  padding-right: 0;
}

.director-modern-card {
  margin-bottom: 30px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.director-modern-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-left-color: var(--primary-color);
}

.director-modern-card:last-child {
  margin-bottom: 0;
}

.director-modern-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  background: #f5f5f5;
}

.director-modern-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition);
}

.director-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(151, 20, 13, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
}

.director-modern-card:hover .director-photo-overlay {
  opacity: 1;
}

.director-modern-card:hover .director-modern-photo img {
  transform: scale(1.05);
}

.director-modern-info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.director-modern-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8e8e8;
}

.director-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(151, 20, 13, 0.08);
  line-height: 1;
  margin-right: 25px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.director-modern-card:hover .director-number {
  color: rgba(151, 20, 13, 0.15);
}

.director-header-text {
  flex: 1;
}

.director-modern-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.director-modern-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.director-modern-bio {
  margin-top: 0;
}

.director-modern-bio p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 18px;
  text-align: left;
}

.director-modern-bio p:last-child {
  margin-bottom: 0;
}

/* Reverse layout */
.director-modern-reverse {
  border-left: none;
  border-right: 4px solid transparent;
}

.director-modern-reverse:hover {
  border-right-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .board-directors-modern-section {
    padding: 40px 0;
  }

  .director-modern-card {
    margin-bottom: 25px;
  }

  .director-modern-info {
    padding: 35px 30px;
    min-height: auto;
  }

  .director-modern-photo {
    min-height: 350px;
  }

  .director-number {
    font-size: 2.5rem;
    margin-right: 20px;
  }

  .director-modern-name {
    font-size: 1.65rem;
  }
}

@media (max-width: 767px) {
  .board-directors-modern-section {
    padding: 30px 0;
  }

  .director-modern-card {
    margin-bottom: 20px;
    border-left: none;
    border-top: 4px solid transparent;
  }

  .director-modern-card:hover {
    border-left-color: transparent;
    border-top-color: var(--primary-color);
  }

  .director-modern-reverse {
    border-right: none;
    border-top: 4px solid transparent;
  }

  .director-modern-reverse:hover {
    border-right-color: transparent;
    border-top-color: var(--primary-color);
  }

  .director-modern-info {
    padding: 25px 20px;
  }

  .director-modern-photo {
    min-height: 300px;
  }

  .director-modern-header {
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .director-number {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .director-modern-name {
    font-size: 1.5rem;
  }

  .director-modern-role {
    font-size: 0.85rem;
  }

  .director-modern-bio p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 15px;
  }
}

/* ============================================
   Our Ongoing Projects Section Styles
   ============================================ */

.ongoing-projects-section {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}

.ongoing-projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, rgba(151, 20, 13, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(151, 20, 13, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ongoing-projects-section .container {
  position: relative;
  z-index: 1;
}

.projects-intro {
  margin-bottom: 50px;
}


.projects-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.projects-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  border-radius: 3px;
}

.projects-main-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 0 0;
  line-height: 1.7;
}

.projects-layout {
  position: relative;
}

.project-block {
  min-height: 350px;
  position: relative;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s ease;
}

.project-block::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(151, 20, 13, 0.3) 50%, transparent 100%);
  bottom: 0;
  left: 0;
}

.project-block:last-child::before {
  display: none;
}

.project-center {
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.05) 0%, transparent 100%);
  padding: 25px 0;
  margin: 25px 0;
  border-top: 2px solid rgba(151, 20, 13, 0.2);
  border-bottom: 2px solid rgba(151, 20, 13, 0.2);
}

.project-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image-frame {
  position: relative;
  width: 85%;
  max-width: 500px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #1a1a1a;
}

.project-block:hover .project-image-frame {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1.02);
}

.project-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%) brightness(0.9);
}

.project-block:hover .project-main-img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

.project-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(151, 20, 13, 0.4);
  z-index: 3;
  transition: all 0.4s ease;
}

.project-block:hover .project-badge {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(151, 20, 13, 0.6);
}

.project-featured {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(151, 20, 13, 0.9);
  color: var(--white);
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  z-index: 3;
}

.project-text {
  padding: 30px 30px 30px 50px;
}

.project-center .project-text {
  padding: 30px 50px 30px 30px;
}

@media (max-width: 575px) {
	.project-text {
	  padding: 30px 0 30px 0;
	}
	.project-center .project-text {
	  padding: 30px 0 30px 0;
	}
}

.project-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  margin-bottom: 15px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  transition: all 0.3s ease;
}

.project-block:hover .project-label {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.project-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 15px 0;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.project-block:hover .project-heading {
  color: var(--primary-light-color);
  transform: translateX(5px);
}

.project-excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 450px;
  transition: color 0.3s ease;
}

.project-block:hover .project-excerpt {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Clients Section
   ============================================ */
.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-slider-wrapper {
  position: relative;
  margin-top: 20px;
  padding: 0 45px;
}

.clients-slider {
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 25px;
}

.client-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 20px 18px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(151, 20, 13, 0.15);
}

.client-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Clients Slider Navigation */
.clients-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  border: none;
  outline: none;
}

.clients-nav i {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}

.clients-nav:hover {
  background-color: rgba(151, 20, 13, 0.8);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(151, 20, 13, 0.4);
}

.clients-nav-prev {
  left: 10px;
}

.clients-nav-next {
  right: 10px;
}

@media (max-width: 768px) {
  .clients-slider-wrapper {
    padding: 12px 20px;
  }

  .client-card {
    height: 96px;
    padding: 16px 14px;
  }

  .clients-section .clients-nav-next,
  .clients-section .clients-nav-prev,
  .values-slider .swiper-button-next,
  .values-slider .swiper-button-prev {
    display: none !important;
  }

  .expertise-services-list {
    padding: 0 16px;
  }
}

@media (max-width: 575px) {
  .clients-slider-wrapper {
    padding: 10px 10px;
  }

  .clients-nav {
    width: 50px;
    height: 50px;
  }

  .clients-nav i {
    font-size: 20px;
  }
}

/* ============================================
   Global Presence Section (India Map)
   ============================================ */
.global-presence-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.global-presence-section img {
  max-width: 700px;
  margin: auto;
}

.presence-wrapper {
  position: relative;
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 32px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.presence-wrapper::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at center, rgba(151, 20, 13, 0.12), transparent 60%);
  top: -120px;
  right: -80px;
  filter: blur(6px);
  opacity: 0.65;
}

.presence-map {
  position: relative;
  background: linear-gradient(135deg, #f1f5fb 0%, #e7eef9 100%);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.map-legend {
  position: absolute;
  top: 18px;
  left: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #2f3a4f;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 6px rgba(151, 20, 13, 0.12);
}

.legend-dot.secondary {
  background: #1f2937;
  box-shadow: 0 0 0 6px rgba(31, 41, 55, 0.12);
}

.legend-dot.primary {
  background: var(--primary-color);
}

.india-map {
  position: relative;
  min-height: 480px;
  aspect-ratio: 3 / 4;
}

.india-map-bg {
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background: #f3f5f8 url('../assets/images/map.png') center center / contain no-repeat;
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.12);
  filter: saturate(0.9);
  z-index: 1;
}

.india-map::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.35), transparent 35%);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.india-shape-fallback {
  position: absolute;
  inset: 16px;
  background: linear-gradient(135deg, #d6e4ff 0%, #b5c7ff 100%);
  border-radius: 16px;
  opacity: 0.15;
  z-index: 0;
}

.map-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #111827;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.map-marker {
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}

.map-marker .marker-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1f2937;
  border: 3px solid #ffffff;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.map-marker .marker-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(31, 41, 55, 0.12);
  animation: marker-pulse 1.8s infinite;
}

.map-marker.active .marker-dot,
.map-marker:hover .marker-dot {
  transform: scale(1.05);
  background: var(--primary-color);
  box-shadow: 0 14px 28px rgba(151, 20, 13, 0.35);
}

.map-marker.active .marker-pulse {
  background: rgba(151, 20, 13, 0.16);
}

.map-marker::after {
  content: attr(data-state);
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translate(-50%, -100%);
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.map-marker:hover::after,
.map-marker.active::after {
  opacity: 1;
  transform: translate(-50%, -110%);
}

.presence-panel {
  position: relative;
  background: linear-gradient(135deg, #111827 0%, #1f2433 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 26px 26px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.presence-panel::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
  top: -80px;
  left: -60px;
}

.panel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(151, 20, 13, 0.16);
  color: #fefefe;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.chip.muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.presence-panel h3 {
  color: #ffffff;
  margin: 0;
  font-size: 28px;
  font-weight: 800;
}

.panel-city {
  margin: 6px 0 4px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.panel-desc {
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0 14px;
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.panel-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.panel-list i {
  color: var(--primary-light-color);
  font-size: 16px;
}

.panel-list a {
  color: #ffffff;
  font-weight: 600;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.panel-badges .chip {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(151, 20, 13, 0.35);
}

.panel-cta:hover {
  background: #7d100b;
  color: #ffffff;
  transform: translateY(-1px);
}

.panel-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.pill-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2px;
}

.pill strong {
  font-size: 15px;
  color: #ffffff;
}

@keyframes marker-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@media (max-width: 1199px) {
  .presence-wrapper {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 991px) {
  .presence-wrapper {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .india-map {
    min-height: 400px;
  }
}

@media (max-width: 575px) {
  .map-legend {
    font-size: 12px;
    left: 12px;
    right: 12px;
    gap: 10px;
    justify-content: center;
  }

  .presence-wrapper {
    padding: 16px;
  }

  .presence-panel {
    padding: 20px;
  }

  .panel-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   Our Statistics Section (Light)
   ============================================ */
.statistics-section {
  position: relative;
  padding: 70px 0;
  background-image: url('https://kkcbuild.com/wp-content/uploads/2016/09/service-10-1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.statistics-section .stats-content {
  position: relative;
  z-index: 1;
}

.statistics-section .stats-grid {
  text-align: center;
  --bs-gutter-x: 28px;
  --bs-gutter-y: 22px;
}

.statistics-section .stats-card {
  height: 100%;
  position: relative;
  padding: 18px 12px 30px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: stat-fade-up 0.6s ease-out both;
  overflow: hidden;
}

.statistics-section .stats-card:nth-child(1) {
  animation-delay: 0.05s;
}

.statistics-section .stats-card:nth-child(2) {
  animation-delay: 0.12s;
}

.statistics-section .stats-card:nth-child(3) {
  animation-delay: 0.19s;
}

.statistics-section .stats-card:nth-child(4) {
  animation-delay: 0.26s;
}

.statistics-section .stats-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.18), rgba(17, 24, 39, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.statistics-section .stat-accent {
  display: none;
}

.statistics-section .stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  background: #ffffff;
}

.statistics-section .stats-card:hover::before {
  opacity: 1;
}

.statistics-section .stats-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #c69c39;
  transform: translateX(-50%);
  opacity: 0.8;
}

.statistics-section .stats-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.statistics-section .stats-label {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.statistics-section .stat-icon {
  font-size: 38px;
  color: var(--primary-color);
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

@keyframes stat-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stat-glow {

  0%,
  100% {
    opacity: 0.65;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

/* ============================================
   Footer Styles
   ============================================ */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.main-footer .container {
  position: relative;
  z-index: 1;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  border-radius: 2px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-logo {
  margin-top: 20px;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'FontAwesome';
  margin-right: 10px;
  color: var(--primary-color);
  opacity: 1;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.footer-contact li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 15px;
  margin-top: 3px;
  min-width: 20px;
  text-align: center;
}

.footer-contact li span {
  flex: 1;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact li a:hover {
  color: var(--primary-light-color);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.875rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social a[href*="facebook"]:hover {
  background-color: #1877f2;
}

.footer-social a[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a[href*="linkedin"]:hover {
  background-color: #0077b5;
}

.footer-social a[href*="twitter"]:hover {
  background-color: #1da1f2;
}

.footer-social a[href*="youtube"]:hover {
  background-color: #ff0000;
}

.footer-copyright {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.copyright-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.copyright-text a:hover {
  color: var(--primary-light-color);
}

/* Footer Responsive Styles */
@media (max-width: 991px) {
  .main-footer {
    padding: 50px 0 0;
  }

  .footer-widget {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 40px 0 0;
  }

  .footer-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .footer-copyright {
    padding: 20px 0;
    margin-top: 0;
  }

  .copyright-text {
    font-size: 0.85rem;
  }
}

/* ============================================
   Inside Hero Banner Styles
   ============================================ */

.inside-hero {
  position: relative;
  width: 100%;
  height: 350px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1023px) {
  .inside-hero {
    height: 250px;
    min-height: 250px;
  }

  .inside-hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .inside-hero-title {
    font-size: 2rem !important;
  }
}
@media (max-width: 569px) {
  .inside-hero-title {
    font-size: 1.7rem !important;
  }
}

.inside-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inside-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
}

.inside-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.8) 0%, rgba(42, 42, 42, 0.7) 100%);
}

.inside-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

@media (max-width: 569px) {
  .breadcrumb-nav {
    font-size: 12px !important;
    gap: 8px;
  }
}

.breadcrumb-nav a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.9;
}

.breadcrumb-nav a:hover {
  color: var(--primary-light-color);
  opacity: 1;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px;
}

.breadcrumb-current {
  color: var(--white);
  opacity: 0.9;
}

.inside-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Who We Are & Why Choose Us Section Styles (New Design)
   ============================================ */

.who-why-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.who-why-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.who-we-are-block {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.who-we-are-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
}


.who-we-are-visual {
  position: relative;
}

.who-we-are-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
	margin-bottom: 20px;
}

.who-we-are-image-wrapper:hover {
  transform: translateY(-5px);
}

.who-we-are-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.who-we-are-image-wrapper:hover img {
  transform: scale(1.08);
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(151, 20, 13, 0.4);
  text-align: center;
  color: var(--white);
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
}


/* Why Choose Us Styles */
.why-choose-block {
  position: relative;
}


.feature-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  margin-bottom: 30px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(151, 20, 13, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(151, 20, 13, 0.25);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(151, 20, 13, 0.35);
}

.icon-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.feature-card:hover .feature-title {
  color: var(--primary-color);
}

/* ============================================
   Vision & Mission Section Styles
   ============================================ */

.vision-mission-section {
  background: #1f1f1f;
}

.vision-mission-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
}

.vision-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.vm-icon-wrapper {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.vm-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(151, 20, 13, 0.3);
  transition: var(--transition);
}

.vision-mission-card:hover .vm-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(151, 20, 13, 0.4);
}

.vm-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.vm-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.vision-card .vm-icon {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.mission-card .vm-icon {
  background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
}

/* ============================================
   Our Values Section Styles
   ============================================ */

.our-values-section {
  background-color: var(--white);
}

.values-slider-wrapper {
  position: relative;
}

.values-slider {
  overflow: hidden;
}

.values-slider .swiper-slide {
  height: auto;
}

.value-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.value-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.value-card:hover .value-image img {
  transform: scale(1.1);
}

.value-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.7) 0%, rgba(42, 42, 42, 0.5) 100%);
  opacity: 0.6;
  transition: var(--transition);
}

.value-card:hover .value-overlay {
  opacity: 0.8;
}

.value-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.value-text {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Values Slider Navigation */
.values-slider .swiper-button-next {
  right: 0 !important;
  left: auto !important;
}

.values-slider .swiper-button-prev {
  left: 0 !important;
  right: auto !important;
}

.values-pagination {
  position: relative !important;
  margin-top: 30px !important;
  bottom: 0 !important;
}

.values-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: var(--text-light) !important;
  opacity: 0.5 !important;
  transition: var(--transition) !important;
}

.values-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
  opacity: 1 !important;
  width: 30px !important;
  border-radius: 6px !important;
}

/* Responsive Styles for Who We Are & Why Choose Us */
@media (max-width: 991px) {
  .who-we-are-block,
  .why-choose-block {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .who-why-wrapper {
    gap: 50px;
  }

  .who-we-are-block,
  .why-choose-block {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .image-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }

  .badge-number {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 25px;
	margin-bottom: 0;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .why-choose-block {
    padding: 0 0;
  }
}

/* ============================================
   Journey Timeline Section Styles (Desktop Only)
   ============================================ */

.journey-timeline-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline Items Container */
.timeline-items {
  position: relative;
  z-index: 2;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-item-left {
  justify-content: flex-start;
  padding-right: 45%;
  text-align: right;
}

.timeline-item-right {
  justify-content: flex-end;
  padding-left: 45%;
  flex-direction: row-reverse;
}

/* Timeline Node */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(151, 20, 13, 0.2), 0 0 0 2px rgba(151, 20, 13, 0.1);
  z-index: 3;
  transition: all 0.3s ease;
}

.timeline-node::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Node hover effect when content is hovered - Left items */
.timeline-item-left .timeline-content:hover + .timeline-node {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 4px 12px rgba(151, 20, 13, 0.3), 0 0 0 3px rgba(151, 20, 13, 0.15);
}

/* Node hover effect when content is hovered - Right items */
.timeline-item-right .timeline-content:hover ~ .timeline-node {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 4px 12px rgba(151, 20, 13, 0.3), 0 0 0 3px rgba(151, 20, 13, 0.15);
}

/* Timeline Content */
.timeline-content {
  background: #f5f5f5;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.timeline-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.timeline-content:hover .timeline-year {
  color: var(--primary-color);
}

/* Projects Introduction Text */
.projects-intro-text {
  text-align: center;
  max-width: 900px;
  margin: 80px auto 60px;
  padding: 0 20px;
}

.projects-intro-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* Projects Showcase */
.projects-showcase {
  margin-top: 80px;
}

.project-showcase-item {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.project-showcase-item:last-child {
  margin-bottom: 0;
}

.project-showcase-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.project-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.project-showcase-item:hover .project-showcase-image img {
  transform: scale(1.1);
}

.project-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.1) 0%, rgba(42, 42, 42, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-showcase-item:hover .project-image-overlay {
  opacity: 1;
}

.project-showcase-content {
  padding: 40px;
  transition: transform 0.3s ease;
}

.project-showcase-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.project-showcase-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* Desktop Only - Hide on Mobile */
@media (max-width: 991px) {
  .journey-timeline-section {
    display: none;
  }
}

/* Responsive adjustments for larger screens */
@media (min-width: 992px) and (max-width: 1199px) {
  .timeline-item-left {
    padding-right: 43%;
  }

  .timeline-item-right {
    padding-left: 43%;
  }

}

@media (min-width: 1200px) {
  .timeline-container {
    max-width: 1400px;
  }

  .timeline-item-left {
    padding-right: 45%;
  }

  .timeline-item-right {
    padding-left: 55%;
  }

  .timeline-content {
    width: 100%;
    /* max-width: 550px; */
  }
}

/* ============================================
   Our Expertise Section Styles (Classic Design)
   ============================================ */

.our-expertise-section {
  position: relative;
  background-color: var(--white);
}

.expertise-image-wrapper {
  position: relative;
}

.expertise-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e0e0e0;
}

.expertise-content {
  padding-left: 40px;
}

.expertise-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
}

.expertise-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Expertise Services List */
.expertise-services-list {
  margin-top: 25px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-list li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .our-expertise-section {
    padding: 50px 0;
  }

  .expertise-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .expertise-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .our-expertise-section {
    padding: 40px 0;
  }

  .expertise-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .expertise-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .expertise-list li {
    font-size: 0.9rem;
    padding: 8px 0;
    padding-left: 22px;
  }

  .expertise-list li::before {
    top: 8px;
    font-size: 0.85rem;
  }
}

/* ============================================
   Service Detail Page Styles
   ============================================ */

/* Service Image Slider */
.service-detail-slider {
  margin-bottom: 40px;
}

.service-image-slider {
  position: relative;
  overflow: hidden;
}

.service-slide-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.service-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service Slider Navigation */
.service-slider-next,
.service-slider-prev {
  width: 50px !important;
  height: 50px !important;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  top: 44%;
}

.service-slider-next:hover,
.service-slider-prev:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.service-slider-next::after,
.service-slider-prev::after {
  display: none;
}

.service-slider-next i,
.service-slider-prev i {
  font-size: 18px;
  font-weight: 600;
}

.service-slider-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.service-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  opacity: 1;
  transition: var(--transition);
}

.service-slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Service Detail Content */
.service-detail-content {
  background-color: var(--white);
  position: relative;
}

.service-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.service-detail-intro {
  margin-bottom: 30px;
}

.service-detail-intro .lead {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.8;
}

.service-detail-text {
  margin-top: 30px;
}

.service-detail-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.service-detail-text h3:first-child {
  margin-top: 0;
}

.service-detail-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.service-features-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}

.service-features-list li:last-child {
  border-bottom: none;
}

.service-features-list li:hover {
  padding-left: 35px;
  color: var(--primary-color);
}

.service-features-list li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.service-detail-cta {
  margin-top: 40px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.service-detail-cta p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.service-detail-cta .btn {
  margin-top: 10px;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.service-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sidebar-list li {
  margin-bottom: 5px;
}

.service-sidebar-list li a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--text-dark);
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.service-sidebar-list li a:hover,
.service-sidebar-list li.active a {
  background-color: var(--primary-color);
  color: var(--white);
  border-left-color: var(--white);
  transform: translateX(5px);
}

.service-sidebar-list li a i {
  margin-right: 12px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.service-sidebar-list li a:hover i,
.service-sidebar-list li.active a i {
  transform: translateX(3px);
}

.service-sidebar-list li a span {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
}

.sidebar-contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f0a 100%);
  color: var(--white);
}

.sidebar-contact .sidebar-title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-contact p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.7;
}

.sidebar-contact .btn {
  width: 100%;
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.sidebar-contact .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .service-detail-section {
    padding: 60px 0;
  }

  .service-sidebar {
    position: relative;
    top: 0;
    margin-top: 40px;
  }


  .service-detail-title {
    font-size: 2rem;
  }

  .service-slide-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .service-detail-section {
    padding: 40px 0;
  }


  .service-detail-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .service-detail-intro .lead {
    font-size: 1.1rem;
  }

  .service-detail-text h3 {
    font-size: 1.5rem;
    margin-top: 25px;
  }

  .service-slide-image {
    height: 300px;
  }

  .sidebar-widget {
    padding: 25px 20px;
  }

  .sidebar-title {
    font-size: 1.25rem;
  }

  .service-sidebar-list li a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .service-slider-next,
  .service-slider-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .service-slider-next i,
  .service-slider-prev i {
    font-size: 14px;
  }
}

/* ============================================
   Completed Work Section Styles
   ============================================ */

.completed-work-section {
  position: relative;
}

.table-wrapper {
  background: var(--white);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.completed-work-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
  border: 1px solid #dee2e6;
  background: var(--white);
}

.completed-work-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b31a13 100%);
  color: var(--white);
}

.completed-work-table thead th {
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}

.completed-work-table thead th:nth-child(4),
.completed-work-table thead th:nth-child(5),
.completed-work-table thead th:nth-child(6) {
  width: 12%;
  min-width: 120px;
  white-space: break-spaces;
  text-align: center;
}

.completed-work-table tbody tr {
  transition: var(--transition);
  border-bottom: 1px solid #dee2e6;
}

.completed-work-table tbody tr:hover {
  background-color: rgba(151, 20, 13, 0.04);
}

.completed-work-table tbody tr:last-child {
  border-bottom: 1px solid #dee2e6;
}

.completed-work-table tbody td {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-dark);
  vertical-align: middle;
  border: 1px solid #dee2e6;
  line-height: 1.6;
}

.completed-work-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  text-align: center;
  width: 80px;
}

.completed-work-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 250px;
}

.completed-work-table tbody td:nth-child(4),
.completed-work-table tbody td:nth-child(5),
.completed-work-table tbody td:nth-child(6) {
  width: 12%;
  min-width: 120px;
  font-size: 0.9rem;
  padding: 12px 20px;
}

.completed-work-table tbody td:nth-child(4) {
  text-align: center;
}

.completed-work-table tbody td:nth-child(5) {
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  white-space: nowrap;
}

.completed-work-table tbody td:nth-child(6) {
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  white-space: nowrap;
}

.table-note {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .table-wrapper {
    padding: 30px 20px;
  }

  .completed-work-table thead th,
  .completed-work-table tbody td {
    padding: 15px 12px;
    font-size: 0.9rem;
  }

  .completed-work-table thead th {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .table-wrapper {
    padding: 20px 15px;
    border-radius: 0;
  }

  .completed-work-table thead th,
  .completed-work-table tbody td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .completed-work-table thead th {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .completed-work-table tbody td:first-child {
    font-size: 1rem;
    width: 60px;
  }

  .completed-work-table tbody td:nth-child(2) {
    min-width: 200px;
  }
}

@media (max-width: 575px) {
  .completed-work-section .section-title .title {
    font-size: 2rem;
  }

  .completed-work-section .section-title .description {
    font-size: 1rem;
  }

  .table-wrapper {
    padding: 15px 10px;
  }

  .completed-work-table {
    font-size: 0.8rem;
  }

  .completed-work-table thead th {
    padding: 10px 6px;
    font-size: 0.7rem;
  }

  .completed-work-table tbody td {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
}

/* ============================================
   Gallery Section Styles
   ============================================ */

.gallery-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.02) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

/* Gallery Filter Wrapper */
.gallery-filter-wrapper {
  margin-bottom: 10px;
  text-align: center;
}

.filter-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

/* Filter Buttons */
.filter-btn {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 20px;
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  text-transform: capitalize;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.filter-btn:focus,
.filter-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(151, 20, 13, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 0;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(151, 20, 13, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(151, 20, 13, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b31a13 100%);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(151, 20, 13, 0.3);
  position: relative;
  z-index: 1;
}

/* Gallery View */
.gallery-view {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.gallery-view .col-md-4 {
  margin-top: 30px;
}

.gallery-view a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  background-color: var(--white);
}

.gallery-view a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(151, 20, 13, 0.25);
  text-decoration: none;
}

.gallery-view a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  border-radius: 12px;
}

.gallery-view a:hover::before {
  opacity: 1;
}

.gallery-view a::after {
  content: '\f00e';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: normal;
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
}

.gallery-view a:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery-view a .gallery-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
  text-align: center;
  width: 90%;
  padding: 0 15px;
}

.gallery-view a:hover .gallery-title {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.gallery-view img.galThumbs {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
  border-radius: 12px;
}

.gallery-view a:hover img.galThumbs {
  transform: scale(1.1);
}

/* Responsive Styles for Gallery */
@media (max-width: 991px) {
  .gallery-filter-wrapper {
    margin-bottom: 30px;
  }

  .filter-button-group {
    gap: 8px;
  }

  .filter-btn {
    font-size: 13px;
    padding: 7px 16px;
  }

  .gallery-view img.galThumbs {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .gallery-filter-wrapper {
    margin-bottom: 25px;
  }

  .filter-button-group {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .filter-button-group::-webkit-scrollbar {
    height: 4px;
  }

  .filter-button-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .filter-button-group::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 6px 14px;
    flex-shrink: 0;
  }

  .gallery-view {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .gallery-view img.galThumbs {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .filter-btn {
    font-size: 11px;
    padding: 5px 12px;
  }

  .gallery-view img.galThumbs {
    height: 200px;
  }
}

/* ============================================
   Team Awards & Social Activities Section Styles
   ============================================ */

.team-awards-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.team-awards-section .container {
  position: relative;
  z-index: 1;
}

.team-awards-gallery {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.team-awards-gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-decoration: none;
}

.team-awards-gallery a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(151, 20, 13, 0.25);
  text-decoration: none;
}

.team-awards-gallery a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.team-awards-gallery a:hover::before {
  opacity: 1;
}

.team-awards-gallery a::after {
  content: '\f06e';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: normal;
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
}

.team-awards-gallery a:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.team-awards-gallery .award-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.team-awards-gallery a:hover .award-thumb {
  transform: scale(1.1);
}

/* Responsive Styles for Team Awards Section */
@media (max-width: 991px) {
  .team-awards-gallery .award-thumb {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .team-awards-gallery {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .team-awards-gallery .award-thumb {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .team-awards-gallery {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .team-awards-gallery .award-thumb {
    height: 200px;
  }
}

/* ============================================
   Press Release Section Styles
   ============================================ */

.press-release-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.press-release-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.02) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.press-release-section .container {
  position: relative;
  z-index: 1;
}

.press-release-grid {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.press-release-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.press-release-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(151, 20, 13, 0.2);
}

.press-release-card > a {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

.press-release-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.press-release-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.press-release-card:hover .press-release-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(151, 20, 13, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.press-release-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  color: var(--white);
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: var(--transition);
}

.press-release-card:hover .image-overlay i {
  transform: scale(1);
}

.press-release-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.press-release-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.5em;
  transition: var(--transition);
}

.press-release-card:hover .press-release-title {
  color: var(--primary-color);
}

.press-release-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e8e8e8;
}

.press-release-meta i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.press-release-date {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive Styles for Press Release */
@media (max-width: 991px) {
  .press-release-grid {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
  }

  .press-release-image {
    height: 260px;
  }

  .press-release-content {
    padding: 20px;
  }

  .press-release-title {
    font-size: 1.0625rem;
    min-height: 4.2em;
  }
}

@media (max-width: 767px) {
  .press-release-grid {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .press-release-image {
    height: 240px;
  }

  .press-release-content {
    padding: 18px;
  }

  .press-release-title {
    font-size: 1rem;
    min-height: 4em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .press-release-meta {
    padding-top: 12px;
  }

  .press-release-date {
    font-size: 0.875rem;
  }
}

@media (max-width: 575px) {
  .press-release-grid {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .press-release-image {
    height: 220px;
  }

  .press-release-content {
    padding: 15px;
  }

  .press-release-title {
    font-size: 0.9375rem;
    min-height: 3.5em;
    margin-bottom: 12px;
  }

  .press-release-meta {
    gap: 8px;
    padding-top: 10px;
  }

  .press-release-meta i {
    font-size: 0.875rem;
  }

  .press-release-date {
    font-size: 0.8125rem;
  }
}

/* ============================================
   Contact Main Section
   ============================================ */
.contact-main {
  background-color: #f8f9fa;
}

.contact-info-wrapper {
  padding: 50px 40px;
  background: rgba(151, 20, 13, 0.05);
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  min-width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary-color);
  font-size: 24px;
  padding-top: 5px;
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-info-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.contact-info-link:hover {
  color: #7a0f0a;
  transform: translateX(3px);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(151, 20, 13, 0.1);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 10px;
}

.form-submit .btn {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-info-wrapper {
    padding: 40px 30px;
    margin-bottom: 40px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .contact-form-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .contact-info-wrapper {
    padding: 35px 25px;
  }

  .contact-info-item {
    margin-bottom: 30px;
  }

  .contact-info-icon {
    font-size: 22px;
    margin-right: 15px;
  }

  .contact-info-title {
    font-size: 1.15rem;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .contact-info-wrapper {
    padding: 30px 20px;
  }

  .contact-info-item {
    margin-bottom: 25px;
  }

  .contact-info-icon {
    font-size: 20px;
    margin-right: 15px;
  }

  .contact-info-title {
    font-size: 1.1rem;
  }

  .contact-info-text {
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .contact-form-title {
    font-size: 1.35rem;
  }

  .contact-form-subtitle {
    font-size: 0.9rem;
  }
}

.contact-map {
  background-color: #f8f9fa;
}

/* ============================================
   Current Openings Section Styles
   ============================================ */

.current-openings-section {
  background-color: var(--white);
}

.job-listings {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-card {
  background-color: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.job-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.job-card.expanded {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(151, 20, 13, 0.15);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.job-title-info {
  flex: 1;
  min-width: 250px;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.job-category {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 500;
  background-color: rgba(151, 20, 13, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.job-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-view {
  background-color: var(--bg-dark);
  color: var(--white);
  border: 2px solid var(--bg-dark);
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-view:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-apply {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-apply:hover {
  background-color: #7a0f0a;
  border-color: #7a0f0a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(151, 20, 13, 0.3);
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.job-meta-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.job-card-excerpt {
  margin-top: 15px;
}

.job-card-excerpt p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.job-details-collapse {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.job-details-content {
  padding: 20px 0;
}

.job-details-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 12px;
}

.job-details-content h4:first-child {
  margin-top: 0;
}

.job-details-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.job-details-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.job-details-content ul li {
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.job-details-content ul li::before {
  content: '\f105';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

/* ============================================
   Apply Job Modal Styles
   ============================================ */

.modal-content {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f0a 100%);
  color: var(--white);
  padding: 20px 30px;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.modal-title #modalJobTitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.95;
}

.btn-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 1;
  padding: 0;
  width: auto;
  height: auto;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.btn-close:hover,
.btn-close:focus {
  opacity: 0.8;
  transform: rotate(90deg);
  color: var(--white);
  outline: none;
}

.modal-body {
  padding: 30px;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: none;
}

.form-control::placeholder {
  color: #999;
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-text {
  font-size: 0.85rem;
  margin-top: 5px;
}

.text-danger {
  color: #dc3545;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.form-actions .btn {
  min-width: 150px;
}

/* ============================================
   Responsive Styles for Current Openings
   ============================================ */

@media (max-width: 991px) {
  .job-card-header {
    flex-direction: column;
  }

  .job-actions {
    width: 100%;
  }

  .btn-view,
  .btn-apply {
    flex: 1;
    justify-content: center;
  }

  .job-card-meta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .job-card {
    padding: 20px;
  }

  .job-title {
    font-size: 1.25rem;
  }

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

  .btn-view,
  .btn-apply {
    width: 100%;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-title {
    font-size: 1.25rem;
  }

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

  .form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .job-card {
    padding: 15px;
  }

  .job-title {
    font-size: 1.1rem;
  }

  .job-category {
    font-size: 0.85rem;
    padding: 3px 10px;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-header {
    padding: 12px 15px;
  }

  .modal-title {
    font-size: 1.1rem;
  }
}

/* ============================================
   Mentors Message Section Styles
   ============================================ */

.mentors-message-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

/* Modern Profile Section */
.mentor-profile-modern {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-image-container {
  position: relative;
  margin-bottom: 30px;
}

.profile-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.mentor-profile-modern:hover .profile-image-wrapper {
  box-shadow: 0 20px 50px rgba(151, 20, 13, 0.2);
  transform: translateY(-5px);
}

.profile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(151, 20, 13, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.mentor-profile-modern:hover .profile-overlay {
  opacity: 1;
}

.profile-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f0a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(151, 20, 13, 0.4);
  z-index: 2;
}

.profile-info {
  text-align: center;
  padding: 0 10px;
}

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.profile-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light-color) 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.profile-tagline {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  font-style: italic;
}

/* Modern Quotes Section */
.quotes-modern-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
}

.quote-modern-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7a0f0a 100%);
  border-radius: 20px;
  padding: 35px 40px;
  box-shadow: 0 10px 40px rgba(151, 20, 13, 0.25);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.quote-modern-card:hover {
  box-shadow: 0 15px 50px rgba(151, 20, 13, 0.35);
  transform: translateX(5px);
}

.quote-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.quote-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.quote-content-modern {
  flex: 1;
  position: relative;
  z-index: 2;
}

.quote-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.quote-text-modern {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.quote-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.quote-modern-card-alt {
  background: linear-gradient(135deg, #7a0f0a 0%, var(--primary-color) 100%);
}

.quote-modern-card-alt::before {
  background: rgba(255, 255, 255, 0.25);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .mentors-message-section {
    padding: 60px 0;
  }

  .profile-name {
    font-size: 1.75rem;
  }

  .quote-modern-card {
    padding: 30px 35px;
    gap: 20px;
  }

  .quote-number {
    font-size: 2.5rem;
  }

  .quote-text-modern {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .mentors-message-section {
    padding: 40px 0;
  }

  /* .profile-image-wrapper {
    max-width: 250px;
  } */

  .profile-name {
    font-size: 1.5rem;
  }

  .profile-role {
    font-size: 0.9rem;
  }

  .quotes-modern-wrapper {
    gap: 20px;
  }

  .quote-modern-card {
    padding: 25px 30px;
    gap: 15px;
    flex-direction: column;
  }

  .quote-number {
    font-size: 2rem;
  }

  .quote-category {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .quote-text-modern {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .quote-decoration {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
  }
}

.swiper-wrapper {
	height: auto;	
}

.our-standards-section .our-standards-wrapper {
	max-width: 900px;
	margin: auto;
}

.our-standards-section .gallery-view a {
	border-radius: 50%;
	width: 250px;
    height: 250px;
    margin: auto;
}

@media (max-width: 575px) {
	.our-standards-section .gallery-view a {
		width: 200px;
		height: 200px;
	}	
}

.our-standards-section .gallery-view img.galThumbs {
	width: 100%;
    height: 100%;
	object-fit: contain;
}