   @font-face {
  font-family: "CameraPlainVariable";
  src: url("https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

#lovable-badge {
  --badge-bg: #1b1b1b;
  --badge-text: #c5c1b9;
  --badge-text-hover: #dcdad5;
  --badge-radius: 6px;
  --badge-padding: 8px;
  --badge-gap: 6px;
  --badge-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.88),
    0 1px 0 0 rgba(0, 0, 0, 0.04),
    0 2px 2px -1px rgba(0, 0, 0, 0.08),
    0 4px 4px -2px rgba(0, 0, 0, 0.08),
    0 8px 8px -4px rgba(0, 0, 0, 0.08),
    0 16px 16px -8px rgba(0, 0, 0, 0.08);
  --badge-transition-duration: 0.2s;
  --badge-transition-easing: cubic-bezier(0.16, 1, 0.32, 1);
  --focus-color: #575ECF;
  --focus-offset: 2px;
  --focus-width: 2px;

  position: fixed;
  bottom: 12px;
  right: 12px;
  height: 24px;
  display: flex;
  align-items: center;
  z-index: 1000000;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  border-radius: var(--badge-radius);
  box-shadow: var(--badge-shadow);
  font-size: 12px;
  font-family: CameraPlainVariable, "CameraPlainVariable Fallback",
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400 !important;
  text-transform: none !important;
  font-feature-settings: normal !important;
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* CTA section */
#lovable-badge-cta {
  display: flex;
  align-items: center;
  gap: var(--badge-gap);
  padding: 0 var(--badge-padding);
  height: 100%;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--badge-radius) 0 0 var(--badge-radius);
  transition:
    background-color var(--badge-transition-duration) ease,
    color var(--badge-transition-duration) ease,
    transform 0.1s ease;
}

#lovable-badge-cta:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--badge-text-hover);
}

#lovable-badge-cta:active {
  transform: scale(0.98);
}

#lovable-badge-cta:focus {
  outline: none;
}

#lovable-badge-cta:focus-visible {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: var(--focus-offset);
  z-index: 1;
}

#lovable-badge-text {
  line-height: 1;
}

/* Divider */
#lovable-badge-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

/* Close button */
#lovable-badge-close {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--badge-radius) var(--badge-radius) 0;
  flex-shrink: 0;
  transition:
    background-color var(--badge-transition-duration) ease,
    transform 0.1s ease;
}

#lovable-badge-close:hover {
  background: rgba(255, 255, 255, 0.04);
}

#lovable-badge-close:active {
  transform: scale(0.92);
}

#lovable-badge-close:focus {
  outline: none;
}

#lovable-badge-close:focus-visible {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: calc(var(--focus-offset) * -1);
  z-index: 1;
}

#lovable-badge-close svg path {
  fill: var(--badge-text);
  transition: fill var(--badge-transition-duration) ease;
}

#lovable-badge-close:hover svg path {
  fill: var(--badge-text-hover);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #lovable-badge-cta,
  #lovable-badge-close,
  #lovable-badge-close svg path {
    transition: none;
  }

  #lovable-badge-cta:active,
  #lovable-badge-close:active {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  #lovable-badge {
    --badge-bg: #000;
    --badge-text: #fff;
    --badge-text-hover: #fff;
    border: 2px solid currentColor;
  }

  #lovable-badge-cta:focus-visible,
  #lovable-badge-close:focus-visible {
    outline-width: 3px;
  }
}

/* Optional closing animation hook (if you want to animate) */
#lovable-badge.closing {
  opacity: 0;
  transition: opacity 0.24s ease;
}

.main-slider{
    position: relative;
}
.carousel-item{
height:700px;
}

.carousel-item img,
.carousel-item video{
width:100%;
height:700px;
object-fit:cover;
}

    .dropdown-menu {
    background: #a2a3a4;
    border: none;
}
    .custom-navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    background: #22222200;
    padding: 15px;
}
.navbar-nav {
    background: #cccccca8;
    padding: 15px 25px;
    border-radius: 50px;
}
.nav-link {
        padding-right: 1.1rem!important;
        padding-left: 1.1rem!important;
}
.logo-responsive {
    height: 100px;
}
.nav-link{
color:rgb(20, 20, 20);
padding:10px 18px;
}

.nav-link:hover{
color:#ffc107;
}

/* Dropdown */

.dropdown-menu{
background:#333;
border:none;
}

.dropdown-item{
color:rgb(0, 0, 0);
}

.dropdown-item:hover{
background:#aca9a9;
}

/* Multi level */

.dropdown-submenu{
position:relative;
}

.dropdown-submenu .dropdown-menu{
top:0;
left:100%;
margin-left:0;
}

/* Mega menu */

.mega-dropdown{
width:600px;
padding:20px;
}

.mega-dropdown a{
display:block;
color:white;
padding:5px 0;
}

.mega-dropdown h6{
color:#ffc107;
}

/* Hover dropdown */

@media(min-width:992px){

.dropdown:hover>.dropdown-menu{
display:block;
}

.dropdown-submenu:hover>.dropdown-menu{
display:block;
}

}


/* Section */
.mv-section {
    background: #f4f6f9;
    padding: 70px 0;
}

/* Box Card */
.mv-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

/* Hover Effect */
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Image */
.mv-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.mv-card:hover .mv-img {
    transform: scale(1.05);
}

/* Content */
.mv-body {
    padding: 25px;
}

/* Title */
.mv-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Text */
.mv-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* Quote */
.mv-quote {
    margin-top: 15px;
    font-style: italic;
    color: #555;
    border-left: 3px solid #007bff;
    padding-left: 12px;
}


/* Section Background */
.allied-section {
    padding: 70px 0;
    background: #f4f6f9;
}

