/* ✅ RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #fff;
}

/* ✅ Override Bootstrap Primary Button */
.btn-primary {
  background: linear-gradient(to right, #002d5f, #004e92) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: linear-gradient(to right, #004e92, #002d5f) !important;
  color: #ffc107 !important;
}

.btn-outline-primary {
  color: #004e92;
  border-color: #004e92;
}

.btn-outline-primary:hover {
  background: linear-gradient(to right, #002d5f, #004e92);
  color: #fff;
}


/* ✅ TOPBAR */
.topbar {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

/* ✅ NAVBAR */
.bg-nav {
  background: linear-gradient(to right, #002d5f, #004e92);
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
}

/* ✅ MEGA MENU */
.dropdown:hover .dropdown-menu {
  display: block;
}
.mega-dropdown {
  width: 100%;
  left: 0;
  top: 100%;
  border: none;
  padding: 0;
}
.mega-content {
  flex-wrap: wrap;
  background: rgba(0, 45, 95, 0.95);
  color: white;
  padding: 2rem;
  border-radius: 6px;
}
.mega-right .col-md-3 {
  min-height: 250px; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-content h6 {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dashed #b0bbc8;
  padding-bottom: 6px;
  color: #ffc107;
}
.footer-section{
  padding: 20px;
}
.footer-section .small{
  color: #fff;
}
.mega-content h6 i {
  margin-right: 8px;
}
.mega-content ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}
.mega-content ul li {
  margin-bottom: 6px;
}
.mega-content ul li a {
  display: block;
  color: #fff;
  padding: 0px 0px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mega-content ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffc107;
}

/* ✅ HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-left: 60px;
  padding-right: 20px;
  max-width: 700px;
  top: 45%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #eee;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}


.about-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #004e92;
  margin-top: 8px;
}

.about-section p.lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-section ul {
  padding-left: 0;
  list-style: none;
}

.about-section li i {
  font-size: 1.1rem;
}

.services-section h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  display: inline-block;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon i {
  transition: color 0.3s ease;
}

.service-card:hover .icon i {
  color: #004e92;
}
.why-choose-us-image-section {
  position: relative;
  background: url('assets/images/why-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
.why-choose-us-image-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.why-choose-us-image-section .z-2 {
  position: relative;
  z-index: 2;
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}
.choose-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.why-choose-us-image-section {
  position: relative;
  background: url('../../assets/images/why-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
.why-choose-us-image-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.why-choose-us-image-section .z-2 {
  position: relative;
  z-index: 2;
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}
.choose-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  /*background: linear-gradient(to right, #002d5f, #004e92);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
  display: inline-block;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #004e92;
  margin: 8px auto 0;
}

.testimonial-section {
  background: #f8f9fa;
}

.testimonial-card {
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
  object-fit: cover;
  border: 2px solid #004e92;
}

.testimonial-section h2.section-title {
  background: linear-gradient(to right, #002d5f, #004e92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollBrands 20s linear infinite;
}

.brand-track img {
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s ease;
}
.brand-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.section-title-left {
  font-size: 2rem;
  text-transform: uppercase;
  color: #004e92; /* or #ffc107 if you prefer yellow */
  border-left: 5px solid #004e92;
  padding-left: 15px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}


@keyframes scrollBrands {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .mega-content {
    flex-direction: column;
  }
  .mega-content > div {
    margin-bottom: 1.5rem;
  }
}

/* ✅ SCROLL ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-title-left.animate {
  animation: fadeInLeft 1s ease-out;
}

.hero-section {
  background-size: cover;
  background-position: center;
}
.about-company-section img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.custom-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.custom-card:hover {
  transform: translateY(-6px);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.achievement-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.achievement-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.glass-form {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 12px;
}

.transparent-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #007bff;
  color: white;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.transparent-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.transparent-input:focus {
  background: transparent;
  border-bottom: 2px solid #0d6efd;
  box-shadow: none;
  outline: none;
  color: #fff;
}

.service-card::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.7); /* dark overlay */
          z-index: -1;
        }
        .adv-card.glass {
          background: #ffffff;
          border: 1px solid #ddd;
          box-shadow: 0 4px 12px rgba(0,0,0,0.08);
          transition: transform 0.4s ease, box-shadow 0.3s ease;
        }
        .adv-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        
        
        
    .glow-text {
      font-size: 3rem;
      color: #fff;
      text-align: center;
      animation: glow 1.5s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #00e6e6, 0 0 20px #00e6e6, 0 0 30px #00e6e6;
      }
      to {
        text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
      }
    }

