body { font-family: Arial, sans-serif; line-height:1.6; }


/*.hero-carousel img { height: 85vh; object-fit: cover; }*/
/*.parallax { min-height: 70vh; overflow: hidden; }*/
/*body { overflow-x: hidden; } */
/* Prevent sideways scroll */


/* General Reset */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Custom Properties */
    /*:root {*/
    /*  --primary-color: #1a365d;*/
    /*  --secondary-color: #2563eb;*/
    /*  --accent-color: #f59e0b;*/
    /*  --text-color: #1f2937;*/
    /*  --text-light: #6b7280;*/
    /*  --white: #ffffff;*/
    /*  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);*/
    /*  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    /*  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);*/
    /*  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
    /*  --border-radius: 8px;*/
    /*}*/

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
    }

    /* Header Styles */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 1000;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow-md);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    /* Logo Styles */
    .logo {
      flex-shrink: 0;
      z-index: 1001;
    }

    .logo a {
      display: block;
      transition: var(--transition);
    }

    .logo img {
      height: 50px;
      width: auto;
      transition: var(--transition);
    }

    .logo a:hover {
      transform: scale(1.05);
    }

    /* Navigation Styles */
    .navbar {
      display: flex;
      align-items: center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 0.5rem;
    }

    .nav-links > li {
      position: relative;
    }

    .nav-links > li > a {
      display: block;
      padding: 0.75rem 1rem;
      color: var(--text-color);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      border-radius: var(--border-radius);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .nav-links > li > a::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
      opacity: 0;
      transition: var(--transition);
      z-index: -1;
    }

    .nav-links > li > a:hover::before,
    .nav-links > li.active > a::before {
      left: 0;
      opacity: 0.1;
    }

    .nav-links > li > a:hover,
    .nav-links > li.active > a {
      color: var(--secondary-color);
      transform: translateY(-2px);
    }

    /* Dropdown Styles */
    .has-dropdown {
      position: relative;
    }

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 250px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      list-style: none;
      padding: 0.5rem 0;
      margin: 0;
      z-index: 1000;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .has-dropdown:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown li {
      position: relative;
    }

    .dropdown a {
      display: block;
      padding: 0.75rem 1.25rem;
      color: var(--text-color);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
      position: relative;
    }

    .dropdown a:hover {
      background: rgba(37, 99, 235, 0.05);
      color: var(--secondary-color);
      padding-left: 1.5rem;
    }

    /* Sub-dropdown Styles */
    .sub-dropdown {
      position: absolute;
      top: 0;
      left: 100%;
      margin-left: 0.5rem;
    }

    .dropdown .has-dropdown:hover .sub-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Hamburger Styles */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      background: transparent;
      border: none;
      z-index: 1001;
      width: 40px;
      height: 40px;
      justify-content: center;
      align-items: center;
      border-radius: var(--border-radius);
      transition: var(--transition);
    }

    .hamburger:hover {
      background: rgba(37, 99, 235, 0.1);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-color);
      margin: 3px 0;
      transition: var(--transition);
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Styles */
    @media (max-width: 991px) {
      .hamburger {
        display: flex;
      }

      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: var(--transition);
        padding: 6rem 2rem 2rem;
        overflow-y: auto;
      }

      .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
      }

      .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }

      .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }

      .nav-links > li:last-child {
        border-bottom: none;
      }

      .nav-links > li > a {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 0;
        width: 100%;
        text-align: left;
      }

      /* Mobile Dropdown Styles */
      .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(37, 99, 235, 0.02);
        border-radius: 0;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin-top: 0;
      }

      .has-dropdown.active .dropdown {
        max-height: 500px;
        padding: 0.5rem 0;
      }

      .dropdown a {
        padding: 0.75rem 2rem;
        font-size: 1rem;
      }

      .sub-dropdown {
        position: static;
        margin-left: 0;
        background: rgba(37, 99, 235, 0.02);
      }

      .dropdown .dropdown a {
        padding-left: 3rem;
      }

      /* Mobile dropdown toggle */
      .has-dropdown > a::after {
        content: '▼';
        float: right;
        transition: var(--transition);
        font-size: 0.8rem;
        margin-top: 2px;
      }

      .has-dropdown.active > a::after {
        transform: rotate(180deg);
      }
    }

    @media (max-width: 576px) {
      .nav-container {
        padding: 0.75rem 1rem;
      }

      .logo img {
        height: 40px;
      }

      .navbar {
        padding: 5rem 1rem 2rem;
      }

      .nav-links > li > a {
        font-size: 1rem;
        padding: 0.875rem 1rem;
      }

      .dropdown a {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
      }

      .dropdown .dropdown a {
        padding-left: 2.5rem;
      }
    }

    /* Animations */
    @keyframes slideInFromRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .nav-links > li {
      animation: slideInFromRight 0.3s ease forwards;
    }

    .nav-links > li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links > li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links > li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links > li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links > li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links > li:nth-child(6) { animation-delay: 0.6s; }
    .nav-links > li:nth-child(7) { animation-delay: 0.7s; }
    .nav-links > li:nth-child(8) { animation-delay: 0.8s; }
    .nav-links > li:nth-child(9) { animation-delay: 0.9s; }

    /* Focus states for accessibility */
    .nav-links a:focus,
    .hamburger:focus {
      outline: 2px solid var(--secondary-color);
      outline-offset: 2px;
    }

   

  


/* Carousel */
.hero-carousel img { height:90vh; object-fit:cover; }
.carousel-caption { background:rgba(0,0,0,0.5); padding:20px; border-radius:10px; }

/* Parallax Sections */
.parallax {
  position:relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color:#fff;
  padding:100px 20px;
}
.parallax .overlay { background:rgba(0,0,0,0.5); padding:60px 20px; border-radius:10px; }

/* Mission & Vision */
.mission-vision { padding:80px 20px; background:#f9f9f9; }
.mv-content { display:flex; gap:40px; justify-content:center; flex-wrap:wrap; }
.mv-box { background:#fff; padding:30px; border-radius:12px; box-shadow:0 4px 8px rgba(0,0,0,0.1); flex:1; min-width:280px; }

/* Clients */
.clients { padding:80px 20px; background:#fff; }
.client-logos { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; }
.client-logos img { height:60px; opacity:0.8; transition:0.3s; }
.client-logos img:hover { opacity:1; transform:scale(1.05); }

/* CTA */
.contact-cta { padding:80px 20px; background:#0077b6; color:#fff; }
.contact-cta .btn { background:#fff; color:#0077b6; padding:12px 25px; border-radius:25px; text-decoration:none; transition:0.3s; }
.contact-cta .btn:hover { background:#023e8a; color:#fff; }






/* Page Hero */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-hero .overlay {
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

/* Page Content */
.page-content {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.page-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0077b6;
}
.page-content ul {
  margin: 15px 0;
  padding-left: 20px;
}
.team-list li {
  margin-bottom: 8px;
}






/* Why Us Page */
.why-us-list {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 15px;
  margin-top: 30px;
}
.why-box {
  background: #f5faff;
  border-left: 4px solid #0077b6;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}
.why-box:hover {
  background: #e6f3fa;
  transform: translateY(-3px);
}

/* Quality Control Page */
.qc-list {
  margin-top: 20px;
  margin-left: 20px;
}
.qc-list li {
  margin-bottom: 15px;
}
.qc-list ul {
  margin-top: 8px;
  padding-left: 20px;
  list-style: disc;
}




/* Product Pages */
.page-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0077b6;
}
.page-content ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
}

