/* Optional: Add icons using FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');


/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: white;
  color: #f0f0f0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --accent: #4f46e5;
  --card-bg: #192841;
  --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --bg: #121212;
  --text: #e0e0e0;
  --accent: #8ab4f8;
  --card-bg: #0f172a;
  --shadow: rgb(0, 0, 0);
}


    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      backdrop-filter: blur(12px);
      background: white;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      z-index: 999;
    }

    .navbar-container {
      max-width: 1900px;
      margin: 0 auto;
      padding: 0.3rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: black 1px 1px 30px;
    }

    .logo img {
      height: 40px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links li a {
      text-decoration: none;
      color: #0060ff;
      font-weight: 600;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #00c6ff;
      box-shadow: 0 0 10px #00c6ff, 0 0 20px #00c6ff;
      transition: width 0.3s ease;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    .nav-links li a:hover {
      color: #00c6ff;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;
      color: black;
      background: none;
      border: none;
      z-index: 1001;
    }
    #bars{
        font-size: 10px;
    }

    .hamburger-line {
      height: 3px;
      width: 100%;
      background-color: black;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    .hamburger.open .line1 {
      transform: rotate(45deg) translateY(8px);
    }

    .hamburger.open .line2 {
      opacity: 0;
    }

    .hamburger.open .line3 {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 27, 42, 0.95);
        backdrop-filter: blur(10px);
        gap: 1.5rem;
        padding: 2rem 1rem;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease-in-out;
      }

      .nav-links.active {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links li {
        width: 100%;
        text-align: center;
      }

      .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
      }
    }
/* Sections */
section {
  padding: 2em;
}

/* ...................................................................HERO SECTION................................................................................ */


/* Hero Section */
.hero {
  position: relative;
  top: 10px;
  height: 50vh;
  background-image: url('images/cover.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 2px black, -1px -1px 2px black;
}

   .floating-feedback-icon {
     position: fixed;
      bottom: 50px;
     right: 20px;
     font-size: 2rem;
     background-color: #1e3a8a;
     color: white;
     padding: 12px;
     border-radius: 50%;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
     cursor: pointer;
     z-index: 999;
      transition: transform 0.2s ease;
    }



.hero-overlay {
  position: absolute;
  /*background-color: rgba(0, 0, 0, 0.7);*/
  top: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #58a6ff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #1e90ff;
}


/* ...................................................................HERO SECTION................................................................................ */
/* ...................................................................WHY CHOOSE US SECTION................................................................................ */


/* Why Choose Us */
.why-choose-us-section {
  background: white;
  padding: 6rem 2rem;
  color: black;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0060ff;
}

.why-choose-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  /* Allows items to wrap on smaller screens */
}

.why-image {
  flex: 1;
  max-width: 75%;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-text {
  flex: 1;
  max-width: 45%;
}

.why-item {
  margin-bottom: 2rem;
}

.why-item h3 {
  font-size: 1.8rem;
  color: Blue;
  margin-bottom: 1rem;
}

.why-item p {
  font-size: 1rem;
  color: black;
  /*color: #005c9d;*/
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 4rem 1.5rem;
  }

  .why-choose-us-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .why-image,
  .why-text {
    max-width: 100%;
  }

  .why-item h3 {
    font-size: 1.5rem;
  }

  .why-item p {
    font-size: 0.95rem;
  }

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

@media (max-width: 480px) {
  .why-choose-us-section {
    padding: 3rem 1rem;
  }

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

  .why-item h3 {
    font-size: 1.25rem;
  }

  .why-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .why-choose-us-content {
    gap: 2.5rem;
  }

  .why-image img {
    border-radius: 8px;
  }
}


/* ...................................................................WHY CHOOSE US SECTION................................................................................ */
/* ...................................................................SERVICE CARD................................................................................ */

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #58a6ff;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

/*.service-card {*/
/*  background: url('/images/back-img-1.jpg');*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  border-radius: 12px;*/
/*  padding: 2rem 1.5rem;*/
/*  text-align: center;*/
/*  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);*/
/*  border: 1px solid #283d5b;*/
/*  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/


.service-card {
    background:  url('/Assets/images/back-img-1.jpg');
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  border: 1px solid #283d5b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.2);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: white;
  border: 2px solid #004683;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.icon-circle i {
  font-size: 1.8rem;
  color: royalblue;
}

.service-card h3 {
  color: royalblue;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  /*text-shadow: 1px 1px 1px black, -1px -1px 1px gray;*/
  color: #00c6ff;
}

