  /* ===== Navbar Styling ===== */
  .custom-navbar {
    background: #ffffff;
    /* Solid white background */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 999;
  }

  .navbar-logo {
    height: 52px;
    width: auto;
  }

  .navbar .nav-link {
    color: #003366 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: #007bff !important;
  }

  .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0%;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
  }

  .navbar .nav-link:hover::after {
    width: 100%;
  }

  /* ===== Mega Menu ===== */
  .mega-dropdown:hover>.mega-menu {
    display: block;
  }

  .mega-menu {
    display: none;
    position: absolute;
    width: 950px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    background: #fff;
    border-top: 3px solid #007bff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    z-index: 1000;
  }

  .mega-menu h6 {
    color: #003366;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 6px;
    margin-bottom: 10px;
  }

  .mega-menu .dropdown-item {
    color: #333;
    padding: 6px 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  .mega-menu .dropdown-item:hover {
    color: #007bff;
    padding-left: 8px;
  }

 @media (max-width: 991px) {
  .mega-menu {
    position: static;
    width: 100% !important;
    transform: none !important;
    box-shadow: none;
    border: none;
  }

  .mega-dropdown:hover>.mega-menu {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  /* Stack columns on mobile */
  .mega-menu .col-md-4 {
    width: 100%;
    margin-bottom: 15px;
  }

  .navbar .nav-link::after {
    display: none;
  }
}
/* ===== Mobile Mega Dropdown Fix ===== */
@media (max-width: 991px) {

    /* Make mega menu behave like normal dropdown */
    .mega-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 10px 0 !important;
    }

    /* When dropdown is opened (Bootstrap adds .show) */
    .mega-dropdown .dropdown-menu.show {
        display: block !important;
    }

    /* Stack all mega menu columns vertically */
    .mega-menu .col-md-4 {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    /* Disable hover behavior on mobile */
    .mega-dropdown:hover > .mega-menu {
        display: none !important;
    }

    /* Remove underline animation */
    .navbar .nav-link::after {
        display: none !important;
    }
}



  
  .featurette-divider {
    margin: 4rem 0;
  }

  .featurette-heading {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  img.featurette-image {
    object-fit: cover;
    border-radius: 12px;
  }



  /* -----------------------------------
    WHY CHOOSE SECTION
  ----------------------------------- */
  .why-choose {
    background: linear-gradient(135deg, #001f3f, #003366, #004d61);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .why-choose h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
  }

  .why-choose h2 span {
    color: #00ffd0;
  }

  /* Grid layout for 6 cards */
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    width: 85%;
    margin: 0 auto;
  }

  /* Each box styling */
  .choose-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    text-align: left;
  }

  .choose-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  }

  /* Headings inside boxes */
  .choose-card h3 {
    color: #00ffd0;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  /* Paragraph text */
  .choose-card p {
    color: #e8e8e8;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Responsive styles */
  @media (max-width: 992px) {
    .why-choose h2 {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 768px) {
    .choose-card {
      text-align: center;
    }

    .choose-card h3 {
      font-size: 1.2rem;
    }

    .choose-card p {
      font-size: 0.9rem;
    }
  }










  /* ===== Our Partners Section ===== */
  .partners-carousel-section {
    background: linear-gradient(135deg, #001f3f 0%, #002b5c 60%, #004173 100%);
    padding: 60px 0;
    color: #fff;
  }

  .partners-carousel-section .section-heading {
    text-align: center;
    font-size: 2rem;
    color: #05181a;
    margin-bottom: 32px;
    text-shadow: 0 0 12px rgba(0, 200, 255, 0.6);
    font-weight: 600;
  }

  /* container that masks overflow */
  .partners-wrap {
    width: 92%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    padding: 18px 10px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  }

  /* track that scrolls (flex row) */
  .partners-track {
    display: flex;
    align-items: center;
    gap: 40px;
    /* important: animation will translate this track left by 50% (duplicate set) */
    animation: partners-scroll 24s linear infinite;
  }

  /* each partner tile */
  .partner-item {
    flex: 0 0 auto;
    width: 190px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .partner-item img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
    /* show original colors */
    transition: transform 0.25s ease, filter 0.25s ease;
  }

  /* hover effect */
  .partner-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 200, 255, 0.06);
    box-shadow: 0 12px 30px rgba(0, 200, 255, 0.12);
  }

  .partner-item:hover img {
    transform: scale(1.06);
  }

  /* pause on hover (either on track area or individual item) */
  .partners-wrap:hover .partners-track,
  .partner-item:hover~.partners-track,
  .partner-item:hover {
    animation-play-state: paused;
  }

  /* Infinite scroll keyframes:
    We translated full width of the first half (50%) so duplicate items take over seamlessly
  */
  @keyframes partners-scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }

    /* move left by half (duplicate block) */
  }

  /* responsive adjustments */
  @media (max-width: 992px) {
    .partner-item {
      width: 150px;
      height: 90px;
      padding: 12px;
    }

    .partner-item img {
      max-width: 110px;
      max-height: 60px;
    }

    .partners-track {
      gap: 30px;
      animation-duration: 22s;
    }
  }

  @media (max-width: 576px) {
    .partner-item {
      width: 120px;
      height: 70px;
      padding: 10px;
    }

    .partner-item img {
      max-width: 90px;
      max-height: 48px;
    }

    .partners-track {
      gap: 20px;
      animation-duration: 20s;
    }
  }














  /* ======= Other Solutions Section ======= */
  /* ===== Solutions Carousel ===== */
  .solutions-carousel-section {
    background: linear-gradient(135deg, #001f3f, #003b70);
    color: #fff;
    padding: 70px 0;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
    color: #00eaff;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
  }

  .solutions-carousel {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
  }

  .solution-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 18px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.35);
  }

  .solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .solution-card h3 {
    font-size: 1.2rem;
    color: #00eaff;
    margin-bottom: 8px;
  }

  .solution-card p {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .explore-btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00eaff, #007bff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
  }

  .explore-btn:hover {
    background: linear-gradient(135deg, #00bcd4, #006eff);
  }

  /* Carousel Buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 234, 255, 0.25);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 8px 12px;
    transition: 0.3s;
    z-index: 5;
  }

  .carousel-btn:hover {
    background: rgba(0, 234, 255, 0.6);
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  @media (max-width: 768px) {
    .solution-card {
      flex: 0 0 80%;
    }
  }








  /*  Contact Section */
  .contact-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }

  /*  Dark Overlay */
  .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(128, 128, 128, 1),
        rgb(17, 17, 17));
    z-index: -1;
  }

  /*  Contact Content */
  .contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 90%;
    max-width: 850px;
    animation: fadeIn 1.5s ease-in-out;
  }

  .contact-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.9);
    margin-bottom: 25px;
  }

  /*  Form Container */
  .contact-form {
    background: rgba(26, 1, 1, 0);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
  }

  .contact-form:hover {
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
  }

  /* 🧱 Input Row */
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
  }

  /*  Input Fields */
  .contact-form input,
  .contact-form textarea {
    flex: 1;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
  }

  /*  Textarea */
  .contact-form textarea {
    width: 100%;
    resize: none;
    height: 130px;
  }

  /*  Submit Button */
  .contact-form button {
    background: linear-gradient(135deg, #00e5ff, #007bff);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  }

  .contact-form button:hover {
    background: linear-gradient(135deg, #00b8d4, #006eff);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
    transform: scale(1.05);
  }

  /*  Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*  Responsive */
  @media (max-width: 768px) {
    .contact-content h2 {
      font-size: 2rem;
    }

    .form-row {
      flex-direction: column;
    }

    .contact-form {
      padding: 25px 20px;
    }
  }









  /* FOOTER MAIN STYLES */
  .footer {
    background: linear-gradient(135deg, #1a1b4b, #1d256b);
    color: #fff;
    padding: 60px 80px 0;
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-column h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-column ul li a {
    color: #cfd3f2;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
  }

  .footer-column ul li a:hover {
    color: #00bcd4;
  }

  /* CONTACT SECTION */
  .contact-column p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .contact-column i {
    margin-right: 8px;
    color: #00bcd4;
  }

  .btn-direction {
    display: inline-block;
    background-color: #f44336;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .btn-direction i {
    margin-right: 6px;
  }

  .btn-direction:hover {
    background-color: #d32f2f;
  }

  /* FOOTER BOTTOM BAR */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 13px;
  }

  .footer-social a {
    margin: 0 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease;
  }

  .footer-social a:hover {
    color: #00bcd4;
  }

  .dev-name {
    color: #00bcd4;
    font-weight: 500;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .footer {
      padding: 50px 30px 0;
    }

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  }







  /* Subtle diagonal layered background */
  body {
    background: linear-gradient(135deg, #f8f9fa 25%, #ffffff 25%, #ffffff 50%, #f8f9fa 50%, #f8f9fa 75%, #ffffff 75%, #ffffff 100%);
    background-size: 80px 80px;
    background-attachment: fixed;
    background-color: #fff;
  }

  /* Optional: Give sections a slight glass effect */
  .container {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 40px;
  }

  /* Navbar transparency on top of gradient */
  .navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }








  /* =========================
        Hero Section
      ========================== */
  .hero-section {
    position: relative;
    height: 80vh;
    background: url("images/data\ Center.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }

  .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #e0e0e0;
  }

  /* =========================
        Product Details
      ========================== */
  .product-details {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .product-details h2 {
    color: #004080;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
  }

  .product-details .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .product-details .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .product-details .card img {
    height: 300px;

    object-fit: cover;
  }

  .product-details .card-body {
    background: #fff;
  }

  .product-details ul {
    list-style: none;
    padding: 0;
  }

  .product-details ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
  }

  .product-details ul li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #007bff;
  }



  .about-section {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    margin: 40px auto;
    width: 90%;
    transition: all 0.4s ease;
    font-family: "Poppins", sans-serif;
  }

  .about-section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }

  .about-section h2 {
    text-align: center;
    color: #004aad;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
  }

  .about-section h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
  }

  .about-section p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 18px;
    padding: 0 10px;
    transition: color 0.3s ease;
  }

  .about-section p:first-letter {
    font-size: 1.4rem;
    font-weight: bold;
    color: #007bff;
  }

  .about-section p:hover {
    color: #0056b3;
  }










  .hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
  }

  .hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }

  h2.text-primary {
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .card-text {
    font-size: 0.95rem;
    color: #374151;
  }





























  /* -------------------- MAKE CARD IMAGES RESPONSIVE -------------------- */

.product-details .card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Fix images that stretch or overflow */
.product-details .card {
  overflow: hidden;
}

/* Uniform height for images on large screens */
@media (min-width: 992px) {
  .product-details .card-img-top {
    height: 350px;
  }
}

/* Medium screens */
@media (max-width: 991px) {
  .product-details .card-img-top {
    height: 280px;
  }
}

/* Small screens */
@media (max-width: 768px) {
  .product-details .card-img-top {
    height: 220px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .product-details .card-img-top {
    height: 180px;
  }
}


/* -------------------- HERO IMAGE RESPONSIVE FIX -------------------- */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll !important; /* mobile fix */
    background-position: center top;
  }
}
