/* style.css - Main styles without responsive */
header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 8px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

header .logo img {
  height: 95px;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

header.scrolled .logo img {
  height: 95px;
}

header nav ul li {
  margin-right: 28px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  font-size: 15px;
}

header nav ul li a {
  color: #2d3748;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 2px;
  font-weight: 500;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: #cf2727;
}

header nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #477833, #cf2727);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav ul li a.active::before,
header nav ul li a:hover::before {
  width: 100%;
}

header nav ul li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  min-width: 240px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 8px 0;
  border: 1px solid rgba(229, 231, 235, 0.5);
  backdrop-filter: blur(10px);
}

header nav ul li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

header nav ul li .dropdown-menu li {
  padding: 10px 24px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  margin: 0;
  transition: all 0.3s ease;
}

header nav ul li .dropdown-menu li:last-child {
  border-bottom: none;
}

header nav ul li .dropdown-menu li:hover {
  background: linear-gradient(90deg, rgba(71, 120, 51, 0.05), transparent);
  padding-left: 28px;
}

header nav ul li .dropdown-menu li a {
  color: #4a5568;
  display: block;
  padding: 6px 0;
  font-weight: 500;
}

header nav ul li .dropdown-menu li a:hover {
  color: #cf2727;
}

header .mobile-menu-toggle {
  display: none;
}

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

.banner-wrapper {
  position: relative;
}

.banner-wrapper .slick-list,
.banner-wrapper .slick-track {
  height: 100%;
}

.common-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.common-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  animation: bannerContentFadeIn 1s ease-out 0.3s both;
}

@keyframes bannerContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.banner-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.banner-content .animated-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
  min-height: 50px;
  color: #fff;
  position: relative;
}

