/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: rgb(5, 50, 117);
  font-weight: bold;
  text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
}

.container {
  width: 85%;
  margin: 0 auto;
  max-width: 1200px;
}


/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.4); /* Transparent white background */
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px); /* Apply the blur effect for the glassy look */
  -webkit-backdrop-filter: blur(12px); /* For Safari */
  text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-link img {
  max-width: 290px;
  margin-left: -100px;
}

.header-nav .nav-list {
  list-style: none;
  display: flex;
  margin-left: 50px;
}

.nav-link {
  text-decoration: none;
  color: rgb(5, 50, 117);
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
  margin-left: 40px;
}

.nav-link:hover {
  color: rgba(12, 163, 4, 0.78);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 200px 0px; /* Increased padding for more vertical space */
  text-align: center;
  color: white;
  overflow: hidden; /* Ensures video doesn't overflow the section */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #007BFF, #00C3ED); /* Fallback gradient */
  background: url("vecteezy_visual-representation-of-cloud-computing-technology-with_51092811.mp4") no-repeat center center;
  opacity: 0.3; /* Darken the background video */
  z-index: -1; /* Keeps the gradient behind the content */
}

/* Hero Video Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%; /* Increase the width to make the video broader */
  height: 100%; /* Increase the height to make the video broader */
  z-index: -1; /* Ensure video stays behind text */
  left: -10%; /* Shift video left to maintain centering */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire section */
  filter: brightness(40%); /* Darken the video */
  opacity: 0; /* Initially hide the video */
  animation: fadeIn 3s forwards; /* Apply fade-in animation */
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 50px;
  max-width: 900px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtext {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  max-width: -600px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-cta {
  background-color: rgba(10, 192, 1, 0.78);
  padding: 15px 30px;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: rgb(5, 50, 117);
}

/* Protection Section */
.protect-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.protect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.protect-item {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.protect-item:hover {
  transform: scale(1.05);
}

.protect-item img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

/* Contact Section with Video */
.contact-section {
  position: relative;
  color: white;
  padding: 60px 0;
  text-align: center;
  overflow: hidden; /* Prevents video overflow */
}

/* Video Background */
.contact-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure video stays behind content */
}

/* Dark Overlay to Darken Video */
.contact-video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Adjust the opacity for darkness */
  z-index: 1; /* Ensures the overlay is on top of the video */
}

.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover entire section */
}

/* Centering Contact Form Inputs */
.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.1); /* Transparent white */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
  max-width: 550px;
  margin: 0 auto;
  z-index: 2; /* Keeps form above overlay */
  backdrop-filter: blur(12px); /* Strong blur for glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Thin soft border */
  text-align: center; /* Centering form elements */
  display: flex;
  flex-direction: column;
  align-items: center; /* Align input boxes in the center */
}

/* Style for Form Groups (Centering Inputs) */
.form-group {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Input Fields */
.input-field {
  width: 80%; /* Adjusted width for centering */
  padding: 12px;
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px); /* Light blur */
  transition: all 0.3s;
  text-align: center; /* Center text inside input fields */
}

/* Placeholder Text */
.input-field::placeholder {
  color: rgba(255, 255, 255, 0.7);
  text-align: center; /* Center placeholder text */
}

/* Button */
.btn-submit {
  width: 85%; /* Matches input field width */
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 20px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}


.input-field {
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-submit {
  background-color: rgba(12, 163, 4, 0.78);
  padding: 12px 20px;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: rgb(5, 50, 117);
}

/* Footer Styling */
.footer {
  background-color: white;
  color: rgba(12, 163, 4, 0.78);
  padding: 40px 0;
  backdrop-filter: blur(12px); /* Apply the blur effect for the glassy look */
  -webkit-backdrop-filter: blur(12px); /* For Safari */
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Logo on the Left */
.footer-logo {
  flex: 1;
  text-align: left;
}

.footer-logo img {
  max-width: 290px;
  margin-left: -100px; /* Adjust size for a professional look */
}

/* Contact Info on the Right */
.footer-contact {
  flex: 1;
  margin-left: 700px;
}

.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: rgba(12, 163, 4, 0.78);
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1rem;
}

/* Footer Links */
.footer-link {
  text-decoration: none;
  color: rgb(5, 50, 117);
  transition: color 0.3s;
}

.footer-link:hover {
  color: rgba(12, 163, 4, 0.78);
}

/* Footer Bottom Text */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: black;
  margin-top: 50px;
}