/* Main Box */
.allied-box {
    background: linear-gradient(135deg, #0f2a4d, #133d73);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Glow Animation Background */
.allied-box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
    top: -50%;
    left: -50%;
    animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Text */
.allied-text {
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Buttons Container */
.allied-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Button Style */
.allied-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
}

/* Hover Effect */
.allied-btn:hover {
    background: #fff;
    color: #133d73;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
}

/* Fade In Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION */
.values-section {
    padding: 80px 0;
}

/* CARD */
.value-card {
    position: relative;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;

    /* LEFT ACCENT */
    border-left: 4px solid #0b2a5a;

    box-shadow: 0 8px 25px rgba(0,0,0,0.04);

    transition: all 0.35s ease;
    transform: translateY(30px);
    opacity: 0;
}

/* ICON */
.value-icon {
    margin-bottom: 18px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: #0b2a5a;
    stroke-width: 1.5;
    fill: none;
}

/* TITLE */
.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0b2a5a;
    font-weight: 600;
}

/* TEXT */
.value-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    text-align: justify;
}

/* HOVER EFFECT */
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 42, 90, 0.12);
}

/* SHOW ANIMATION */
.value-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE GAP FIX */
@media(max-width: 768px){
    .value-card {
        padding: 25px 20px;
    }
}


/* heading */
.letter-space {
  letter-spacing: 2px;
}

.heading-text {
  max-width: 600px;
}

/* CARD */
.custom-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* CARD */
.custom-cards {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
      border: 1px solid #8ec7ff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.custom-cards:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.card-img {
  position: relative;
  height: 220px;
   overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
 
  object-fit: cover;
  transform: scale(1.0);
  transition: transform 0.8s ease; /* Adjust duration here */
}
.card-img:hover img{
    transform: scale(1.1);
     transition: transform 0.8s ease; /* Adjust duration here */
}
/* GRADIENT */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, transparent, #fff);
}

/* ICON */
.icon {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
}

/* BODY */
.card-body h5 {
  font-weight: 600;
}

.card-body ul {
  padding-left: 18px;
  margin-top: 10px;
}

.card-body ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* LINK */
.learn {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  font-weight: 500;
}

.learn:hover {
  text-decoration: underline;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1){ animation-delay: 0.2s;}
.fade-up:nth-child(2){ animation-delay: 0.4s;}
.fade-up:nth-child(3){ animation-delay: 0.6s;}
.fade-up:nth-child(4){ animation-delay: 0.8s;}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section */
.services-strip {
    background: #f3f4f6;
    padding: 30px 0;
}

/* Each Item */
.service-item {
    text-align: center;
    padding: 15px 10px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

/* Icon */
.service-icon {
    font-size: 28px;
    color: #555;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

/* Text */
.service-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Hover Effects */
.service-item:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-item:hover .service-icon {
    color: #007bff;
    transform: scale(1.2);
}

.service-item:hover .service-text {
    color: #007bff;
}

/* Divider Line (optional subtle look) */
.service-col {
    position: relative;
}

.service-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #ddd;
}

  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .hero img {

  }

  .moving-object {
    position: absolute;
    top: 50%;
    right: -500px;
    transform: translateY(-50%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
    will-change: transform;
  }
  .heli {
      height: 120px;
    margin-top: -200px;
    margin-right: 150px;
  }
            .clients-section {
    background: #051937;
    color: #ffffff;
    margin-top: -25px;
}
   .logo-responsive {
        
        width: 150px;
    }
/********************** client section *************/
.clients-section {
    background: linear-gradient(135deg, #0d2b52, #123a6b);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 0.7;
}

.clients-section h2 {
    font-size: 36px;
    margin: 10px 0;
}

.desc {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.slide-track {
    display: flex;
    width: calc(250px * 12);
}

.slides {
    width: 220px;
    height: 80px;
    margin: 10px;
    background: rgb(255 255 255);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Animation */
.slide-track.left {
    animation: scroll-left 20s linear infinite;
}

.slide-track.right {
    animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Hover pause */
.slider:hover .slide-track {
    animation-play-state: paused;
}
/* Card Wrapper */
.membership-card {
    background: #f5f6f8;
    border-radius: 18px;
    padding: 25px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    border: 1px solid blue;
}

/* Hover Animation */
.membership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    background: #efe6d8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.4s ease;
}

/* Icon Animation */
.membership-card:hover .icon-box {
    background: #ffedd5;
    transform: rotate(-5deg) scale(1.05);
}

.icon-box i {
    font-size: 30px;
    color: #f59e0b;
}

/* Text Content */
.membership-content h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.membership-content p {
    margin: 0;
    color: #6c757d;
    font-size: 15px;
}

.membership-link {
    color: #007bff;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
    transition: 0.3s;
}

.membership-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Card Box */
.certificate-box {
    border: 2px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    cursor: pointer;
}

.certificate-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.certificate-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.4s ease;
}

.certificate-box:hover .certificate-img {
    transform: scale(1.05);
}

/* Bottom Section */
.certificate-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.certificate-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.certificate-subtext {
    font-size: 14px;
    color: #666;
}

/* Remove default anchor style */
.certificate-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.quality-section {
    padding: 60px 20px;
    text-align: center;
}

.quality-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

/* Grid Layout */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card Design */
.quality-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

/* Icon */
.icon {
    color: #007bff;
    font-size: 18px;
    margin-top: 4px;
}

/* Text */
.quality-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.quality-card p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* Hover Effect */
.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Animation */
.quality-card.show {
    opacity: 1;
    transform: translateY(0);
    padding: 25px 50px;
}

/* Responsive */
@media(max-width: 992px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}