/* Base Reset */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 90vh; /* Adjust viewport height as needed */
  background-color: #000;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

/* Hero Content Section - Banner Style */
.hero-content-section {
  background: linear-gradient(135deg, #1a3c6e 0%, #2c5aa0 50%, #1a3c6e 100%);
  padding: 60px 20px 80px 20px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
  min-height: 250px;
}

.hero-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 1;
  margin-top: 20px;
}

/* Button Styles */
.primary-button,
.secondary-button {
  display: inline-block;
  padding: 16px 35px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.primary-button {
  background: linear-gradient(135deg, #d32f2f, #e53935);
  color: #fff;
  border: none;
  box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
}

.primary-button:hover {
  background: linear-gradient(135deg, #e53935, #f44336);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
  color: #fff;
  text-decoration: none;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-content-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .video-container {
    height: 80vh;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .primary-button, .secondary-button {
    width: 100%;
  }

  .hero-content-section {
    padding: 50px 15px;
  }
}

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

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

  .video-container {
    height: 70vh;
  }

  .hero-content-section {
    padding: 40px 15px;
  }
}

/* Accessibility: Respect users' motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-subtitle,
  .hero-buttons {
    animation: none;
    opacity: 1;
  }
}


/* Additional Enhancements */
.trust-description1 {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Services Box */
.services-box1 {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-heading-box1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2c3e50;
}

.services-content-box1 p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Services Container */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.services-row {
  margin-bottom: 60px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.services-row:hover {
  transform: translateY(-5px);
}

.services-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.services-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.services-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.services-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title1 {
    font-size: 2rem;
  }

  .trust-heading1,
  .services-heading-box1 {
    font-size: 1.8rem;
  }

  .services-row {
    padding: 20px;
  }

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

  .video-container1 {
    height: 60vh;
  }
}

@media (max-width: 576px) {
  .section-title1 {
    font-size: 1.8rem;
  }

  .trust-box1,
  .services-box1 {
    padding: 25px;
  }

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

/*      main section of code   */

/* Enhanced ShieldWise Security Styling */

/* Main Content Container */
.shieldwise-main-content {
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Section Divider Styling */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 50px;
  width: 100%;
  max-width: 1000px;
}

.divider-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(208,0,0,0.1) 0%, rgba(208,0,0,0.7) 50%, rgba(208,0,0,0.1) 100%);
}

.divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 20px;
  background-color: #fff;
  color: #d12028;
  font-size: 22px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(209, 32, 40, 0.2);
  transition: all 0.3s ease;
}

.divider-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(209, 32, 40, 0.3);
}

/* Border Line */
.border-line1 {
  margin: 50px auto;
  width: 80%;
  height: 6px;
  background: linear-gradient(90deg, #f5f5f5 0%, #d12028 50%, #f5f5f5 100%);
  border-radius: 10px;
  position: relative;
}

.border-line-text {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  background-color: #fff;
  padding: 0 20px;
  letter-spacing: 0.5px;
}

/* Content Row */
.row-1234 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 30px auto;
  max-width: 1200px;
}

/* Main Card */
.custom-card-5678 {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 1000px;
  padding: 50px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #1e3a5f 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card Hover Effect */
.custom-card-5678::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2d5a87 0%, #3b7ab8 50%, #2d5a87 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-card-5678:hover::before {
  opacity: 1;
}

.custom-card-5678:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.custom-card-5678:hover .title-5678,
.custom-card-5678:hover .description-5678,
.custom-card-5678:hover .description-5678 strong {
  color: #fff;
}

.custom-card-5678:hover .btn-get-started-5678 {
  background-color: #3b82f6; /* Blue on hover */
  color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Content Styling */
.title-5678 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
  transition: color 0.3s ease;
  text-align: center;
}

.title-5678::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.custom-card-5678:hover .title-5678::after {
  background: #fff;
}

.description-5678 {
  padding: 10px 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #e2e8f0;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.description-5678 strong {
  color: #60a5fa; /* Light blue emphasis */
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

/* Make sure all text elements are above the background */
.custom-card-5678 * {
  position: relative;
  z-index: 2;
}

/* Call to Action Button */
.btn-get-started-5678 {
  display: inline-block;
  background-color: #d12028;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 30px;
  border: 2px solid #d12028;
  position: relative;
  z-index: 3; /* Higher z-index to ensure it's above the background */
}

.btn-get-started-5678:hover {
  background-color: #fff;
  color: #d12028;
  transform: translateY(-3px);
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .custom-card-5678 {
    padding: 30px;
    max-width: 800px;
  }

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

@media (max-width: 768px) {
  .custom-card-5678 {
    padding: 25px;
  }

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

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

  .border-line-text {
    font-size: 1.5rem;
  }

  .divider-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .custom-card-5678 {
    padding: 20px;
  }

  .title-5678 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .description-5678 strong {
    font-size: 1.1rem;
  }

  .btn-get-started-5678 {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .border-line1 {
    width: 90%;
  }
}

/* Testimonial Section Styling */
/* Testimonial Section Styling */
/* new section  */

/* Full-width Container */
.why-choose-full-width {
  display: flex;
  width: 100%;
  margin: 40px 0;
  align-items: stretch;
  gap: 0;
}

/* Left Column with Image */
.why-choose-image {
  flex: 1;
  display: flex;
  overflow: hidden;
  max-width: 50%;
  align-items: stretch;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right Column with Content */
.why-choose-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f9fa;
  max-width: 50%;
  margin: 0;
}

/* Title Styling */
.why-choose-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* Features List */
.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between each feature */
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0; /* Add padding to top and bottom of each feature */
  border-bottom: 1px solid #ddd; /* Optional: Add separator line for each feature */
}

.icon {
  font-size: 1.8rem;
  color: #FF6600;
  flex-shrink: 0;
}

.text-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  color: #333;
}

.text-content p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Quote Button */
.quote-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #FF6600;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.quote-button:hover {
  background-color: #cc5200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-full-width {
    flex-direction: column; /* Stack image and content vertically on small screens */
  }

  .why-choose-image, .why-choose-content {
    width: 100%; /* Make each section take full width */
    max-width: 100%;
  }

  .why-choose-image img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensure the image fits within the container */
  }

  .why-choose-title {
    font-size: 2rem; /* Adjust title font size for smaller screens */
  }

  .text-content h3 {
    font-size: 1.5rem; /* Adjust heading font size for better readability */
  }
}

/*     Some Of Our Security Services     */
/* Container for Services Section */
.services-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.services-section h1 {
  margin-bottom: 50px;
  font-size: 3.2rem;
  color: #1a1a1a;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.services-section h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #d32f2f;
  margin: 20px auto 0;
  border-radius: 2px;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  padding: 0 20px;
}

/* Service Card Styling */
.service-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Service Card Base Styling */
.service-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(211, 47, 47, 0.2);
  background: linear-gradient(145deg, #ffffff, #fafafa);
}

/* Gradient Overlay */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(211, 47, 47, 0.05) 0%,
    rgba(211, 47, 47, 0.02) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.service-card:hover::after {
  opacity: 1;
}

/* Service Icon Enhancement */
.service-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #A6AEBF, #8491A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #d32f2f, #ff6659);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text Styling Enhancement */
.service-card p {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #d32f2f;
}

/* Add subtle shine effect */
.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(30deg);
  transition: all 0.8s ease;
  opacity: 0;
}

.service-card:hover::before {
  animation: shine 1.5s ease;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(100%) rotate(30deg);
    opacity: 0;
  }
}


/*               icon section of style  of the index    */

/* ShieldWise Security Services CSS - High Readability Modern Design */

/* Main Section Styling - Light Modern Theme */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0z' fill='%23d12028' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

/* Section Header Styling - Bold and Clear */
.section-title {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a2642;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d12028;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Service Cards Container with Wide Spacing */
.service-cards-container {
    margin-top: 50px;
}

/* Row Spacing */
.row {
    margin-bottom: 60px !important;
}

/* Increased Card Spacing */
.col-lg-2 {
    padding: 0 20px;
}

/* Service Card Styling - Clear and Modern */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    color: #333;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #d12028;
}