/* ...................................................................SERVICE CARD................................................................................ */

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

input,
textarea {
  margin: 0.5em 0;
  padding: 0.75em;
  border: none;
  border-radius: 4px;
}

button {
  background: #58a6ff;
  color: white;
  padding: 0.75em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1em;
}

/*.service-card {*/
/*  background: #0060ff;*/
/*  padding: 1em;*/
/*  border-radius: 8px;*/
/*  border: 1px solid #283d5b;*/
/*}*/


/* ...................................................................CASE STUDY................................................................................ */

.case-studies-section {
  background: white;
  padding: 5rem 2rem;
  color: #0060ff;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background: url('/Assets/images/img2.avif');
  background-position: bottom;
  background-size: cover;
  /*height: 300px;*/
  padding: 0 2rem 2rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(88, 166, 255, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #2c3e50;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.2);
}

.case-card h3 {
  font-size: 1.4rem;
  color: darkblue;
  margin-bottom: 1rem;
}

.case-card p {
  font-size: 1rem;
  color: blue;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.case-card .read-more {
  /*position: absolute;*/
  bottom: 20px;
  text-decoration: none;
  color: #312d58;
  font-weight: bold;
  transition: color 0.3s;
  margin-left: 140px;
  
}

.case-card .read-more:hover {
  color: #00ffff;
}

/* ...................................................................CASE STUDY................................................................................ */
/* ...................................................................CLIENT LOGO................................................................................ */

.clients-section {
  padding: 5rem 2rem;
  background-color: white;
  color: #f0f0f0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #58a6ff;
  margin-bottom: 2rem;
}

.client-slider {
  overflow: hidden;
  /* Hide anything that goes outside the container */
}

.client-logos {
  display: flex;
  animation: scroll 20s linear infinite;
  /* Infinite scrolling effect */
}

.client-logo {
  flex: 0 0 auto;
  margin: 0 1.5rem;
}

.client-logo img {
  width: 150px;
  /* Adjust according to your logo size */
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.1);
  /* Slight zoom effect when hovering over logos */
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
    /* Move the entire list of logos to the left */
  }
}

@media (max-width: 768px) {
  .client-logo img {
    width: 100px;
    /* Adjust logo size for smaller screens */
  }
}

/* ...................................................................CLIENT LOGO................................................................................ */
/* ...................................................................CONTACT................................................................................ */

.contact-section {
  background-color: white;
  padding: 4rem 2rem;
  color: black;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #58a6ff;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: black;
  margin-bottom: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #58a6ff;
  margin-right: 0.75rem;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  background-color: white;
  color: black;
  border: 1px solid #283d5b;
  border-radius: 6px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #58a6ff;
  outline: none;
}

.contact-form button {
  background-color: #58a6ff;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1e90ff;
}

/* ...................................................................CONTACT................................................................................ */
/* ...................................................................ABOUT US................................................................................ */


.about-section {
  background-color: white;
  padding: 4rem 2rem;
  color: black;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.1);
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #58a6ff;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: black;
}

.about-highlights {
  list-style: none;
  padding: 0;
}

.about-highlights li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: black;
}

.about-highlights i {
  color: #58a6ff;
  margin-right: 0.5rem;
}


/* ...................................................................ABOUT US................................................................................ */














    /* ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Footer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */


/* Footer Styles */
.footer {
  background-color: white;
  color: royalblue;
  padding: 4rem 2rem;
  margin-top: 4rem;
}

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

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #58a6ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 0.5rem 0;
}

.footer-col ul li a {
  color: royalblue;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #58a6ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color:royalblue;
}

.footer-bottom p {
  margin-bottom: 1rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin: 0 1rem;
  color: royalblue;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #58a6ff;
}

.cyber-counter {
  background: none;
  padding: 40px 20px;
  font-family: 'Orbitron', sans-serif;
  color: #cbd5e1;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.counter-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.counter-card {
  flex: 1 1 200px;
  background: #1150cd;
/*background: #1e293b;*/

  border-radius: 12px;
  padding: 25px 15px;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.25);
}

.counter-number {
  font-size: 2.5rem;
  color: aqua;
  font-weight: 800;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .counter-grid {
    flex-direction: column;
    align-items: center;
  }

  .counter-card {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col h3 {
    font-size: 1.25rem;
  }

  .footer-col ul li {
    margin: 0.4rem 0;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .social-icons a {
    margin: 0 0.5rem;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}


    /* ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Footer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */