body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background: url('./static/images/backdrop.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  h1, h2, h3 {
    color: #0077b6; 
  }
  
  a {
    color: #0077b6;
    text-decoration: none;
    transition: color 0.3s ease;
  }

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgba(248, 248, 249, 0.861));
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

#logo {
    height: 120px;
    width: 220px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode:darken;
}

/* Navigation Bar */
.banner nav a {
    margin: 0 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    /*transition: color 0.3s ease;*/
    transition: transform 0.2s ease, color 0.2s ease;
}

.banner nav a:hover {
  transform: scale(1.05);
  color: #0077b6;
}

  
/* Ultra-Modern Security Hero */
.hero {
  --electric-blue: #00f0ff;
  --deep-navy: #001a33;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif;
}

.hero-grid {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}


/* Background Effects */
.hero-bg-image {
  grid-area: 1/1;
  background-size: cover;
  background-position: center;
  filter: grayscale(80%) contrast(120%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  z-index: 1;
}

.hero-bg-overlay {
  grid-area: 1/1;
  background: linear-gradient(135deg, rgba(0,10,30,0.9) 0%, rgba(0,50,80,0.7) 100%);
  z-index: 2;
}

.hero-bg-pattern {
  grid-area: 1/1;
  background: 
    radial-gradient(circle at 20% 30%, transparent 20%, rgba(0,240,255,0.03) 21%) 0 0/50px 50px,
    linear-gradient(135deg, transparent 48%, rgba(0,240,255,0.1) 49%, transparent 50%);
  z-index: 3;
}

/* Content Styling */
.hero-content {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  z-index: 4;
  text-align: center;
}

.text-glitch {
  position: relative;
  margin-bottom: 40px;
}

h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 10px rgba(0,240,255,0.5);
  position: relative;
  margin-bottom: 10px;
}

.glitch {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--electric-blue);
  animation: glitch-anim 2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  opacity: 0.8;
}

.subtitle {
  font-size: 1.5rem;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.subtitle:after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--electric-blue);
  margin: 15px auto;
  box-shadow: 0 0 10px var(--electric-blue);
}

.content-card {
  background: rgba(0,10,30,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,240,255,0.3);
  max-width: 800px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 0 30px rgba(0,240,255,0.1);
  position: relative;
  overflow: hidden;
}

.content-card:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent 45%,
    rgba(0,240,255,0.1) 50%,
    transparent 55%
  );
  animation: shine 6s infinite;
}

.content-card p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.highlight {
  font-size: 1.3rem;
  color: var(--electric-blue);
  margin: 30px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Button */
.cta-pulse {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid var(--electric-blue);
  padding: 15px 40px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  margin-top: 20px;
  text-decoration: none;
}

.cta-pulse:hover {
  background: rgba(0,240,255,0.1);
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.pulse-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid var(--electric-blue);
  animation: pulse 2s infinite;
  opacity: 0;
}

/* Animations */
@keyframes glitch-anim {
  0% { transform: translate(0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-5px, -5px); }
  60% { transform: translate(5px, 5px); }
  80% { transform: translate(5px, -5px); }
  100% { transform: translate(0); }
}

@keyframes shine {
  0% { transform: rotate(0deg) translate(-30%, -30%); }
  100% { transform: rotate(360deg) translate(-30%, -30%); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    letter-spacing: 3px;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .content-card {
    padding: 30px 20px;
  }
  
  .content-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .content-card {
    padding: 25px 15px;
  }
}

  
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    margin: 20px auto;
    width: 75%;
    max-width: 75%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    /*opacity: 50%;*/
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0077b6;
    text-align: center;
    width: 100%;
  }
 
  .service-item {
    flex: 1 1 calc(33.33% - 30px);
    margin: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 119, 182, 0.2);
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    color: #0077b6;
    margin: 10px 0;
  }
  
.service-item i {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 10px;
  display: block;
}

  .service_pics {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: cover; 
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  @media screen and (max-width: 768px) {
    .service-item {
      flex: 1 1 calc(50% - 30px); /* Adjust for smaller screens */
    }
  }
  
  @media screen and (max-width: 480px) {
    .service-item {
      flex: 1 1 100%; /* Stack items on small screens */
    }
  }

  @media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;  /* Reduce size for tablets */
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 1.8rem;  /* Even smaller for mobile */
    }
}

  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .banner {
      flex-direction: column;
      text-align: center;
    }
  
    .banner h1 {
      margin-bottom: 10px;
    }
  
    .service-item, .project-item {
      width: 100%;
      margin: 10px 0;
    }
  
    .hero-banner {
      padding: 20px;
    }
  
    .hero-banner h1 {
      font-size: 2rem;
    }
  
    .hero-banner p {
      font-size: 1rem;
    }
  }


.partners{
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px 10px;
  background: rgba(255, 255, 255);
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  height: 80%;
}

.wrapper {
  max-width: 800px;
  width: 100%;
  position: relative;
}
.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
  left: -22px;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}
.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 142px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
/*.carousel .card .img {
  background: #8B53FF;
  height: 148px;
  width: 148px;
  border-radius: 50%;
}*/
.card .img img {
  width: 140px;
  height: 140px;
  border-radius: 20%;
  object-fit: contain;
  border: 4px solid #fff;
}
.carousel .card h2 {
  font-weight: 500;
  font-size: 1.56rem;
  margin: 30px 0 5px;
}
.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}
/* Add for smoother transitions */
.carousel {
  transition: scroll-left 0.3s ease-out;
}

.card .img {
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}


/* Extra small devices (phones, < 400px) */
@media screen and (max-width: 400px) {
  .wrapper .carousel {
      grid-auto-columns: calc(100% - 10px); /* Less gap */
  }
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}

/* Military-Styled Footer */
.military-footer {
  background: linear-gradient(to right, #fbfbfb 0%, #1a1a1a 100%);
  padding: 30px 0;
  border-top: 3px solid #0077b6; /* Gold accent */
  font-family: 'Rajdhani', sans-serif; /* Military-style font */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo (Left) */
.footer-logo .logo-img {
  height: 180px; /* Adjust based on your logo */
  filter: brightness(1) invert(0); /* White logo */
}

/* Contact Section (Right) */
.contact-section {
  text-align: right;
}

.contact-title {
  color: #0077b6; /* Gold */
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-details p {
  color: #fff;
  margin: 8px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.contact-details i {
  color: #0077b6;
  margin-right: 10px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-left: 15px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0077b6;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-section {
    text-align: center;
  }

  .social-icons a {
    margin: 0 10px;
  }
}
/* 📌 Core Styles */
.contact {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.contact h2 {
  text-align: center;
  color: #0077b6;
  margin-bottom: 1.5rem;
}

/* 📌 Form Elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #0077b6;
  outline: none;
}

/* 📌 Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin: 1rem 0 1.5rem;
}

.service-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.service-option:hover {
  background: #e9ecef;
}

.service-option input {
  margin-right: 8px;
}

/* 📌 Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #0077b6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #1a252f;
}

/* 📌 Status Message */
.status-message {
  margin-top: 1rem;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
}

/* 📌 Responsive */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