/* Threat Protection Section */
.threat-section {
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
  padding: 60px 0;
  text-align: center;
  font-size: x-large;
}

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

.threat-item {
  background-color: #f4f4f4;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.threat-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.threat-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: invert(30%) sepia(90%) saturate(500%) hue-rotate(70deg) opacity(0.78);
}



.threat-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(5, 50, 117);
}

.threat-item p {
  font-size: 1rem;
  color: rgb(5, 50, 117);
  line-height: 1.5;
}
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef2f3, #d9e2ec);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1;
  padding: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.about-text h3 {
  font-size: 50px;
  color: #053275;
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: ;
  letter-spacing: 1.2px;
  position: relative;
}

.about-text h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: #0ca304;
  margin-top: 10px;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

.about-text h3:hover::after {
  width: 120px;
}

.about-text p {
  font-size: 20px;
  color: #053275;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  transition: color 0.4s ease-in-out;
}

.about-text p:hover {
  color: #0ca304;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-text {
    padding: 0;
  }

  .about-text h3::after {
    margin: 10px auto;
  }
}

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

  .services {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(12, 163, 4, 0.78), rgba(5, 50, 117, 0.9));
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }

  .services-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  .service-item {
    perspective: 1200px;
    width: 350px;
    height: 450px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s ease-in-out;
  }

  .service-item.show {
    opacity: 1;
    transform: translateY(0);
  }

  .card {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s;
  }

  .service-item.show .card {
    transform: rotateY(180deg);
  }

  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2); /* Frosted glass effect */
    backdrop-filter: blur(15px); /* Increases transparency effect */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Adds a subtle glassy border */
  }

  .card-front {
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Improves text readability */
  }

  .card-back {
    transform: rotateY(180deg);
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }


  .card-back img {
    width: 80%;
    border-radius: 12px;
  }

  .service-desc {
    font-size: 1rem;
    margin-top: 10px;
    color: #ddd;
  }

  .service-detail {
    font-size: 1rem;
    margin-top: 15px;
    color: #fff;
    padding: 0 15px;
  }

  /* Fade Out Effect When Scrolling Away */
  .service-item.hide {
    opacity: 0;
    transform: translateY(100px);
  }



  .industries-section h2 {
    color: rgb(5, 50, 117); /* Change the color to your desired color */
  }
  
  .industries-section {
    text-align: center;
    padding: 60px 20px;
    color: white;
    overflow: hidden;
    position: relative;
    font-size: x-large;
  }
  
  .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80%;
    margin: auto;
  }
  
  .carousel {
    overflow: hidden;
    width: 70%;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;  /* Adjust height as needed */
    background-size: cover;  /* Cover the entire carousel item */
    background-position: center;  /* Ensure the image is centered */
    background-repeat: no-repeat;  /* Avoid repeating the image */
    transition: opacity 1s ease-in-out;
    border-radius: 40px;
  }
  
  
  /* Ensure content box is centered and visible over the background */
  .content-box {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 50%; /* Smaller box */
    max-width: 300px; /* Keep it centered */
  }
  
  .content-box img {
    width: 100px; /* Smaller SVG */
    height: 100px;
    margin-bottom: 10px;
  }
  
  .content-box h3 {
    font-size: 18px;
    background: rgba(12, 163, 4, 0.78);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  .btn {
    background: rgba(12, 163, 4, 0.78);
    color: rgb(5, 50, 117);
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 24px;
    transition: 0.3s;
    
  }
  
  .btn:hover {
    background: rgb(0, 136, 255);
  }





  