* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #f4f8fc;
      color: #333;
    }

    header {
      background-color: #007BFF;
      color: white;
      padding: 5px 20px;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .top-bar a {
      color: white;
      text-decoration: none;
    }

    nav {
      background-color: #ffffff;
      border-bottom: 2px solid #e0e0e0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px 0;
      gap: 30px;
    }

    .logo img {
      height: 50px;
    }

    .nav-links {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .nav-links a {
      color: #007BFF;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      transition: color 0.3s;
    }

    .nav-links a::after {
      content: '';
      display: block;
      width: 0;
      height: 2px;
      background: #007BFF;
      transition: width 0.3s;
      margin: auto;
    }

    .nav-links a:hover {
      color: #0056b3;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

/*newmenu css*/

   nav {
      background: linear-gradient(90deg, #4a90e2, #9013fe);
      padding: 10px 0;
      border-radius: 25px;
      margin: 10px auto;
      width: 90%;
    }
    .nav-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .nav-item {
      margin: 0 15px;
      position: relative;
    }
    .nav-item a {
      text-decoration: none;
      color: #fff;
      font-family: 'Arial', sans-serif;
      font-size: 14px;
      padding: 8px 12px;
      transition: all 0.3s ease;
    }
    .nav-item a:hover {
      color: #ffeb3b;
      transform: scale(1.1);
    }
    .mega-menu {
      display: none;
      position: absolute;
      background: #fff;
      min-width: 600px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 10px;
      padding: 15px;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }
    .nav-item:hover .mega-menu {
      display: block;
    }
    .mega-menu-content {
      display: flex;
      justify-content: space-between;
    }
    .mega-menu-column {
      flex: 1;
      padding: 0 10px;
    }
    .mega-menu-column h3 {
      margin: 0 0 10px;
      font-size: 14px;
      color: #333;
    }
    .mega-menu-column a {
      color: #555;
      padding: 6px 0;
      display: block;
      text-decoration: none;
    }
    .mega-menu-column a:hover {
      color: #000;
    }
    .nav-logo {
      margin-left: 20px;
    }
    .nav-logo img {
      height: 40px;
      width: auto;
    }




    .hero {
      background: url('https://images.unsplash.com/photo-1603791440384-56cd371ee9a7?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
      color: white;
      padding: 120px 20px;
      text-align: center;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 54, 122, 0.65);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h3 {
      display: inline-block;
      padding: 10px 25px;
      background-color: #007BFF;
      color: white;
      border-radius: 4px;
      margin-bottom: 15px;
      font-size: 16px;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: 48px;
      margin: 20px 0;
      font-weight: bold;
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .btn {
      background-color: #ffffff;
      color: #007BFF;
      border: 2px solid white;
      padding: 12px 26px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 25px;
      transition: all 0.3s ease-in-out;
    }

    .btn:hover {
      background-color: #007BFF;
      color: #ffffff;
      border: 2px solid white;
    }

    .social-icons {
      position: fixed;
      top: 40%;
      left: 0;
      display: flex;
      flex-direction: column;
    }

    .social-icons a img {
      width: 32px;
      margin: 5px;
      transition: transform 0.3s;
    }

    .social-icons a img:hover {
      transform: scale(1.2);
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }

      .nav-links a {
        margin: 10px;
      }
    }


    .iso-certifications {
  padding: 60px 40px;
  background: #f9fbff;
  text-align: center;
  animation: zoomIn 1s ease-in-out;
}

.iso-certifications h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #002855;
}

.iso-certifications p {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.iso-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.iso-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 20px rgba(0, 123, 255, 0.2);
}

.iso-card h3 {
  font-size: 20px;
  margin-top: 10px;
  color: #003399;
  font-weight: 700;
}

.iso-card .description {
  font-size: 14px;
  color: #333;
  margin-top: 8px;
}

.iso-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--tag-color, #e0f0ff);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #333;
  font-weight: 600;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.clients-section {
  background-color: #f0f8ff;
  padding: 60px 40px;
  text-align: center;
}

.clients-section h2 {
  font-size: 30px;
  color: #002855;
  margin-bottom: 10px;
  font-weight: 700;
}

.clients-section p {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.clients-logos img {
  width: 100px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
  opacity: 1;
}


.zoom-in {
  animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.cta-banner {
  background:  url('assets/img/1/banner1.jpg') no-repeat center;
  background-size: cover;
  padding: 60px 30px;
  color: #fff;
  text-align: center;
  position: relative;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cta-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  max-width: 900px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #1ed760;
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background: #19c153;
  transform: scale(1.05);
}

.cta-button .arrow {
  margin-left: 12px;
  font-size: 18px;
}


@media (min-width: 768px) {
  .cta-container {
    flex-direction: row;
    text-align: left;
  }

  .cta-text {
    flex: 2;
  }

  .cta-button {
    flex-shrink: 0;
  }
}



.contact-map-section {
  background: #f8faff;
  padding: 80px 40px;
  animation: fadeInUp 1s ease-out;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  align-items: center;
}

.contact-form-area h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.contact-form-area p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e88e5;
  outline: none;
  box-shadow: 0 0 5px rgba(30, 136, 229, 0.4);
}

.contact-form button {
  background-color: #1e88e5;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #1565c0;
}

.map-area iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.site-footer {
  background-color: #0a1229;
  color: #fff;
  padding: 60px 40px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 2px solid #2ecc71;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #2ecc71;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #2ecc71;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid #1e2d4a;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}


.contact-bar {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #0a1229;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.contact-left,
.contact-right {
  display: flex;
  align-items: center;
  padding: 30px;
  flex: 1;
}

.contact-left {
  background-color: #0a1229;
  flex-direction: row;
  gap: 40px;
}

.contact-right {
  background-color: #2ecc71;
  justify-content: flex-start;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  background-color: #2ecc71;
  padding: 10px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
}

.icon-box.dark {
  background-color: #0a1229;
}

.text-box .label {
  display: block;
  color: #2ecc71;
  font-size: 14px;
}

.text-box.white .label {
  color: #fff;
}

.text-box strong {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}


/*swipw*/

.banner-slider {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.banner-slide {
  background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease-in-out;
}

.banner-slide:hover {
  transform: scale(1.02);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  max-width: 600px;
}

.overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #2ecc71;
  color: white;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #27ae60;
}



  .banner {
      position: relative;
      width: 100%;
      height: 450px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: zoomSlide 20s infinite;
    }

    .slide:nth-child(1) {
      background-image: url('assets/img/1/banner1.jpg');
      animation-delay: 0s;
    }

    .slide:nth-child(2) {
      background-image: url('assets/img/1/banner1.jpg');
      animation-delay: 5s;
    }

    .slide:nth-child(3) {
      background-image: url('assets/img/1/banner1.jpg');
      animation-delay: 10s;
    }

    .slide:nth-child(4) {
      background-image: url('assets/img/1/banner1.jpg');
      animation-delay: 15s;
    }

    @keyframes zoomSlide {
      0% {
        opacity: 0;
        transform: scale(1);
      }
      5% {
        opacity: 1;
        transform: scale(1.1);
      }
      25% {
        opacity: 1;
        transform: scale(1.15);
      }
      30% {
        opacity: 0;
        transform: scale(1.2);
      }
      100% {
        opacity: 0;
      }
    }

    .text-box {
      position: absolute;
      top: 50%;
      left: -50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 2rem;
      border-radius: 10px;
      animation: slideInText 2s ease-out forwards;
      animation-delay: 1s;
    }

    @keyframes slideInText {
      to {
        left: 5%;
      }
    }

    .text-box h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .text-box p {
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .text-box h1 {
        font-size: 2rem;
      }

      .text-box p {
        font-size: 1rem;
      }
    }
