 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

 html, body { max-width: 100%; overflow-x: hidden; }

  :root {
    --orange: #f26522;
    --orange-dark: #d4541a;
    --navy: #0a1628;
    --navy-mid: #0f2040;
    --white: #ffffff;
    --light: #f8f9fc;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --text: #1a2332;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif !important;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    }
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
}
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }

  /* ===== TOP BAR ===== */
  .topbar {
    background: #ffffff;
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    padding: 7px 0;
  }
  .topbar .inner {
    max-width: 1200px; margin: auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  }
  .topbar .left { display: flex; align-items: center; gap: 20px; }
  .topbar .left a {color: #363636;display: flex;font-weight: 600;align-items: center;font-size: 14px;font-family: 'Inter', sans-serif;gap: 5px;}
  .topbar .left a:hover { color: var(--orange); }
  .topbar .right { display: flex; align-items: center; gap: 12px; }
  .topbar .right a {
    color: #ffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    background-color: #072859;
    justify-content: center;
    font-size: 12px;
    transition: all .3s;
  }
  .topbar .right a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
  .topbar .badge {
    background: #ff3131;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
  }

  /* ===== WEBXPERTINDIA NAV ===== */
  .main-nav {
    /* background: var(--white); */
    /* box-shadow: 0 2px 20px rgba(0,0,0,0.08); */
    position: absolute;
    /* top: 0; */
    z-index: 1000;
    width: 100%;
    /* overflow: visible; */
  }
  .nav-inner {
    /* max-width: 1200px; */
    margin: auto;
    width: 100%;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    height: 70px;
    position: relative;
    overflow: visible;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy);
  }
  .logo span { color: var(--orange); }
  .logo-icon {
    width: 42px; height: 42px; background: var(--orange); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 900;
  }

  .nav-menu { display: flex; align-items: center; gap: 2px; }
  .nav-item { position: relative; }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 6px;
    transition: all .25s;
    cursor: pointer;
    margin-left: 35px;
  }
  .nav-link:hover, .nav-link.active {color: #ff3131;font-family: 'Inter', sans-serif;background: rgba(242,101,34,0.06);}
  .nav-link i.arr { font-size: 10px; transition: transform .25s; }
  .nav-item.open .nav-link i.arr,
  .nav-item:hover .nav-link i.arr { transform: rotate(180deg); }

  /* Small dropdown (regular items) */
  .dropdown {
    position: absolute; top: calc(100% + 6px); left: 0;
    background: var(--white); border-radius: 10px; min-width: 220px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12); border-top: 3px solid var(--orange);
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .25s;
    z-index: 999;
  }
  .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a {
    display: block; padding: 10px 18px; font-size: 13px; color: var(--gray);
    border-bottom: 1px solid var(--gray-light); transition: all .2s;
  }
  .dropdown a:last-child { border-bottom: none; }
  .dropdown a:hover { color: var(--orange); padding-left: 24px; background: rgba(242,101,34,0.04); }

  /* ===== MEGA MENU ===== */
  .has-mega { position: static; }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 53%;
    transform: translateX(-50%) translateY(10px);
    width: 100vw;
    max-width: 1200px;
    background: #0e2254;
    background-image: url(https://www.webxpertindia.com/images/map-pattern.png);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: all .28s ease;
    z-index: 9999;
    padding: 36px 40px 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  /* Fix: mega menu hangs off the nav */
  .main-nav {overflow: visible;}
  .nav-inner { position: relative; }

  .nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  /* Each column in mega menu */
  .mega-col {
    padding: 0px 0px 0 0;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .mega-col:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
  .mega-col:first-child { padding-left: 0; }
  .mega-col:not(:first-child) {padding-left: 15px;}

  /* Badge heading */
  .mega-cat {
    display: inline-block;
    background: linear-gradient(90deg, #fe3131 0%, #ff3131 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 4px;
    margin-bottom: 18px;
    white-space: nowrap;
    letter-spacing: .3px;
  }

  /* Links */
  .mega-col ul {display: flex;flex-direction: column;padding-left: 5px;}
  .mega-col ul li a {
    display: block;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 0;
    border-bottom: 1px solid rgb(255 255 255 / 69%);
    transition: color .2s, padding-left .2s;
    letter-spacing: .1px;
  }
  .mega-col ul li:last-child a { border-bottom: none; }
  .mega-col ul li a:hover { color: #f5a623; padding-left: 6px; }

  /* Right arrow button (like screenshot) */
  .mega-arrow-btn {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: #e8302a;
    color: #fff;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .nav-cta {
    display: flex; align-items: center; gap: 10px;
  }
  .btn-call {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; color: var(--navy);
    padding: 8px 14px; border: 1.5px solid var(--gray-light); border-radius: 8px; transition: all .25s;
  }
  .btn-call:hover { border-color: var(--orange); color: var(--orange); }
  .btn-call i { color: var(--orange); }
  .btn-primary {
    background: #fe3131;
    color: #fff;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(242,101,34,0.35); }

  /* Hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
  .hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(        135deg,        #000814 0%,        #001845 25%,        #002B6B 55%,        #001C54 80%,        #000814 100%);
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /* Background team photo overlay */
.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url("https://img.magnific.com/premium-photo/programmers-working-project-software-development_926199-2001575.jpg?w=1480");
    opacity: 0.1;
    z-index: 0;
    transform-origin: center;
    animation: heroBgMove 18s ease-in-out infinite alternate;
    will-change: transform;
    background-size: cover;
}

@keyframes heroBgMove {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
    }
    25% {
        transform: scale(1.04) translate(-10px, -8px) rotate(-0.3deg);
    }
    50% {
        transform: scale(1.08) translate(8px, 5px) rotate(0.2deg);
    }
    75% {
        transform: scale(1.05) translate(-5px, 10px) rotate(-0.2deg);
    }
    100% {
        transform: scale(1.1) translate(10px, -5px) rotate(0.3deg);
    }
}

  /* Big orange circle */
 .hero-circle {
    position: absolute;
    right: 122px;
    top: 90px;
    width: 390px;
    height: 390px;
    background: #ff3131;
    border-radius: 50%;
    opacity: 0.40;
    z-index: 0;

    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

  .hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 25px 0px;
    display: grid;
    grid-template-columns: 1fr 385px;
    gap: 60px;
    /* align-items: center; */
    position: relative;
    z-index: 1;
    margin-top: 78px;
    width: 100%;
  }

  /* Left content */
  .hero-content {}

  .hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 28px;
  }
  .hero h1 strong {font-weight: 900;color: #fff;}

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .btn-hero-dark {
    background: #1a2b4a;
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
  }
  .btn-hero-dark:hover { background: #0f1e35; transform: translateY(-2px); }
  .btn-hero-orange {
    background: #f5a623;
    color: #111;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
  }
  .btn-hero-orange:hover { background: #e09610; transform: translateY(-2px); }

  .hero-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }
  .hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-top: 14px; */
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }
  .hero-point i {
    color: #fe3232;
    font-size: 18px;
  }

  /* Curved arrow */
  .hero-arrow {
    position: absolute;
    right: 390px;
    top: 120px;
    width: 80px;
    opacity: 0.7;
    z-index: 2;
  }

  /* Right: Contact Form Card */
  .hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
  }
  .hero-form-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .hero-form-divider {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    align-items: center;
  }
  .hero-form-divider span {
    height: 3px;
    border-radius: 2px;
  }
  .hero-form-divider .d1 { width: 36px; background: #f5a623; }
  .hero-form-divider .d2 { width: 20px; background: #1a2b4a; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .form-row input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13.5px;
    color: #555;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border .2s;
  }
  .form-row input:focus { border-color: #f5a623; }
  .form-row input::placeholder { color: #aaa; }

  .btn-enquire {
    background: #f5a623;
    color: #111;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    transition: all .25s;
  }
  .btn-enquire:hover { background: #e09610; transform: translateY(-1px); }

  /* Star decoration */
  .form-star {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 22px;
    color: #f5a623;
    opacity: 0.7;
  }

  /* Avatar top (optional flair) */
  .form-avatar {
    position: absolute;
    top: -22px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  /* ===== TRUST LOGOS ===== */
  .trust-bar {
    background: var(--light); padding: 24px 0; border-bottom: 1px solid var(--gray-light);
  }
  .trust-inner {
    max-width: 1200px; margin: auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
  }
  .trust-label { font-size: 12px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }
  .trust-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
  .trust-logo {
    background: var(--white); border: 1px solid var(--gray-light); border-radius: 8px;
    padding: 8px 18px; font-size: 13px; font-weight: 700; color: var(--gray);
    display: flex; align-items: center; gap: 6px;
  }
  .trust-logo i { color: var(--orange); }

  /* ===== SECTION COMMON ===== */
  .section {/* padding: 90px 0; */}
  .section-inner {/* max-width: 1200px; */margin: auto;/* padding: 0 20px; */}
  .eyebrow {
    display: inline-block; font-size: 11.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--orange); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .section-sub { font-size: 15.5px; color: var(--gray); line-height: 1.7; max-width: 620px; }
  .section-head { margin-bottom: 56px; }

  /* ===== ABOUT ===== */
  .about { background: var(--white); }
  .about-grid {display: grid;grid-template-columns: 1fr 1fr;gap: 30px;align-items: center;}
  .about-imgs { position: relative; }
  .about-img-main {
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }
  .about-img-main img { width: 100%; height: 340px; object-fit: cover; }
  .about-img-thumb {
    position: absolute; bottom: -30px; right: 0; width: 44%;
    border-radius: 12px; overflow: hidden; border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  .about-img-thumb img { width: 100%; height: 160px; object-fit: cover; }
  .about-badge-overlay {
    position: absolute;
    /* top: 20px; */
    right: 30px;
    top: 31px;
    background: #ff3131;
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
  }
  .about-badge-overlay .num {font-size: 40px;line-height: 1;}
  .about-badge-overlay .lbl { font-size: 11px; opacity: 0.9; }
  .about-content .section-title {/* margin-bottom: 20px; */}
  .about-text {font-size: 15px;color: #363636;line-height: 1.8;margin-bottom: 16px;font-family: 'Inter', sans-serif;}
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
  .astat { display: flex; align-items: center; gap: 12px; }
  .astat-icon { width: 44px; height: 44px; background: rgba(242,101,34,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 18px; }
  .astat-num { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1; }
  .astat-lbl { font-size: 12px; color: var(--gray); }

  /* ===== SERVICES ===== */
  .services { background: var(--light); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .service-card {
    background: var(--white); border-radius: 16px; padding: 32px 28px;
    border: 1px solid var(--gray-light); transition: all .3s; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: var(--orange); */
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
  }
  .service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: rgba(242,101,34,0.12); margin-bottom: 14px; line-height: 1; }
  .service-icon { width: 54px; height: 54px; background: rgba(242,101,34,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 22px; margin-bottom: 18px; }
  .service-card h3 {font-family: 'Inter', sans-serif;font-size: 18px;font-weight: 700;color: var(--navy);margin-bottom: 10px;}
  .service-card p {font-size: 15px;color: #363636;/* line-height: 1.7; */margin-bottom: 16px;}
  .service-link { font-size: 13px; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 5px; }

  /* ===== WHY US ===== */
  .why { background: var(--navy); position: relative; overflow: hidden; }
  .why::before {
    content: ''; position: absolute; top: 0; right: 0; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(242,101,34,0.1) 0%, transparent 70%);
  }
  .why .section-title, .why .eyebrow { color: #fff; }
  .why .section-title { color: #fff; }
  .why .eyebrow { color: var(--orange); }
  .why .section-sub { color: rgba(255,255,255,0.65); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 22px 20px; transition: all .3s;
  }
  .why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
  .why-card-icon { width: 44px; height: 44px; background: rgba(242,101,34,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 18px; margin-bottom: 14px; }
  .why-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .why-cta-side { display: flex; flex-direction: column; gap: 30px; }
  .why-quote {
    background: rgba(255,255,255,0.06); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0;
    padding: 24px 24px; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; font-style: italic;
  }

  /* ===== INDUSTRIES ===== */
  .industries { background: var(--white); }
  .ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .ind-card {
    border: 1px solid var(--gray-light); border-radius: 14px; padding: 24px 14px; text-align: center; transition: all .3s;
  }
  .ind-card:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(242,101,34,0.1); transform: translateY(-3px); }
  .ind-card i { font-size: 26px; color: var(--orange); margin-bottom: 10px; }
  .ind-card span { font-size: 12px; font-weight: 600; color: var(--navy); }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 70px 0;
  }
  .cta-inner {
    max-width: 1200px; margin: auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  }
  .cta-inner h2 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; color: #fff; }
  .cta-inner p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 15px; }
  .cta-points { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 12px; }
  .cta-point { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; }
  .cta-point i { font-size: 13px; }
  .btn-white { background: #fff; color: var(--orange); padding: 14px 30px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: all .25s; display: inline-block; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

  /* ===== TECHNOLOGIES ===== */
  .tech { background: var(--light); }
  .tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .tech-item {
    background: var(--white); border: 1px solid var(--gray-light); border-radius: 12px;
    padding: 20px 14px; text-align: center; transition: all .25s;
  }
  .tech-item:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(242,101,34,0.1); }
  .tech-item i { font-size: 28px; color: var(--orange); margin-bottom: 8px; }
  .tech-item span { font-size: 12px; font-weight: 600; color: var(--navy); }

  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--white); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: var(--light); border-radius: 16px; padding: 28px 24px; border: 1px solid var(--gray-light); transition: all .3s;
  }
  .testi-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.07); transform: translateY(-3px); }
  .testi-stars {color: #fbbf24;font-size: 17px;margin-bottom: 14px;}
  .testi-card p {font-size: 15px;color: #363636;line-height: 1.7;font-family: 'Inter', sans-serif;margin-bottom: 18px;font-style: italic;}
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; }
  .testi-name {font-size: 14px;font-weight: 700;font-family: 'Inter', sans-serif;color: var(--navy);}
  .testi-loc {font-family: 'Inter', sans-serif;font-size: 12px;color: var(--gray);}

  /* ===== FOOTER ===== */
  footer {background: #08306a;color: rgba(255,255,255,0.7);padding: 60px 0px 0px 0px;}
  .footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 13px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 16px;
  }
  .footer-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; }
  .footer-logo span { color: var(--orange); }
  .footer-about {font-size: 15px;font-weight: 500;color: #fff;font-family: 'Inter', sans-serif;line-height: 1.7;margin-bottom: 20px;}
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 77%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 13px;
    transition: all .25s;
  }
  .footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
  footer h4 {font-size: 18px;font-weight: 700;font-family: 'Inter', sans-serif;color: #fff;margin-bottom: 18px;}
  footer ul li { margin-bottom: 10px; }
  footer ul li a {font-size: 15px;color: #fff;font-weight: 500;transition: color .2s;display: flex;align-items: center;gap: 6px;font-family: 'Inter', sans-serif;}
  footer ul li a:hover { color: var(--orange); }
  footer ul li a i { font-size: 10px; }
  .footer-contact li {display: flex;gap: 10px;color: #fff;font-weight: 500;font-size: 15px !important;font-size: 13px;margin-bottom: 14px;}
  .footer-contact li i {color: #ff3131;margin-top: 3px;flex-shrink: 0;}
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 5px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
  }
  .footer-bottom a { color: var(--orange); }

  /* ===== FLOATING WHATSAPP ===== */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999;
    transition: transform .25s;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .nav-menu, .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* ===== HEADER / TOPBAR ON MOBILE ===== */
    .nav-inner { justify-content: space-between; }
    .logo img { width: 140px !important; }
    .hamburger { z-index: 1001; }
    .hamburger span { background: #fff; }
    .main-nav.sticky .hamburger span { background: var(--navy); }

    .topbar .inner { justify-content: center; padding: 0 12px; }
    .topbar .badge, .topbar .right { display: none; }
    .topbar .left { gap: 14px; flex-wrap: wrap; justify-content: center; }
    .topbar .left a { font-size: 12px; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 32px; margin-bottom: 20px; }
    .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .ind-grid { grid-template-columns: repeat(3, 1fr); }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .why-features { grid-template-columns: 1fr; }

    /* ===== MOBILE NAV MENU ===== */
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #0e2254;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      max-height: calc(100vh - 70px);
      overflow-y: auto;
      padding: 6px 0;
    }
    .nav-menu.mobile-active { display: flex; }
    .nav-item {
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .nav-item:last-child { border-bottom: none; }
    .nav-link {
      margin-left: 0;
      width: 100%;
      padding: 14px 20px;
      justify-content: space-between;
      color: #fff !important;
    }
    .nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.06); }

    .nav-cta { padding: 15px 20px; }
    .nav-cta.mobile-active { display: flex; }

    /* Services mega menu toggled by tap on mobile */
    .has-mega { position: relative; }
    .mega-menu {
      position: static;
      width: 100%;
      max-width: 100%;
      transform: none;
      opacity: 0;
      visibility: hidden;
      height: 0;
      overflow: hidden;
      grid-template-columns: 1fr;
      padding: 0 20px;
      border-radius: 0;
      box-shadow: none;
      transition: none;
    }
    .nav-item.has-mega:hover .mega-menu { opacity: 0; visibility: hidden; transform: none; }
    .nav-item.has-mega.mega-active .mega-menu {
      display: grid;
      opacity: 1;
      visibility: visible;
      height: auto;
      padding: 15px 20px 20px;
    }
    .mega-col { border-right: none; padding: 10px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .mega-col:last-child { border-bottom: none; }
    .mega-arrow-btn { display: none; }

    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .trust-logos { justify-content: center; }
    .topbar .left { flex-direction: column; align-items: flex-start; gap: 4px; }
    .hero-btns { flex-direction: column; }
    .hero h1 { font-size: 26px; }
  }

  /* self */
  .form-control-lg {
    
font-size: 14px !important;
}
a{
  text-decoration: none !important;
}
.form-enq h3{
  font-size: 20px;
}
a.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.classic-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff3131, #ff3131);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(10, 61, 98, .25);
}

.classic-btn i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    font-size: 14px;
}

.classic-btn:hover {
    background: #fff;
    color: #0A3D62;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 61, 98, .30);
}

.classic-btn:hover i {
    background: #0A3D62;
    color: #fff;
    transform: rotate(-15deg);
}
.ml-5{
  margin-left: 20px;
}
.arrow {
    position: absolute;
    right: 22px;
    top: -18%;
    rotate: 90deg;
    transform: translateY(-50%);
    z-index: 10;
    animation: floatSticker 3s ease-in-out infinite;
}

.arrow img {
    width: 120px; /* apne hisab se change kar lo */
    height: auto;
    display: block;
}

@keyframes floatSticker {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 10px));
    }
}
.banner-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
    pointer-events:none;
}

.banner-bg span{
    position:absolute;
    display:block;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(2px);
    animation: bubbleFloat linear infinite;
}

/* Individual Bubble Sizes & Positions */
.banner-bg span:nth-child(1){
    width:80px;
    height:80px;
    left:5%;
    animation-duration:18s;
    animation-delay:0s;
}

.banner-bg span:nth-child(2){
    width:35px;
    height:35px;
    left:18%;
    animation-duration:14s;
    animation-delay:2s;
}

.banner-bg span:nth-child(3){
    width:120px;
    height:120px;
    left:35%;
    animation-duration:22s;
    animation-delay:4s;
}

.banner-bg span:nth-child(4){
    width:50px;
    height:50px;
    left:52%;
    animation-duration:16s;
    animation-delay:1s;
}

.banner-bg span:nth-child(5){
    width:100px;
    height:100px;
    left:68%;
    animation-duration:20s;
    animation-delay:3s;
}

.banner-bg span:nth-child(6){
    width:45px;
    height:45px;
    left:82%;
    animation-duration:15s;
    animation-delay:5s;
}

.banner-bg span:nth-child(7){
    width:65px;
    height:65px;
    left:92%;
    animation-duration:17s;
    animation-delay:2s;
}

.banner-bg span:nth-child(8){
    width:140px;
    height:140px;
    left:75%;
    animation-duration:26s;
    animation-delay:6s;
}

/* Floating Animation */
@keyframes bubbleFloat{
    0%{
        transform:translateY(120vh) scale(.4);
        opacity:0;
    }

    20%{
        opacity:1;
    }

    50%{
        transform:translateY(40vh) translateX(25px) scale(.8);
    }

    100%{
        transform:translateY(-150px) translateX(-30px) scale(1.1);
        opacity:0;
    }
}

.arrow1 {
    position: absolute;
    right: 40px;
    top: 30%;
    transform: translateY(-50%);
    z-index: 10;
    animation: floatSticker 3s ease-in-out infinite;
    z-index: 9999;
}
.arrow1 img {
    width: 300px;
    height: auto;
    display: block;
}
.arrow2 img{
width:150px;
}
.card.form-enq {
    /* opacity: 0.9; */
    background: rgba(255,255,255,0.18);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
}
.topbar .left i{
  background-color: #08306a;
  color: #fff;
  border-radius: 50%;
  padding: 6px;
  font-size: 10px;
}
/* timer */
.counter-section{
    background:#fff;
    /* padding:80px 0; */
}

.counter-box{
    max-width:1400px;
    margin:auto;
    background: #08306a;
    /* border-radius:18px; */
    display:grid;
    grid-template-columns:repeat(4,1fr);
    align-items:center;
    overflow:hidden;
    position:relative;
}

/* Pink Top Line */


.counter-item{
    text-align:center;
    padding:60px 25px;
    position:relative;
}

.counter-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:140px;
    background:rgba(255,255,255,.15);
}

.counter-item h2{
    font-size:85px;
    color:#fff;
    font-weight:800;
    margin:0 0 12px;
    line-height:1;
}

.counter-item p{
    color:#ffe600;
    font-size:24px;
    margin:0;
    font-weight:500;
}

/* Responsive */

@media(max-width:1200px){

    .counter-item h2{
        font-size:60px;
    }

    .counter-item p{
        font-size:20px;
    }

}

@media(max-width:991px){

    .counter-box{
        grid-template-columns:repeat(2,1fr);
    }

    .counter-item:nth-child(2)::after{
        display:none;
    }

}

@media(max-width:576px){

    .counter-box{
        grid-template-columns:1fr;
    }

    .counter-item::after{
        display:none;
    }

    .counter-item{
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .counter-item:last-child{
        border:none;
    }

    .counter-item h2{
        font-size:52px;
    }

    .counter-item p{
        font-size:18px;
    }

}

.counter-section{
    /* padding:80px 0; */
    background:#fff;
}

.counter-section .container{
    /* width:90%; */
    /* max-width:1400px; */
    /* margin:auto; */
}

.counter-box{
    background: #b11215;
    /* border-radius:18px; */
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    position:relative;
}


.counter-item{
    text-align:center;
    padding:70px 20px;
    position:relative;
}

.counter-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:130px;
    background: rgb(255 255 255 / 43%);
}

.counter-item h2{
    font-size: 68px;
    color:#fff;
    margin:0;
    font-weight:800;
    line-height:1;
}

.counter-item p{
    margin-top:18px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Responsive */

@media(max-width:992px){

.counter-box{
grid-template-columns:repeat(2,1fr);
}

.counter-item:nth-child(2)::after{
display:none;
}

.counter-item h2{
font-size:65px;
}

.counter-item p{
font-size:22px;
}

}

@media(max-width:576px){

.counter-box{
grid-template-columns:repeat(2,1fr);
}

.counter-item::after{
display:none;
}

.counter-item:nth-child(1),
.counter-item:nth-child(2){
border-bottom:1px solid rgba(255,255,255,.15);
}

.counter-item h2{
font-size:38px;
}

.counter-item p{
font-size:13px;
}

}

/* SERVICE */
.service-section{
    background:#f5f7fb;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding: 15px 15px 15px;
    position:relative;
    overflow:hidden;
    margin-bottom: 30px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #eee;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    /* background: linear-gradient(135deg, #ff3131, #ff3131); */
}

.service-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    /* background:linear-gradient(135deg,#5b2cff,#ff0080); */
    right:-120px;
    bottom:-120px;
    opacity:.08;
}

.icon{
    width:100px;
    height:100px;
    margin:auto;
    /* background: #08306a; */
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
}

.icon img{
    width: 90px;
}

.service-card h3{
    text-align:center;
    font-size: 17px;
    font-weight:700;
    margin-bottom: 12px;
    color: #363636;
}

.service-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #363636;
    font-family: 'Inter', sans-serif;
}

.service-card ul li::before{
    content:"\2713";
    position:absolute;
    left:0;
    top:2px;
    width:18px;
    height:18px;
    border-radius:50%;
    background: #08306A;
    color:#fff;
    font-size:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.arrow-btn{
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    background:#f3e5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#222;
    text-decoration:none;
    transition:.4s;
}

.arrow-btn:hover{
    background:linear-gradient(135deg,#5b2cff,#ff0080);
    color:#fff;
    transform:translateX(-50%) rotate(45deg);
}
.spa{
  color: #db3545;
}
.mt-60{
  margin-top: 60px;
}
.mb-60{
  margin-bottom: 60px;
}
.pt-60{
  padding-top: 60px;
}
.pb-60{
  padding-bottom: 60px;
}

.read-more-btn{
    font-family: 'Inter';
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 0px 0px;
    /* background:#0d6efd; */
    color: #ff3131;
    font-weight: 700;
    text-decoration:none;
    border-radius:50px;
    font-size: 14px;
    font-weight:600;
    transition:all .3s ease;
}

.read-more-btn i{
    transition:.3s;
}

.read-more-btn:hover{
    background: #072b5f;
    color:#fff;
}

.read-more-btn:hover i{
    transform:translateX(6px);
}

/* partners */
.trusted-section{
    background:#eef4f8;
    overflow:hidden;
}

.trusted-title{
    font-size: 43px;
    font-weight:800;
    color:#0c3557;
    line-height:1.2;
}

.trusted-title span{
    color:#f2a71b;
}

.title-line{
    width:420px;
    height:10px;
    background:#f2a71b;
    margin:18px auto 0;
    border-radius:50px;
}

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.logo-track{
    display:flex;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-box{
    width:190px;
    height:90px;
    background:#fff;
    border-radius: 2px;
    margin:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    flex-shrink:0;
}

.logo-box img{
    max-width:140px;
    max-height:55px;
    object-fit:contain;
    /* filter:grayscale(100%); */
    opacity:.75;
    transition:.3s;
}

.logo-box:hover img{
    filter:none;
    opacity:1;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Responsive */

@media(max-width:991px){

.trusted-title{
    font-size:40px;
}

.title-line{
    width:280px;
}

.logo-box{
    width:160px;
    height:80px;
}
}

@media(max-width:576px){

.trusted-title{
    font-size:28px;
}

.logo-box{
    width:140px;
    height:70px;
}

.logo-box img{
    max-width:110px;
}
}
.trusted-section{
  position: relative;
}
.rocket{
    position: absolute;
    bottom: -21px;
    right: -11px;
    transform: rotate(-48deg);
    animation: rocketFloat 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes rocketFloat{
    0%{
        transform: translateY(0) translateX(0) rotate(-48deg);
    }
    25%{
        transform: translateY(-12px) translateX(-5px) rotate(-45deg);
    }
    50%{
        transform: translateY(-20px) translateX(3px) rotate(-50deg);
    }
    75%{
        transform: translateY(-10px) translateX(-4px) rotate(-46deg);
    }
    100%{
        transform: translateY(0) translateX(0) rotate(-48deg);
    }
}


/* technology */

.technology-section{
    background:#eef4f8;
    padding:80px 0;
    overflow:hidden;
}



/* Technology Box */

.tech-box{
    width:100%;
    height: 65px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
}

.tech-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.tech-box img{
    max-width: 40px;
    transition:.4s;
}

.tech-box:hover img{
    transform:scale(1.15);
}

/* Center Circle */

.experience-circle{
    width: 150px;
    height: 150px;
    border-radius:50%;
    background:#fff;
    margin:auto;
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Rotating Ring */

.experience-circle::before{
    content:"";
    position:absolute;
    inset:-12px;
    border-radius:50%;
    border:2px dashed #0b3558;
    animation:rotateRing 15s linear infinite;
}

@keyframes rotateRing{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Logo */

.circle-logo{
    width:130px;
    height:130px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.circle-logo img{
    max-width: 132px;
}

/* Rotating Text */

.rotate-text{
    position:absolute;
    width:100%;
    height:100%;
    animation:rotateText 18s linear infinite;
}

.rotate-text span{
    position:absolute;
    top: -38px;
    left:50%;
    transform:translateX(-50%);
    background:#0b3558;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size: 9px;
    font-weight:600;
    letter-spacing:1px;
}

@keyframes rotateText{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(-360deg);
    }
}

/* Responsive */

@media(max-width:991px){

.experience-circle{
    margin:50px auto;
}

.technology-section h2{
    font-size:38px;
}

}

@media(max-width:767px){

.tech-box{
    height:90px;
}

.tech-box img{
    max-width:45px;
}

.experience-circle{
    width:220px;
    height:220px;
}

.circle-logo{
    width:100px;
    height:100px;
}

.circle-logo img{
    max-width:70px;
}



}
.footer-inner ul{
  padding-left: 0px;
}
.footer-title{
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.footer-title::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #f7a51c;
    border-radius: 50px;
}

.footer-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 15px;
    height: 3px;
    background: #fff;
    border-radius: 50px;
    animation: footerLine 2s linear infinite;
}

@keyframes footerLine{
    0%{
        left:0;
    }
    50%{
        left:45px;
    }
    100%{
        left:0;
    }
}
footer h4{
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

footer h4::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 65px;
    height: 3px;
    background: #ff3131;
    border-radius: 50px;
}

footer h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 18px;
    height: 3px;
    background: #fff;
    border-radius: 50px;
    animation: underlineMove 2s linear infinite;
}

@keyframes underlineMove{
    0%{
        left: 0;
    }
    50%{
        left: 47px;
    }
    100%{
        left: 0;
    }
}
.footer-bottom p{
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 999999999;
    padding: 25px;
    border: 5px solid rgb(37, 211, 102);
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.btn-whatsapp-pulse:hover, .btn-call-pulse:hover {
    color: white !important;
}

.btn-whatsapp-pulse {
    background: rgb(16, 160, 70);
    color: white;
    position: fixed;
    bottom: 15px;
    right: 58px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: 0px;
    padding: 32px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9999999999;
}
.testi-grid{
    display:flex;
    gap:25px;
}

.testi-card{
    flex:1;
}

.carousel-control-prev,
.carousel-control-next{
    width:45px;
    height:45px;
    background:#0d6efd;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

.carousel-control-prev{
    left:-25px;
}

.carousel-control-next{
    right:-25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-size:55%;
}

.carousel-control-next:focus, .carousel-control-next, .carousel-control-prev:focus, .carousel-control-prev{
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
    background-color:#ff3131 !important;
    width: 30px !important;
    height: 30px !important;
}

.carousel-control-next, .carousel-control-prev {
    top: 50% !important;
    
    transform: translateY(-50%) !important;
   
    opacity:1 !important;
    transition: opacity .15s ease !;}

    .carousel-control-prev {
    left: -50px !important;}

      .carousel-control-next {
    right: -50px !important;
}
.carousel-control-prev-icon {
    width: 20px !important;
}
.carousel-control-next-icon {
    width: 20px !important;
}
.testi-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.testi-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* contact-us-page */

:root{
--primary:#ff3131;
--dark:#111;
--light:#fff;
}

.section-space{/* padding:100px 0; */background-color: #fff;}

/*******************
Hero
********************/

.contact-hero{

background: url("../img/banner/banner.jpg") center/cover;

height:450px;

position:relative;

display:flex;

align-items:center;
}

.contact-hero .overlay{

position:absolute;

width:100%;

height:100%;

opacity: 0.8;

background: linear-gradient(        135deg,        #000814 0%,        #001845 25%,        #002B6B 55%,        #001C54 80%,        #000814 100%);
}

.hero-tag{

background:#ff3131;

padding:10px 22px;

border-radius:50px;

display:inline-block;

color:#fff;

margin-bottom:20px;

font-weight:600;

}

.contact-hero h1{

font-size:58px;

color:#fff;

font-weight:800;

margin-bottom:20px;

font-family: 'Inter', sans-serif;
}

.contact-hero p{

color:#ddd;

font-size:18px;

}

.breadcrumb a{

color:#fff;

text-decoration:none;

}

.breadcrumb-item.active{

color:#ff3131;

}

/*****************/

.sub-title{

color:#ff3131;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

}




.icon{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

/* background:#ff3131; */

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:30px;

margin-bottom:20px;

transition:.4s;
}

.info-box:hover .icon{

background:#fff;

color:#ff3131;

}

/*****************/

.contact-form{

padding: 27px;

background-color: #dfdfdf91;

/* border-radius:20px; */

box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.contact-form h3{

margin-bottom:30px;

font-size: 20px;

font-weight: 600;
}

.contact-form input,

.contact-form textarea{

margin-bottom: 16px;

height: 50px;

border-radius:10px;
}

.contact-form textarea{

height: 115px;
}



.contact-form button:hover{

background:#111;

}

/*****************/

.map{

height:100%;

min-height: 493px;

overflow:hidden;

border-radius:20px;
}

.map iframe{

width:100%;

height:100%;

border:0;

}

/*****************/

@media(max-width:991px){

.contact-hero{

height:350px;

}

.contact-hero h1{

font-size:40px;

}

.contact-about h2{

font-size:35px;

}

.map{

min-height:400px;

}

}
.info-box h5{
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
p{
font-size: 15px;
    color: #363636;
    line-height: 1.8;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff !important;
    content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb-item.active {
    color: #ff3131 !important;
    font-weight: 600 !important;
}

/* clients */
.our-clients{
    background:#fff;
}


.clients-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);

    border:1px solid #e8e8e8;
    overflow:hidden;
    border-radius:18px;
    background:#fff;

}

.client-item{

height: 130px;

display:flex;

align-items:center;

justify-content:center;

border-right:1px solid #e8e8e8;

border-bottom:1px solid #e8e8e8;

transition:.35s;

position:relative;

background:#fff;
}

.client-item img{

max-width: 131px;

max-height: 91px;

object-fit:contain;

filter:grayscale(100%);

transition:.4s;
}

.client-item:hover{

    background:#f8fbff;
    box-shadow:inset 0 0 0 2px #ff3131;
    z-index:2;

}

.client-item:hover img{

    filter:grayscale(0);
    transform:scale(1.08);

}

/* Last column border remove */

.client-item:nth-child(6n){
    border-right:none;
}

/* Last row border remove */

.client-item:nth-last-child(-n+6){
    border-bottom:none;
}

@media(max-width:991px){

.clients-grid{

grid-template-columns:repeat(4,1fr);

}

.client-item:nth-child(6n){
border-right:1px solid #e8e8e8;
}

.client-item:nth-child(4n){
border-right:none;
}

.client-item:nth-last-child(-n+6){
border-bottom:1px solid #e8e8e8;
}

.client-item:nth-last-child(-n+4){
border-bottom:none;
}

}

@media(max-width:767px){

.clients-grid{

grid-template-columns:repeat(2,1fr);

}

.client-item{

height:130px;

}

.client-item img{

max-width:100px;

}

.client-item:nth-child(4n){
border-right:1px solid #e8e8e8;
}

.client-item:nth-child(2n){
border-right:none;
}

.client-item:nth-last-child(-n+4){
border-bottom:1px solid #e8e8e8;
}

.client-item:nth-last-child(-n+2){
border-bottom:none;
}

}

/* mission-vision */

.foundation-section{

position:relative;

/* padding: 60px 0; */

background: url("../img/banner/banner-mission.jpg") center center/cover fixed;

overflow:hidden;
}

.overlay{

position:absolute;

inset:0;

opacity: 0.9;

background: linear-gradient(        135deg,        #000814 0%,        #001845 25%,        #002B6B 55%,        #001C54 80%,        #000814 100%);
}

.heading-area{

    position:relative;

    color:#fff;

    margin-bottom:80px;

}

.heading-area span{

    color:#ff3131;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:700;

}

.heading-area h2{

    font-size:48px;

    font-weight:800;

    margin-top:15px;

}

.foundation-content{

position:relative;

padding: 0px 15px;

color:#fff;

height:100%;
}

.middle{

    border-left:1px solid rgba(255,255,255,.25);

    border-right:1px solid rgba(255,255,255,.25);

}

.foundation-content span{

display:block;

font-size: 50px;

text-align: center;

font-weight:800;

color: rgb(255 255 255 / 89%);

line-height:1;

margin-bottom:20px;
}

.icon{

width: 70px;

height: 70px;

border:1px solid rgba(255,255,255,.3);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom: 20px;

background-color: #ff3131;

transition:.4s;
}

.icon i{

    color:#fff;

    font-size:28px;

}

.foundation-content:hover .icon{

    background:#ff3131;

    border-color:#ff3131;

    transform:rotate(360deg);

}

.foundation-content h3{

font-size: 24px;

text-align: center;

font-weight:700;

margin-bottom: 15px;
}

.foundation-content p{

color: #fff;

/* line-height:30px; */

font-size: 15px;
}

.foundation-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.foundation-content ul li{

    margin-bottom:15px;

    color:#ddd;

}

.foundation-content ul i{

    color:#ff3131;

    margin-right:12px;

}

@media(max-width:991px){

.middle{

border:none;

border-top:1px solid rgba(255,255,255,.2);

border-bottom:1px solid rgba(255,255,255,.2);

margin:40px 0;

padding:50px 0;

}

.heading-area h2{

font-size:36px;

}

.foundation-content{

padding:40px 20px;

text-align:center;

}

.icon{

margin:auto auto 25px;

}

}

/* tracking */
/*==============================
 Event & Exhibition Section
===============================*/

.event-exhibition-section{
    position:relative;
    /* padding:100px 0; */
    background:#fff;
    overflow:hidden;
}

.event-image-wrapper{
    position:relative;
    z-index:2;
}

.main-image{
    width:100%;
    border-radius:25px;
    position:relative;
    z-index:2;
    transition:.5s;
}

.event-image-wrapper:hover .main-image{
    transform:scale(1.03);
}

/* Background Shapes */

.shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.shape-one{
    width:180px;
    height:180px;
    background:#f3e9ff;
    top:-40px;
    left:-40px;
}

.shape-two{
    width:120px;
    height:120px;
    background:#ffe6d4;
    bottom:-30px;
    right:-20px;
}

/* Floating Cards */

.floating-box{

    position:absolute;
    background:#fff;
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 20px;
    border-radius:15px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    z-index:5;
    animation:float 3s infinite ease-in-out;

}

.box-one{

left:-20px;
top:40px;

}

.box-two{

right:-20px;
bottom:50px;

}

.floating-box i{

width:55px;

height:55px;

background: #ff3131;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:22px;
}

.floating-box h6{

margin:0;
font-size:22px;
font-weight:700;

}

.floating-box small{

color:#777;

}

/* Right Side */

.section-subtitle{

display:inline-block;
color:#6c3cff;
font-weight:700;
letter-spacing:2px;
margin-bottom:15px;

}




/* Skills */

.skill-box{

margin-bottom:30px;

}
.skill-box h6{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    font-weight:700;
    margin:0;
}

.skill-box h6 i{

/* margin-right:10px; */

color: #fff;
}

.skill-box span{

font-weight:700;
color:#111;

}

.custom-progress{

height: 8px;

background:#ededed;

border-radius:50px;

margin-top:15px;

overflow:visible;

position:relative;
}

.progress-fill{

height:100%;

border-radius:50px;

background: #ff3131;

position:relative;
}

.fill1{

width: 98%;
}

.fill2{

width:96%;

}

.fill3{

width: 100%;
}

/* White Circle */

.progress-fill span{

position:absolute;

right: -10px;

top:50%;

transform:translateY(-50%);

width:18px;

height:18px;

background:#fff;

border:4px solid #ff8b2c;

border-radius:50%;
}

/* Mini Cards */

.mini-card{

display:flex;
gap:18px;
padding:22px;
border-radius:15px;
background:#fff;
box-shadow:0 15px 35px rgba(0,0,0,.06);
transition:.4s;
height:100%;

}

.mini-card:hover{

transform:translateY(-8px);

}

.mini-card i{

width:65px;
height:65px;
background:#6c3cff;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
flex-shrink:0;

}

.mini-card h5{

font-weight:700;
margin-bottom:8px;

}

.mini-card p{

margin:0;
color:#777;
line-height:28px;

}

/* Animation */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/* Responsive */

@media(max-width:991px){

.event-exhibition-section{

padding:70px 0;

}

.section-title{

font-size:38px;

}

.floating-box{

position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
margin:20px 0;

}

.box-one,
.box-two{

margin-top:20px;

}

}

@media(max-width:767px){

.section-title{

font-size:30px;

}

.mini-card{

margin-bottom:20px;

}

.section-text{

font-size:16px;

}

.skill-box h6{

font-size:16px;

}

}
.skill-icon{

width:48px;

height:48px;

border-radius:14px;

background: #ff3131;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:20px;

box-shadow:0 12px 25px rgba(13,110,253,.25);

transition:.4s;

position:relative;
}

.skill-icon::before{

content:"";

position:absolute;

inset:-5px;

border: 1px dashed rgb(162 111 127 / 40%);

border-radius:16px;

transition:.4s;
}

.skill-box:hover .skill-icon{

    transform:rotate(-8deg) scale(1.08);

}

.skill-box:hover .skill-icon::before{

    transform:rotate(180deg);

}
/* contactus */
/*=============================
   CONTACT SECTION
==============================*/

.contact-modern{
    background: #fff;
}

.contact-left{
    position:relative;
    /* min-height: 602px; */
    background: url("../img/contact-bg.png") center center/cover;
    overflow:hidden;
}

.contact-left .overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(90deg,rgba(5,31,61,.95),rgba(5,31,61,.95));
}

.contact-content{
    position:relative;
    z-index:2;
    color:#fff;
    padding: 25px 55px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.small-title{

    display:inline-block;

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

    position:relative;

}

.small-title::after{

content:"";

width:70px;

height:4px;

background:#ff3131;

display:block;

margin-top:12px;

border-radius:30px;

}

.contact-content h2{

font-size: 25px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;
}

.contact-content h2 span{

color: #ff4444;
}

.contact-content p{

font-size:17px;

line-height:32px;

color:#e9e9e9;

margin-bottom:45px;

}

/*=============================
 CONTACT INFO BOX
==============================*/

.contact-box{

display:flex;

align-items:flex-start;

gap:25px;

margin-bottom:40px;

}

.contact-icon{

width: 60px;

height: 60px;

background:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

flex-shrink:0;

box-shadow:0 20px 45px rgba(0,0,0,.15);

transition:.4s;

position:relative;
}

.contact-icon::before{

content:"";

position:absolute;

inset:-8px;

border:2px dashed rgba(255,255,255,.35);

border-radius:50%;

transition:.5s;

}

.contact-box:hover .contact-icon{

background:#ff3131;

transform:rotate(-10deg);

}

.contact-box:hover .contact-icon::before{

transform:rotate(180deg);

}

.contact-icon i{

font-size: 25px;

color: #ff4444;

transition:.4s;
}

.contact-box:hover .contact-icon i{

color:#fff;

}

.contact-box h5{

font-size: 20px;

font-weight:700;

margin-bottom:10px;
}

.contact-box a{

color:#fff;

text-decoration:none;

font-size: 15px;
}

.contact-box p{

margin:0;

font-size: 15px;

line-height:30px;

color:#fff;
}

/* our-work */

/*==============================
      OUR WORK SECTION
==============================*/

.our-work{
    background-image: url(https://img.magnific.com/free-vector/abstract-background-with-pink-purple-flowing-lines-design_1048-20364.jpg?t=st=1782734769~exp=1782738369~hmac=ba4293491e53712856c1105a304a71a777083714696cd5c1c9e45fc1c9c53b6e&w=1480);
    /* background: linear-gradient(135deg,#0B4F9F 0%,#1575D6 100%); */
    /* padding:100px 0; */
    overflow:hidden;
    position:relative;
}

.our-work::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.our-work::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-180px;
    left:-120px;
}

/*==============================
      LEFT CONTENT
==============================*/

.work-content{
    color:#fff;
    padding-right: 14px;
}

.sub-title{
    color:#FFD54A;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:15px;
}



/*==============================
      CATEGORY BUTTONS
==============================*/

.category-btn{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:35px;
}

.category-btn a{
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.35);
    padding:12px 25px;
    border-radius:40px;
    transition:.4s;
    font-weight:500;
}

.category-btn a.active{
    background: #ff3131;
    color: #fff;
    border-color:#FFC72C;
}

.category-btn a:hover{
    background:#fff;
    color:#0B4F9F;
}

/*==============================
        BUTTON
==============================*/

.theme-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#FFC72C;
    color:#111;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
}

.theme-btn:hover{
    transform:translateY(-5px);
    background:#fff;
    color:#0B4F9F;
}

/*==============================
       SLIDER
==============================*/

.portfolioSlider{
    overflow:hidden;
    padding:15px 0;
}

/*==============================
        CARD
==============================*/

.portfolio-box{

background:#fff;

border-radius: 5px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.18);

transition:.45s;

margin: 0px;
}

.portfolio-box:hover{

    transform:translateY(-10px);

}

.portfolio-box img{
    width: 100%;
    height: 477px;
    object-fit: cover;
    padding: 20px;
    object-position: top; /* Image top se show hogi */
    transition: .6s;
}
.portfolio-box:hover img{

    transform:scale(1.08);

}
.portfolio-info{

    padding:28px;

}
.portfolio-info span{

    color:#0B4F9F;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
    margin-bottom:10px;
}
.portfolio-info h4{

    font-size:27px;
    font-weight:700;
    color:#222;
    line-height:1.4;
    margin:0;

}

/*==============================
      SWIPER
==============================*/

.swiper-slide{

    height:auto;

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:992px){

.work-content{

padding-right:0;
text-align:center;
margin-bottom:50px;

}

.category-btn{

justify-content:center;

}

.work-content h2{

font-size:42px;

}

}

@media(max-width:768px){

.work-content h2{

font-size:34px;

}

.portfolio-box img{

height:250px;

}

.portfolio-info h4{

font-size:22px;

}

.category-btn a{

width:100%;
text-align:center;

}

.theme-btn{

width:100%;
justify-content:center;

}

}

/* Slider Buttons */

.portfolioSlider .swiper-button-next,
.portfolioSlider .swiper-button-prev{

width: 30px;

height: 30px;

background: #ff3131;

border-radius:50%;

color: #fff;

box-shadow:0 10px 30px rgba(0,0,0,.15);

transition:.3s;
}

.portfolioSlider .swiper-button-next:hover,
.portfolioSlider .swiper-button-prev:hover{

    background:#ffc107;
    color:#111;
    transform:scale(1.08);

}

/* Arrow Size */

.portfolioSlider .swiper-button-next::after,
.portfolioSlider .swiper-button-prev::after{

    font-size:18px;
    font-weight:700;

}

/* Position */

.portfolioSlider .swiper-button-prev{

left: 0px;
}

.portfolioSlider .swiper-button-next{

right: 0px;
}
.portfolioSlider{
    overflow: visible;
}
.work-content h3{font-size: 30px;font-weight: 700;}

.nav-link:focus, .nav-link:hover {
    color: #d22828 !important;
}
.testi-card{
    position: relative;
}

.quote-icon{
    position: absolute;
    top: 18px;
    right: 20px;   /* left:20px; kar do agar left side chahiye */
    font-size: 55px;
    color: rgba(0, 71, 171, 0.10);
    z-index: 1;
}

.testi-stars,
.testi-card p,
.testi-author{
    position: relative;
    z-index: 2;
}

.process-section{
    position:relative;
    overflow:hidden;
    background: #eef4f8;
    padding: 72px 0px 60px 0px;
}

/* dotted wave line */
.process-section::before{
    content:"";
    position:absolute;
    left:-4%;
    top: 97px;
    width:108%;
    height:180px;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1800' height='220' viewBox='0 0 1800 220'%3E%3Cpath d='M0 120 C220 70 420 70 620 120 S1020 170 1220 120 S1620 70 1800 110' fill='none' stroke='%23b8ddff' stroke-width='5' stroke-dasharray='10 8' stroke-linecap='round'/%3E%3C/svg%3E") center no-repeat;
    background-size:100% 100%;
    z-index:0;
}
.process-item{
    position:relative;
    z-index:2;
}

.diamond{
    width: 130px;
    height: 130px;
    background: #fff;
    margin:auto;
    transform:rotate(45deg);
    border-radius:18px;
    position:relative;
    transition:.5s;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.diamond i{
    position:absolute;
    top:50%;
    left:50%;
    font-size: 40px;
    transform:translate(-50%,-50%) rotate(-45deg);
    color: #08306a;
}

.step-number{

position:absolute;

width:58px;

height:58px;

background: #ff3131;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-weight: 800;

color: #fff;

font-size: 28px;

bottom:-15px;

left:-15px;

transform:rotate(-45deg);

box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.process-item h3{

margin-top:70px;

font-size: 18px;

font-weight:800;

text-transform: capitalize;

color: 
#363636;
}

.process-item p{

margin-top:20px;

color: #363636;

/* line-height:1.9; */

font-size: 15px;
}

.process-item:hover .diamond{

    background:#ff3131;
    transform:rotate(45deg) translateY(-12px);
}

.process-item:hover .step-number{

background:#ff3131;

color: #fff !important;
}

.process-item:hover h3{

    color:#ff3131;
}

/* alternate up-down */

.col-lg-3:nth-child(even){
    /* margin-top:90px; */
}

@media(max-width:991px){

.col-lg-3:nth-child(even){
    margin-top:0;
}

.process-section::before{
    display:none;
}

.process-item{
    margin-bottom:60px;
}

.process-item h3{
    font-size:28px;
}

}
.diamond img{
    /* width: 60px; */
    rotate: -44deg;
    padding: 38px;
}
.mt-90 {
    margin-top: 90px;
}
.service-card{
    position:relative;
    overflow:hidden;
    z-index:1;
}

.card-bg-effect{
    position:absolute;
    width:260px;
    height:260px;
    background:#ff3131;
    opacity:.08;
    border-radius:50%;
    top:-140px;
    right:-120px;
    z-index:-1;
    transition:.6s;
}

.service-card:hover .card-bg-effect{
    transform:scale(1.6);
    opacity:.15;
}
.bg-primary {
    background-color: #08306a !important;
}
.service-section .icon{
    background-color: transparent;

}
.main-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all .4s ease;
    padding: 18px 0;
}

.top-header{
    transition: .3s ease;
}

.main-nav{
    position: fixed;
    top: 40px; /* jitni top header ki height ho */
    left: 0;
    width: 100%;
    transition: .3s ease;
    z-index: 999;
}

.main-nav.sticky{
    top: 0;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    padding: 12px 0;
}

.main-nav.sticky a.nav-link{
    color: #363636;
}

/* Top Header Hide */
body.scrolled .top-header{
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}
.contact-hero .col-lg-8{
    padding-top: 60px;
}

/* webwatspp */
.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 999999999;
    padding: 25px;
    border: 5px solid rgb(37, 211, 102);
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.btn-whatsapp-pulse:hover, .btn-call-pulse:hover {
    color: white !important;
}

.btn-whatsapp-pulse {
    background: rgb(16, 160, 70);
    color: white;
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: 0px;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9999999999;
}
/* call icon */
/* Call Border Animation */
.btn-call-pulse-border::before{
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    padding: 25px;
    border: 5px solid #0b5ed7;
    animation: pulse-call-border 1.5s ease-out infinite;
}

@keyframes pulse-call-border{
    0%{
        padding:25px;
        opacity:.75;
    }
    75%{
        padding:50px;
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

/* Call Button */
.btn-call-pulse{
    background:#0B3D91;
    color:#fff;
    position:fixed;
    bottom:100px;   /* WhatsApp ke upar */
    right:10px;
    font-size:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    width:65px;
    height:65px;
    text-decoration:none;
    border-radius:50%;
    z-index:999999999;
    transition:.3s;
    box-shadow:0 10px 25px rgba(11,61,145,.35);
}

.btn-call-pulse:hover{
    background:#082f72;
    color:#fff;
    transform:scale(1.08);
}

/* our-portfolio */

.portfolio_img {
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    border-bottom: 3px solid rgb(251, 142, 1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.portfolio_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: 0% 0%;
    transition: 0.1s ease-in-out;
}

.portfolio_img:hover img {
    object-position: 0% 100%;
    transition: 1s ease-in-out;
}

/* coverage-area */
/*=========================
      INDUSTRY CARDS
=========================*/

.industry-cards{
    margin-top:-120px;
    position:relative;
    z-index:10;
}

.industry-card{
    background:#fff;
    border-radius:6px;
    padding: 10px 18px;
    height:100%;
    /* min-height:225px; */
    box-shadow:0 8px 22px rgba(0,0,0,.12);
    transition:.35s ease;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.industry-card .icon{
    width:65px;
    height:65px;
    margin-bottom:18px;
}

.industry-card .icon i{
    font-size:55px;
    color: #ff3131de;
}

/* Heading */

.industry-card h4{
    font-size: 18px;
    font-weight:700;
    text-align: center;
    color: #363636;
    /* line-height:1.3; */
    margin-bottom: 8px;
}

/* Paragraph */

.industry-card p{
    font-size: 15px;
    color:#444;
    line-height:1.6;
    margin:0;
    font-weight:400;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px){

.industry-cards{
    margin-top:-80px;
}

.industry-card{
    min-height:210px;
}

}

@media(max-width:767px){

.industry-cards{
    margin-top:40px;
}

.industry-card{
    min-height:auto;
    padding:20px;
}

.industry-card .icon i{
    font-size:45px;
}

.industry-card h4{
    font-size:20px;
}

.industry-card p{
    font-size:16px;
}

}
.industry-card .icon{
    background-color: transparent;
}
section.pt-60.pb-60.covergage {
    background-color: aliceblue;
}
/*==============================
        BLOG SECTION
==============================*/

.blog-section{
    padding:100px 0;
    background:#f5f9ff;
}

.blog-tag{
    display:inline-block;
    padding:8px 22px;
    background:#0d6efd;
    color:#fff;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title{
    font-size: 35px !important;
    font-weight:700;
    color:#08244a;
    margin-bottom:15px;
}

.section-text{
    font-size:18px;
    color:#666;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/*==============================
          BLOG CARD
==============================*/

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/*==============================
            IMAGE
==============================*/

.blog-img{
    position:relative;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:430px;
    object-fit:cover;
    transition:.6s;
}

.blog-card:hover .blog-img img{
    transform:scale(1.08);
}

/* Category */

.category{
    position:absolute;
    top:25px;
    left:25px;
    background: #ff3131;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(13,110,253,.35);
}

/*==============================
          CONTENT
==============================*/

.blog-content{
    padding:40px;
}

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap: 18px;
    margin-bottom: 15px;
}

.blog-meta span{
    color:#777;
    font-size: 14px;
    font-weight:500;
}

.blog-meta i{
    color: #ff3131;
    margin-right:6px;
}

.blog-content h3{
    font-size: 18px;
    font-weight:700;
    color: #363636;
    line-height:1.4;
    margin-bottom: 6px;
}

.blog-content p{
    /* font-size:17px; */
    /* color:#555; */
    /* line-height:1.9; */
    /* margin-bottom:30px; */
}

/*==============================
          BUTTON
==============================*/

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 30px;
    background: #ff3131;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.blog-btn:hover{
    background:#08244a;
    color:#fff;
    transform:translateX(5px);
}

.blog-btn i{
    transition:.35s;
}

.blog-btn:hover i{
    transform:translateX(5px);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

.blog-section{
    padding:80px 0;
}

.section-title{
    font-size:36px;
}

.blog-img img{
    height:320px;
}

.blog-content{
    padding:30px;
}

.blog-content h3{
    font-size:28px;
}

}

@media(max-width:767px){

.blog-section{
    padding:60px 0;
}

.section-title{
    font-size:28px;
}

.section-text{
    font-size:16px;
}

.blog-img img{
    height:240px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:22px;
}

.blog-content p{
    font-size:15px;
}

.blog-meta{
    gap:15px;
}

.blog-btn{
    width:100%;
    justify-content:center;
}

}


/* service */

.web-service-page{

    overflow:hidden;
    background:#fff;

}

.web-service-page .service-block{

padding: 60px 0;

position:relative;

scroll-margin-top: 140px;
}

.web-service-page .service-block::before{

    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#0d6efd10;
    top:-120px;
    right:-120px;

}

.web-service-page .service-image{

    position:relative;

}

.web-service-page .service-image img{

width:100%;

border-radius: 5px;

transition:.5s;

box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.web-service-page .service-image:hover img{

    transform:scale(1.05);

}

.web-service-page .service-number{

position:absolute;

left:-20px;

top:-20px;

width:80px;

height:80px;

background: linear-gradient(135deg, #ff3131, #ff3131);

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

z-index: 9;

font-weight:700;

box-shadow:0 15px 40px rgba(13,110,253,.3);
}

.web-service-page .service-content{

/* background:#fff; */

padding: 0px;

border-radius:25px;

/* box-shadow:0 15px 60px rgba(0,0,0,.08); */
}

.web-service-page .service-tag{

display:inline-block;

background: #ff313142;

color: #363636;

padding:10px 22px;

border-radius:40px;

font-size:14px;

font-weight:600;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom: 9px;
}

.web-service-page .service-content h2{

font-size: 26px;

font-weight:700;

color:#0d1b2a;

margin-bottom: 10px;
}

.web-service-page .service-content p{

/* color:#666; */

/* line-height:1.9; */

/* margin-bottom:20px; */
}

.web-service-page .service-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin: 10px 0;
}

.web-service-page .service-list div{

background:#f7faff;

border-radius:12px;

font-size: 14px;

padding: 10px 6px;

font-weight:600;

transition:.4s;
}

.web-service-page .service-list div:hover{

background: #072553;

color:#fff;

transform:translateY(-5px);
}

.web-service-page .service-list i{

color: #ff3131;

margin-right:10px;
}

.web-service-page .service-list div:hover i{

    color:#fff;

}

.web-service-page .service-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 38px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,#0d6efd,#00b4ff);
    font-weight:600;
    transition:.4s;

}
.web-service-page .service-btn:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 15px 40px rgba(13,110,253,.35);

}
@media(max-width:991px){

.web-service-page .service-content{

padding:30px;

}

.web-service-page .service-content h2{

font-size:32px;

}

.web-service-page .service-list{

grid-template-columns:1fr;

}

.web-service-page .service-number{

left:15px;
top:15px;

}
}
.form-control{
    background: transparent !important;
    color: #fff;
}
::placeholder{
    color:#fff !important;
}
input::placeholder,
textarea::placeholder {
    color: #fff;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: white !important;
}

.form-control::-moz-placeholder {
    color: white !important;
}

.form-control:-ms-input-placeholder {
    color: white !important;
}

.form-control::placeholder {
    color: white !important;
}

/*==============================
        GALLERY
==============================*/

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: start;
}

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    background: #f2f4f8;
}

.gallery-item img{
    width: 100%;
    height: auto;
    display: block;
    transition: .6s;
}

.gallery-item:hover img{
    transform: scale(1.1);
}

.gallery-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-overlay i{
    color: #fff;
    font-size: 28px;
    transform: scale(.5);
    transition: .4s;
}

.gallery-item:hover .gallery-overlay{
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i{
    transform: scale(1);
}

.gallery-lightbox{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 8, 20, .92);
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active{
    display: flex;
}

.gallery-lightbox img{
    max-width: 85%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next{
    position: absolute;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    transition: .3s;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover{
    background: #ff3131;
}

.gallery-lightbox-close{
    top: 25px;
    right: 25px;
}

.gallery-lightbox-prev{
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-next{
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 992px){
    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .gallery-grid{
        grid-template-columns: 1fr;
    }
    .gallery-lightbox-prev,
    .gallery-lightbox-next{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