.banner-content .animated-text span {
  position: absolute;
  opacity: 0;
  animation: textRotate 9s infinite;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.banner-content .animated-text span:nth-child(1) {
  animation-delay: 0s;
}

.banner-content .animated-text span:nth-child(2) {
  animation-delay: 3s;
}

.banner-content .animated-text span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes textRotate {
  0%,
  33% {
    opacity: 1;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.primary-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.primary-btn:hover i {
  transform: translateX(5px);
}

.primary-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.7s ease;
}

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

.banner-wrapper .slick-prev,
.banner-wrapper .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(71, 120, 51, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 0;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-wrapper .slick-prev:hover,
.banner-wrapper .slick-next:hover {
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.banner-wrapper .slick-prev {
  left: 30px;
}

.banner-wrapper .slick-next {
  right: 30px;
}

.banner-wrapper .slick-prev:before,
.banner-wrapper .slick-next:before {
  content: "" !important;
  display: none !important;
}

.banner-wrapper .slick-prev:after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: white;
}

.banner-wrapper .slick-next:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: white;
}

.banner-wrapper .slick-prev .fa-chevron-left,
.banner-wrapper .slick-next .fa-chevron-right {
  font-size: 24px;
  color: white;
}

.banner-wrapper .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 10;
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner-wrapper .slick-dots li {
  margin: 0;
}

.banner-wrapper .slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: block;
}

.banner-wrapper .slick-dots li button:hover {
  background: rgba(71, 120, 51, 0.7);
  transform: scale(1.2);
}

.banner-wrapper .slick-dots li.slick-active button {
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(71, 120, 51, 0.5);
}

.banner-wrapper .slick-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.banner-wrapper .slick-slide.slick-active {
  opacity: 1;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2")
      format("woff2"),
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff")
      format("woff");
}

.breadcrumb-banner {
  background-image: url(../images/banner-1.jpg);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  color: white;
  margin-bottom: 60px;
}

.breadcrumb-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-heading {
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-heading h1 {
  font-weight: 700;
  margin-bottom: 15px;
  /* background: linear-gradient(204deg, #fff 34%, #ff9e6b 100%); */
  /* background: linear-gradient(204deg, #477833 34%, #cf2727 100%); */
  background-color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.breadcrumb-heading p {
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.breadcrumb-nav {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 15px 30px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-link:hover {
  color: #477833;
  transform: translateY(-2px);
}

.breadcrumb-link i {
  font-size: 0.9rem;
  color: #477833;
}

.breadcrumb-item.active {
  color: #ff9e6b;
  font-weight: 600;
  position: relative;
}

.breadcrumb-item.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 2px;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.breadcrumb-separator i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.breadcrumb-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.breadcrumb-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 5px;
}

.breadcrumb-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(100px, -100px);
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(-50px, 50px);
}

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

.about-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-section .col:first-child {
  padding-right: 30px;
}

.about-section .col:last-child {
  padding-left: 30px;
}

.about-content {
  position: relative;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(71, 120, 51, 0.2);
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 2px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(71, 120, 51, 0.3);
}

.highlight-icon i {
  color: white;
  font-size: 1.2rem;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-width: 100px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

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

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.about-image:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.image-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(71, 120, 51, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.experience-badge span:first-child {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge span:last-child {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.about-actions .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.about-actions .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-actions .primary-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.about-actions .primary-btn:hover i {
  transform: translateX(5px);
}

.about-actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  background: transparent;
  color: #477833;
  border: 2px solid #477833;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-actions .secondary-btn:hover {
  background: #477833;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(71, 120, 51, 0.2);
}

.why-choose-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h6 {
  color: #477833;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(71, 120, 51, 0.1);
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 {
  color: #0f172a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-choose-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(71, 120, 51, 0.2);
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #477833, #cf2727);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-choose-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1),
    rgba(207, 39, 39, 0.1)
  );
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.why-choose-card:hover .icon-bg {
  transform: scale(1);
}

.feature-icon i {
  font-size: 2.5rem;
  color: #477833;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.why-choose-card:hover .feature-icon i {
  color: #cf2727;
  transform: scale(1.1);
}

.why-choose-card h4 {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-choose-card p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(71, 120, 51, 0.05);
  line-height: 1;
  transition: all 0.3s ease;
}

.why-choose-card:hover .feature-number {
  color: rgba(207, 39, 39, 0.05);
  transform: scale(1.1);
}

.why-choose-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.why-choose-stats .stat-item {
  text-align: center;
  position: relative;
}

.why-choose-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(229, 231, 235, 0.8);
}

.why-choose-stats .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.why-choose-stats .stat-label {
  color: #64748b;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-section {
  background: white;
  position: relative;
}

.services-section h2 {
  color: #0f172a;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.services-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #477833, #cf2727);
  border-radius: 2px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #477833, #cf2727);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

.service-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1));
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img img {
  transform: scale(1.1) rotate(2deg);
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.service-content h4 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
}

.service-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex: 1;
  font-size: 1rem;
}

.client-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.testimonials-grid .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonials-grid .slick-dots li:not(:nth-last-of-type(1)) {
  margin-right: 10px;
}

.testimonials-grid .slick-dots li button {
  font-size: 0;
  background-color: transparent;
  border: none;
  outline: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(71, 120, 51, 0.3);
  cursor: pointer;
}

.testimonials-grid .slick-dots .slick-active button {
  background-color: #b02121;
}

.testimonial-card:hover {
  border-color: rgba(71, 120, 51, 0.2);
}

.testimonial-card.featured {
  border: 2px solid #477833;
  box-shadow: 0 15px 35px rgba(71, 120, 51, 0.15);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #477833, #cf2727);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-content {
  flex: 1;
  position: relative;
  margin-bottom: 2rem;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(71, 120, 51, 0.1);
  position: absolute;
  top: -15px;
  left: -10px;
}

.testimonial-content p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  padding-left: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(229, 231, 235, 0.5);
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #477833;
  box-shadow: 0 5px 15px rgba(71, 120, 51, 0.2);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.author-info p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(71, 120, 51, 0.1);
  color: #477833;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.client-logos {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.logos-title {
  text-align: center;
  margin-bottom: 2rem;
}

.logos-title h5 {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid #477833;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(71, 120, 51, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-item:hover {
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1),
    rgba(207, 39, 39, 0.1)
  );
  transform: translateY(-5px);
}

.logo-item i {
  font-size: 2.5rem;
  color: #477833;
  transition: all 0.3s ease;
}

.logo-item:hover i {
  color: #cf2727;
  transform: scale(1.1);
}

.logo-item span {
  color: #0f172a;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

footer {
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    #477833,
    #cf2727,
    rgba(255, 255, 255, 0.8)
  );
  animation: gradientFlow 3s ease infinite;
  background-size: 200% 200%;
}

footer p {
  color: #fff;
}
@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

footer h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
  line-height: 1.3;
}

footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: white;
  border-radius: 2px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
  padding-left: 1.2rem;
}

footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: white;
  border-radius: 2px;
}

footer ul li {
  transition: all 0.3s ease;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
  position: relative;
  overflow: hidden;
}

footer ul li a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  width: 3px;
  background: white;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

footer ul li a:hover {
  color: white;
  transform: translateX(10px);
}

footer ul li a:hover::before {
  transform: scaleY(1);
}

footer .col:nth-child(4) ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

footer .col:nth-child(4) ul li i {
  color: white;
  font-size: 1.2rem;
  width: 24px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

footer .col:nth-child(4) ul li a {
  display: inline;
  padding: 0;
}

footer .col:nth-child(4) ul li a:hover {
  transform: none;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons li {
  margin: 0;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-icons li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icons li a:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.social-icons li a:hover::before {
  opacity: 1;
}

.social-icons li a i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-icons li a:hover i {
  transform: scale(1.1);
}

.copy-right {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.copy-right p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.copy-right p span {
  color: white;
  font-weight: 600;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.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.6s ease;
}

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

.primary-btn {
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(71, 120, 51, 0.4);
}

.primary-btn:hover {
  background: linear-gradient(204deg, #3a642a 34%, #b02121 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(71, 120, 51, 0.6);
}

.secondary-btn {
  background: transparent;
  color: #477833;
  border: 2px solid #477833;
  padding: 0.9rem 2.4rem;
}

.secondary-btn:hover {
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(71, 120, 51, 0.4);
  border-color: transparent;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-item {
  animation: fadeInUp 0.6s ease-out both;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card {
  animation: fadeInUp 0.6s ease-out both;
}

.testi-data {
  animation: fadeIn 0.6s ease-out both;
}

html {
  scroll-behavior: smooth;
}

.btn:focus,
header .mobile-menu-toggle:focus,
a:focus {
  outline: 2px solid #477833;
  outline-offset: 2px;
}

@media print {
  .hero-section,
  footer {
    background: white !important;
    color: black !important;
  }
  .btn,
  .social-icons {
    display: none !important;
  }
}
/* ==================== security-services-section =================== */
.security-services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.security-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(71, 120, 51, 0.1) 0%,
    transparent 70%
  );
  transform: translate(150px, -150px);
}

.security-services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(207, 39, 39, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-100px, 100px);
}

.section-badge {
  display: inline-block;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  color: white;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(71, 120, 51, 0.2);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.row.align-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.security-content {
  position: relative;
  z-index: 2;
}

.security-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.highlight-text {
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.security-description {
  margin-bottom: 40px;
}

.security-description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.security-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.security-features .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.2rem;
}

.security-features .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.security-features .feature-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.security-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

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

.security-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

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

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

.security-image .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
}

.security-image .overlay-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
}

.security-image .overlay-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.security-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.security-stats .stat-item {
  text-align: center;
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.security-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #e9ecef;
}

.security-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 5px;
}

.security-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border-left: 4px solid #477833;
}

.services-highlight h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-highlight h4::before {
  content: "";
  width: 30px;
  height: 3px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 2px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #cf2727;
}

.service-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.service-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.training-note {
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1) 0%,
    rgba(207, 39, 39, 0.05) 100%
  );
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #cf2727;
  margin: 25px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

.training-note strong {
  color: #2c3e50;
  font-weight: 600;
}

.additional-info {
  background: linear-gradient(135deg, #477833 0%, #cf2727 100%);
  padding: 20px;
  border-radius: 15px;
  margin-top: 25px;
  color: white;
  box-shadow: 0 5px 20px rgba(71, 120, 51, 0.2);
}

.additional-info p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.additional-info i {
  color: white;
  font-size: 1.1rem;
  margin-top: 3px;
}

.training-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border: 2px solid #e9ecef;
  border-left: 4px solid #cf2727;
}

.training-section h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.training-section h4 i {
  color: #cf2727;
  font-size: 1.2rem;
}

.training-list {
  margin: 15px 0 0 20px;
  padding: 0;
}