/* Icon Styling - Bold and Visible */
.service-icon {
    background: #d12028;
    width: 90px;
    height: 90px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(209, 32, 40, 0.15);
}

.service-card:hover .service-icon {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(209, 32, 40, 0.25);
    border-radius: 50%;
}

.service-icon i {
    font-size: 36px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Card Text Styling with High Contrast */
.service-card p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a2642;
    transition: all 0.4s ease;
    line-height: 1.4;
    position: relative;
    padding-top: 15px;
}

.service-card p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(209, 32, 40, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover p::before {
    width: 60px;
    background: rgba(209, 32, 40, 0.7);
}

.service-card:hover p {
    color: #d12028;
}

/* CTA Button Styling - Clear and Bold */
.cta-container {
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    background: #d12028;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(209, 32, 40, 0.2);
    letter-spacing: 0.5px;
    border: 2px solid #d12028;
}

.cta-button:hover {
    background: #fff;
    color: #d12028;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(209, 32, 40, 0.25);
}

/* Responsive Adjustments with Better Spacing */
@media (max-width: 1200px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 25%;
        padding: 0 15px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-card {
        padding: 35px 15px;
    }
}

@media (max-width: 991px) {
    .col-lg-2 {
        width: 33.333333%;
    }

    .section-title {
        font-size: 36px;
    }

    .service-card {
        padding: 30px 15px;
    }
}

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

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
        padding: 0 15px;
    }

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

    .service-icon i {
        font-size: 28px;
    }

    .service-card p {
        font-size: 16px;
    }

    .service-card {
        margin-bottom: 30px;
        padding: 25px 15px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

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

    .section-title {
        font-size: 28px;
    }

    .col-md-4 {
        width: 100%;
        padding: 0 15px;
    }

    .service-card {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }
}



/* guard section                                   */
/* link style is first a follow with design of the contain */
.learn-more-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem; /* Larger font size for emphasis */
  font-weight: bold;
  color: #3B1C32; /* Dark blue color */
  transition: color 0.3s ease, transform 0.3s ease;
}

.learn-more-link:hover {
  color: #ff6600; /* Orange color on hover */
  transform: translateX(5px);
  text-decoration: none;/* Slight move to the right on hover */
}

.learn-more-link::after {
  content: " → "; /* Large arrow symbol */
  font-size: 1.8rem; /* Make the arrow even larger */
  margin-left: 10px; /* Space between text and arrow */
  transition: margin-left 0.3s ease; /* Smooth transition for arrow */
}

.learn-more-link:hover::after {
  margin-left: 12px; /* Arrow moves further on hover */
}
/*      guard section end   */

/* Security Professionals Section - External CSS */
.security-professionals-section {
    width: 100%;
    position: relative;
    background-color: #0a192f;
    overflow: visible;
    padding: 100px 0 60px 0;
    margin-top: 40px;
    scroll-margin-top: 100px;
}

.professionals-wrapper {
    display: flex;
    flex-direction: row;
    min-height: auto;
    height: auto;
    max-width: 100%;
    gap: 0;
    align-items: flex-start;
}

.professionals-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #0a192f;
    position: relative;
    z-index: 2;
    transform: none !important;
    margin-top: 0 !important;
    top: 0 !important;
}

.professionals-content::after {
    display: none;
}

.section-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #64ffda;
    margin-bottom: 10px;
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: block;
    text-transform: uppercase;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: #e6f1ff;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #64ffda;
}

.content-block {
    max-width: 650px;
    width: 100%;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.6;
    color: #a8b2d1;
}

.content-block p strong {
    color: #e6f1ff;
    font-weight: 600;
}

.professionals-image {
    width: 50%;
    height: auto;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.professionals-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.2);
    z-index: 1;
}

.professionals-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.professionals-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .professionals-wrapper {
        flex-direction: column-reverse;
        height: auto;
    }

    .professionals-content,
    .professionals-image {
        width: 100%;
    }

    .professionals-content {
        padding: 60px 40px;
    }

    .professionals-content::after {
        display: none;
    }

    .professionals-image {
        height: 400px;
    }

    .section-heading {
        font-size: 36px;
    }
}

