.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-content h2 {
    font-size: 3.2rem;
  }

  .hero-content h3 {
    font-size: 1.8rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-section h2,
  .services-section h2,
  .client-section h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .common-banner {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
  }

  .banner-content h2 {
    font-size: 2.5rem;
  }

  .banner-content h3 {
    font-size: 1.3rem;
  }

  .banner-content .animated-text {
    font-size: 1.5rem;
  }

  .banner-wrapper .slick-prev,
  .banner-wrapper .slick-next {
    width: 50px;
    height: 50px;
  }

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

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

  .banner-wrapper .slick-dots {
    bottom: 30px;
  }

  .about-section .row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section .col:first-child,
  .about-section .col:last-child {
    padding: 0;
  }

  .about-image {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    top: -15px;
    right: -15px;
  }

  .experience-badge span:first-child {
    font-size: 1.8rem;
  }

  .why-choose-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 2rem;
  }

  .why-choose-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-img {
    height: 200px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

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

  .security-image {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .security-heading {
    font-size: 1.8rem;
  }

  .security-services-grid {
    grid-template-columns: 1fr;
  }

  .options-container {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  header .mobile-menu-toggle {
    display: block;
    background: #477833;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px 15px;
    font-size: 20px;
    color: white;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: #3a642a;
  }

  header nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 20px 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    height: calc(100vh - 90px);
    overflow-y: auto;
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    flex-direction: column;
    padding: 0 15px;
    gap: 1.5rem;
    align-items: flex-start;
  }

  header nav ul li {
    width: 100%;
    text-align: left;
    margin-right: 0;
    margin-bottom: 5px;
  }

  header nav ul li a {
    padding: 12px 15px;
    width: 100%;
    display: block;
    border-radius: 8px;
    font-size: 1.1rem;
  }

  header nav ul li a.active::before,
  header nav ul li a:hover::before {
    display: none;
  }

  header nav ul li a.active,
  header nav ul li a:hover {
    background: rgba(71, 120, 51, 0.1);
  }

  header nav ul li.dropdown>a {
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header nav ul li.dropdown>a i {
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  header nav ul li.dropdown.active>a i {
    transform: rotate(180deg);
  }

  header nav ul li .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(248, 249, 250, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 5px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  header nav ul li .dropdown-menu.active {
    max-height: 300px;
    padding: 10px 0;
    display: block;
  }

  header nav ul li .dropdown-menu li {
    padding: 8px 16px;
  }

  header nav ul li .dropdown-menu li:hover {
    background: rgba(71, 120, 51, 0.1);
  }

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

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

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .common-banner {
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
  }

  .banner-content {
    text-align: center;
    padding: 15px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .banner-content h3 {
    font-size: 1.1rem;
  }

  .banner-content .animated-text {
    font-size: 1.3rem;
    min-height: 40px;
    margin: 4px 0;
  }

  .primary-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .banner-wrapper .slick-prev,
  .banner-wrapper .slick-next {
    width: 45px;
    height: 45px;
  }

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

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

  .banner-wrapper .slick-dots {
    bottom: 25px;
    gap: 12px;
  }

  .banner-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

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

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    min-width: 80px;
    padding: 10px;
  }

  .about-actions {
    flex-direction: column;
    gap: 15px;
  }

  .about-actions .primary-btn,
  .about-actions .secondary-btn {
    width: 100%;
    justify-content: center;
  }

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

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-card {
    padding: 1.5rem;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mt-5 {
    margin-top: 3rem !important;
  }

  .mb-5 {
    margin-bottom: 3rem !important;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .security-heading {
    font-size: 1.6rem;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .security-cta {
    flex-direction: column;
    gap: 15px;
  }

  .security-cta .primary-btn,
  .security-cta .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .security-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .security-stats .stat-item {
    flex: 0 0 calc(50% - 10px);
  }

  .security-stats .stat-item:not(:last-child)::after {
    display: none;
  }

  .services-highlight {
    padding: 20px;
  }

  .service-item {
    padding: 12px;
  }

  .training-note {
    padding: 15px;
    font-size: 0.95rem;
  }

  .additional-info {
    padding: 15px;
  }

  .training-section {
    padding: 20px;
  }

  .training-list {
    margin-left: 10px;
  }

  .certification-box {
    padding: 20px;
  }

  .cert-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .check-item {
    padding: 12px;
  }

  .check-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .gatekeeper-expertise {
    padding: 15px;
  }

  .service-benefits {
    padding: 20px;
  }

  .service-coverage {
    font-size: 0.9rem;
    padding: 12px;
  }

  .benefits-list li {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 15px;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .security-expertise {
    padding: 20px;
  }

  .expertise-points {
    gap: 8px;
  }

  .expertise-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .coverage-section {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  header nav {
    top: 65px;
  }

  header nav.active {
    max-height: calc(100vh - 65px);
  }

  .common-banner {
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .banner-content .animated-text {
    font-size: 1.1rem;
    min-height: 35px;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .banner-wrapper .slick-prev,
  .banner-wrapper .slick-next {
    width: 40px;
    height: 40px;
    background: rgba(71, 120, 51, 0.5);
  }

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

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

  .banner-wrapper .slick-dots {
    bottom: 2px;
    gap: 10px;
  }

  .banner-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-image {
    height: 300px;
  }

  .experience-badge {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }

  .experience-badge span:first-child {
    font-size: 1.5rem;
  }

  .experience-badge span:last-child {
    font-size: 0.7rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin: 0 auto 1rem;
  }

  .copy-right {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mt-5 {
    margin-top: 2rem !important;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .security-services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .security-heading {
    font-size: 1.4rem;
  }

  .security-image {
    height: 300px;
  }

  .security-stats .stat-item {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .security-stats .stat-item:last-child {
    margin-bottom: 0;
  }

  .services-list {
    gap: 12px;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .service-item i {
    margin: 0 auto;
  }

  .additional-info p {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .training-list li {
    font-size: 0.9rem;
  }

  .trust-note {
    padding: 15px;
    font-size: 0.95rem;
  }

  .cert-content h5 {
    font-size: 1.1rem;
  }

  .cert-content p {
    font-size: 0.9rem;
  }

  .services-checklist {
    gap: 12px;
  }

  .check-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .check-icon {
    margin: 0 auto;
  }

  .security-services-grid {
    gap: 12px;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .service-icon {
    margin: 0 auto;
  }

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

  .area-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px;
  }

  .area-item i {
    font-size: 1.2rem;
    min-width: 30px;
  }
}

@media (max-width: 480px) {
  .common-banner {
    height: 45vh;
    min-height: 350px;
    max-height: 400px;
  }

  .banner-content h2 {
    font-size: 1.6rem;
  }

  .banner-content h3 {
    font-size: 0.9rem;
  }

  .banner-content .animated-text {
    font-size: 1rem;
  }

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

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

  .why-choose-card,
  .service-card,
  .testimonial-card {
    padding: 1.5rem 1rem;
    margin: 0 0 1rem 0;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.8rem;
  }

  .btn,
  a.btn,
  header nav ul li a {
    min-height: 44px;
    min-width: 44px;
  }

  footer h3 {
    font-size: 1.5rem;
  }

  footer h4 {
    font-size: 1.1rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content h3 {
    font-size: 1.1rem;
  }

  .why-choose-section h2,
  .services-section h2,
  .client-section h2 {
    font-size: 1.8rem;
  }

  .feature-item h5 {
    font-size: 1.1rem;
  }

  .service-content h4 {
    font-size: 1.3rem;
  }

  .testi-data {
    padding: 1.2rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .common-banner {
    height: 40vh;
    min-height: 300px;
    max-height: 350px;
  }

  .banner-content h2 {
    font-size: 1.4rem;
  }

  .banner-content h3 {
    font-size: 0.85rem;
  }

  .banner-content .animated-text {
    font-size: 0.9rem;
  }

  .logo img {
    height: 40px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header h6 {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .social-icons li a {
    width: 40px;
    height: 40px;
  }

  footer h3 {
    font-size: 1.3rem;
  }

  footer h4 {
    font-size: 1rem;
  }
}

.testimonials-grid .slick-list {
  padding: 10px 0 !important;
}

.testimonials-grid .slick-slide {
  padding: 0 10px;
}

.testimonials-grid .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(71, 120, 51, 0.3);
}

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

* {
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

@keyframes fadeInCheck {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

.check-item {
  animation: fadeInCheck 0.5s ease-out;
}

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

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

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

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

.check-item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.security-services-grid .service-card {
  animation: fadeInUp 0.5s ease-out;
}

.security-services-grid .service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.security-services-grid .service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.security-services-grid .service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.security-services-grid .service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.security-services-grid .service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.security-services-grid .service-card:nth-child(6) {
  animation-delay: 0.6s;
}