.training-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.training-list li i {
  color: #477833;
  font-size: 0.9rem;
}

.trust-note {
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1) 0%,
    rgba(207, 39, 39, 0.05) 100%
  );
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #477833;
  margin: 25px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  text-align: center;
}

.trust-note strong {
  color: #cf2727;
  font-weight: 700;
}

.certification-box {
  background: linear-gradient(135deg, #477833 0%, #cf2727 100%);
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
  color: white;
  box-shadow: 0 5px 20px rgba(71, 120, 51, 0.3);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.cert-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.cert-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 0.9;
  line-height: 1.5;
}

.cert-list {
  margin: 0;
  padding: 0;
}

.cert-list li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-list li i {
  color: white;
  font-size: 0.8rem;
}

.services-checklist {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #477833;
  transition: transform 0.3s ease;
}

.check-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.check-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.1rem;
}

.check-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.check-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.gatekeeper-expertise {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  border: 1px solid #e9ecef;
}

.gatekeeper-expertise h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gatekeeper-expertise h4 i {
  color: #477833;
  font-size: 1.1rem;
}

.gatekeeper-expertise p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.service-coverage {
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1) 0%,
    rgba(207, 39, 39, 0.05) 100%
  );
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: #444;
  text-align: center;
  line-height: 1.5;
}

.service-coverage strong {
  color: #2c3e50;
  font-weight: 600;
}

.service-benefits {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #cf2727;
}

.service-benefits h5 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-benefits h5 i {
  color: #cf2727;
  font-size: 1.1rem;
}

.benefits-list {
  margin: 0;
  padding: 0;
}

.benefits-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.benefits-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.benefits-list li i {
  color: #477833;
  font-size: 0.9rem;
  width: 20px;
}

.security-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.security-services-grid .service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #477833;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.security-services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.security-services-grid .service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.2rem;
}

.security-services-grid .service-card-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.security-services-grid .service-card-content p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.security-expertise {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
  border: 2px solid #e9ecef;
}

.security-expertise h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-expertise h4 i {
  color: #cf2727;
  font-size: 1.2rem;
}

.security-expertise p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.expertise-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.expertise-badge {
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1) 0%,
    rgba(207, 39, 39, 0.1) 100%
  );
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #477833;
  font-weight: 500;
  border: 1px solid rgba(71, 120, 51, 0.2);
}

.security-options {
  margin: 25px 0;
}

.security-options h5 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-options h5 i {
  color: #477833;
  font-size: 1.1rem;
}

.options-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.option-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-card.armed {
  border-top: 4px solid #cf2727;
}

.option-card.unarmed {
  border-top: 4px solid #477833;
}

.option-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.option-card.armed i {
  color: #cf2727;
}

.option-card.unarmed i {
  color: #477833;
}

.option-card h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.option-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.commitment-note {
  background: linear-gradient(
    135deg,
    rgba(71, 120, 51, 0.1) 0%,
    rgba(207, 39, 39, 0.05) 100%
  );
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  border-left: 4px solid #cf2727;
}

.commitment-note strong {
  color: #cf2727;
  font-weight: 700;
}