@media screen and (max-width: 576px) {
    .professionals-content {
        padding: 50px 25px;
    }

    .section-tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-heading {
        font-size: 30px;
    }

    .content-block p {
        font-size: 16px;
    }

    .professionals-image {
        height: 300px;
    }
}



/*        service areas part of style         */
.service-areas-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.service-areas-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-areas-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
    transition: all 0.4s ease;
}

.area-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.area-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.area-card span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    transition: all 0.3s ease;
}

.area-card:hover span {
    transform: translateY(-5px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-areas-section h2 {
        font-size: 2rem;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section-container {
    max-width: 1400px;
    height: 700px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.faq-content {
    flex: 1;
    padding: 30px;
    height: 700px;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-image-section {
    flex: 1;
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.faq-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.faq-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.faq-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-card {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-header:hover {
    background: #f8f9fa;
}

.faq-body {
    padding: 25px;
    background: #fff;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    border-top: 1px solid #eee;
}

.faq-body br {
    margin-bottom: 8px;
}

.faq-header {
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    color: #d12028;
    font-weight: bold;
    margin-right: 15px;
}

.faq-header[aria-expanded="true"] + .faq-body {
    max-height: 200px; /* Adjust as needed */
}


.faq-icon {
    font-size: 1.2rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-header:focus {
    outline: 2px solid #1565c0;
    outline-offset: 2px;
    background-color: #e3f2fd;
}

.faq-header:focus-visible {
    outline: 3px solid #1565c0;
    outline-offset: 2px;
    background-color: #e3f2fd;
}

.faq-image-section img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Updated CTA section */
.cta-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    position: relative;
    overflow: hidden;
    margin: 60px 0 80px;
    border-radius: 0 0 10px 10px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.cta-title {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-text {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-button {
    padding: 18px 45px;
    font-size: 1.3rem;
    border-radius: 50px;
    background: #d32f2f;
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    background: #e53935;
}

/*        new section in main   review  */

/* Premium California Testimonials - Professional Redesign */

.premium-testimonials {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

/* Section Header */
.premium-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.premium-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Featured Testimonial */
.premium-feature {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d12028;
}

.feature-content {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 60px;
    color: rgba(209, 32, 40, 0.08);
    font-family: Georgia, serif;
}

.premium-feature blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 25px 0;
    font-style: italic;
}

.feature-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d12028;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1a3c6e;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 3px 0;
}

.author-location {
    font-size: 0.8rem;
    color: #999;
}

.star-rating {
    color: #ffc107;
    font-size: 14px;
    margin-top: 5px;
}

/* Client Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 45px;
}

.premium-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid #d12028;
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-photo {
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 20px;
}

.premium-card blockquote {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 18px 0;
    font-style: italic;
}

.card-author {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.card-author h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #1a3c6e;
}

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

.card-author span {
    font-size: 0.75rem;
    color: #999;
}

/* Results Bar */
.results-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 45px;
}

.result-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d12028;
    margin-bottom: 8px;
}

.result-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

/* CTA */
.premium-cta {
    background: linear-gradient(135deg, #1a3c6e, #2c5aa0);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.premium-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.premium-button {
    display: inline-block;
    background: #d12028;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(209, 32, 40, 0.3);
}

.premium-button:hover {
    background: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 32, 40, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-header h2 {
        font-size: 1.8rem;
    }

    .premium-feature {
        padding: 25px;
    }

    .quote-mark {
        font-size: 50px;
    }

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

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

    .premium-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .premium-header h2 {
        font-size: 1.6rem;
    }

    .premium-feature blockquote {
        font-size: 0.95rem;
    }

    .author-photo {
        width: 45px;
        height: 45px;
    }

    .card-photo {
        height: 100px;
    }

    .card-photo img {
        width: 50px;
        height: 50px;
    }

    .result-number {
        font-size: 1.6rem;
    }

    .premium-cta p {
        font-size: 1rem;
    }
}

/* Related Services Note Styling */
.related-services-note {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #007bff;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-services-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
}

.related-services-note a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-services-note a:hover {
    color: #0056b3;
    text-decoration: underline;
}