.coverage-section {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.coverage-section h5 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-section h5 i {
  color: #cf2727;
  font-size: 1.1rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.area-item:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transform: translateY(-3px);
}

.area-item i {
  font-size: 1.5rem;
  color: #477833;
}

.area-item span {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  text-align: center;
}

/* Security Services Dropdown Section */
.security-services-dropdown {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(71, 120, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.security-services-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #477833, #cf2727);
}

.security-services-dropdown h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-services-dropdown h4::before {
  content: "";
  width: 30px;
  height: 3px;
  background: linear-gradient(204deg, #477833 34%, #cf2727 100%);
  border-radius: 2px;
}

.security-services-dropdown .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.security-services-dropdown .dropdown-menu li {
  list-style: none;
  margin: 0;
}

.security-services-dropdown .dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: white;
  border-radius: 10px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.security-services-dropdown .dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #477833, #cf2727);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-services-dropdown .dropdown-menu li a:hover {
  background: linear-gradient(
    90deg,
    rgba(71, 120, 51, 0.05) 0%,
    rgba(207, 39, 39, 0.03) 100%
  );
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(71, 120, 51, 0.2);
}

.security-services-dropdown .dropdown-menu li a:hover::before {
  opacity: 1;
}

/* Current page highlight */
.security-services-dropdown .dropdown-menu li a {
  /* background: linear-gradient(135deg, #477833 0%, #CF2727 100%); */
  color: #000;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(71, 120, 51, 0.2);
}

.security-services-dropdown .dropdown-menu li a::after {
  content: "✓";
  margin-left: auto;
  font-weight: bold;
  font-size: 0.9rem;
}

.security-services-dropdown .dropdown-menu li a::before {
  display: none;
}

.security-services-dropdown .dropdown-menu li a:hover {
  background: linear-gradient(135deg, #cf2727 0%, #477833 100%);
  transform: translateX(5px);
  color: #fff;
}

/* Add icons to each service */
.security-services-dropdown .dropdown-menu li:nth-child(1) a::after,
.security-services-dropdown .dropdown-menu li:nth-child(2) a::after,
.security-services-dropdown .dropdown-menu li:nth-child(3) a::after,
.security-services-dropdown .dropdown-menu li:nth-child(4) a::after,
.security-services-dropdown .dropdown-menu li:nth-child(5) a::after {
  margin-left: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  color: #477833;
  transition: color 0.3s ease;
}

.security-services-dropdown .dropdown-menu li aafter {
  color: white;
}

.security-services-dropdown .dropdown-menu li:nth-child(1) a::after {
  content: "\f508"; /* PSO icon */
}

.security-services-dropdown .dropdown-menu li:nth-child(2) a::after {
  content: "\f0f0"; /* Bouncer icon (fist) */
}

.security-services-dropdown .dropdown-menu li:nth-child(3) a::after {
  content: "\f6e2"; /* Gun icon */
}

.security-services-dropdown .dropdown-menu li:nth-child(4) a::after {
  content: "\f52b"; /* Gate icon */
}

.security-services-dropdown .dropdown-menu li:nth-child(5) a::after {
  content: "\f21e"; /* Security guard icon */
}

.security-services-dropdown .dropdown-menu li a:hover::after {
  color: #cf2727;
}

/* Responsive Design */
@media (max-width: 768px) {
  .security-services-dropdown {
    padding: 20px;
  }

  .security-services-dropdown h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .security-services-dropdown .dropdown-menu li a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .security-services-dropdown {
    margin: 15px 0;
  }

  .security-services-dropdown .dropdown-menu {
    gap: 6px;
  }

  .security-services-dropdown .dropdown-menu li a {
    padding: 10px 14px;
  }
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
  background: #f8f9fb;
}

/* Heading */
.contact-heading h6 {
  color: #1b4b36;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0;
  color: #222;
}

.contact-heading p {
  color: #666;
}

/* ===============================
   CONTACT INFO CARDS
================================ */
.contact-info {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 22px;
  color: #1b4b36;
}

.contact-text h5 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #222;
}

.contact-text p,
.contact-text address {
  color: #555;
  font-style: normal;
}

.contact-text a {
  color: #1b4b36;
  font-weight: 500;
}

.small-text {
  font-size: 13px;
  color: #888;
}

/* ===============================
   CONTACT FORM
================================ */
.contact-form-section {
  background: #ffffff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.form-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}

.form-header p {
  color: #666;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1b4b36;
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 75, 54, 0.1);
}

.form-error {
  display: none;
  font-size: 13px;
  color: #d9534f;
  margin-top: 5px;
}

/* ===============================
   BUTTON
================================ */
.primary-btn {
  background: #1b4b36;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #163c2c;
  transform: translateY(-2px);
}

/* ===============================
   MAP SECTION
================================ */
.map-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.map-overlay h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #1b4b36;
}

.map-overlay p {
  font-size: 14px;
  color: #555;
  margin: 3px 0;
}

/* ===============================
   ADDITIONAL INFO CARDS
================================ */
.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
  color: #1b4b36;
}

.info-card h4 {
  font-weight: 700;
  margin-top: 10px;
  color: #222;
}

.info-card p {
  color: #666;
  font-size: 15px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .contact-heading h2 {
    font-size: 1.8rem;
  }

  .map-overlay {
    position: static;
    margin-bottom: 15px;
  }
}


.client-logos{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.client-logos img{
    width: 200px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

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