:root {
  --primary: #38bdf8;
  --primary-soft: rgba(56,189,248,0.15);
  --dark: #020617;
  --dark-soft: #0b1220;
  --dark-card: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --light: #ffffff;
  --radius: 18px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  /*background: var(--dark);*/
  color: var(--text);
  line-height: 1.6;
}

/* SECTIONS */
.az-section {
  padding: 120px 0;
  position: relative;
}

.az-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADINGS */
.az-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.az-heading span {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.az-subheading {
  color: var(--muted);
  max-width: 640px;
  margin-top: 20px;
  font-size: 18px;
}

/* BUTTONS */
.az-btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.35s ease;
}

.az-btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  box-shadow: 0 10px 40px rgba(56,189,248,0.35);
}

.az-btn-primary:hover {
  transform: translateY(-2px);
}

.az-btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

.az-btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* PREMIUM CARD */
.az-card {
  background: linear-gradient(180deg, var(--dark-card), #020617);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.az-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* NAVBAR */


.navbar .nav-link,
.navbar-brand {
  color: #1d1d1b !important;
}
.nav-item.az-quote {
    border: 1px solid #333;
    /*background: #ff3f04;*/
    color: #fff;
    padding: 5px 15px;
    border-radius: 40px;
}
.nav-item.az-quote a{
    color:#fff !important;
}
.navbar .nav-link:hover {
  color: var(--primary) !important;
}

/* FOOTER */
.az-footer {
  background: #020617;
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .az-heading {
    font-size: 32px;
  }
}


/* ===============================
   PREMIUM HERO (AumZenix)
================================ */

.az-hero {
  position: relative;
  min-height: 105px;
  background:
    radial-gradient(60% 60% at 20% 80%, rgba(255,94,0,0.35), transparent 60%),
    radial-gradient(40% 40% at 80% 20%, rgba(56,189,248,0.25), transparent 60%),
    linear-gradient(180deg, #020617 0%, #000000 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.az-hero-content {
  max-width: 760px;
}

.az-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.az-hero-title span {
  background: linear-gradient(90deg, #ffffff, #ffb199);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.az-hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: #cbd5f5;
  max-width: 520px;
}

/* Right visual */
.az-hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  opacity: 0.95;
}

/* Floating side actions */
.az-hero-actions {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.az-hero-action-btn {
  width: 44px;
  height: 44px;
  /*background: #ff3c00;*/
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.az-hero-action-btn:hover {
  transform: translateX(-4px);
}

/* Social footer */
.az-hero-footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5f5;
  font-size: 14px;
}

.az-hero-social a {
  color: #cbd5f5;
  margin-left: 18px;
  text-decoration: none;
}

.az-hero-social a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 991px) {
  .az-hero-title {
    font-size: 42px;
  }
  .az-hero-visual {
    display: none;
  }
  .az-hero-actions {
    display: none;
  }
}

@media (max-width: 575px) {
  .az-hero-title {
    font-size: 34px;
  }
}
/* ===============================
   PREMIUM VIDEO SECTION
================================ */

.az-video-section {
  position: relative;
  /*padding: 140px 0;*/
  background: #020617;
  overflow: hidden;
}

.az-video-wrapper {
  position: relative;
  /*border-radius: 24px;*/
  overflow: hidden;
  /*max-width: 1100px;*/
  margin: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}

/* Background video or image */
.az-video-bg {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

/* Overlay gradient */
.az-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2,6,23,0.95) 0%,
      rgba(2,6,23,0.6) 40%,
      rgba(2,6,23,0.15) 70%,
      rgba(2,6,23,0.05) 100%
    );
}

/* Content */
.az-video-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 60px;
}

.az-video-text {
  max-width: 480px;
}

.az-video-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.az-video-text p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

/* Play button */
.az-video-play {
  position: absolute;
  right: 60px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(56,189,248,0.5);
  transition: 0.3s ease;
}

.az-video-play:hover {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 991px) {
  .az-video-bg {
    height: 460px;
  }
  .az-video-content {
    padding: 40px;
  }
  .az-video-play {
    right: 40px;
  }
}

@media (max-width: 767px) {
  .az-video-section {
    padding: 100px 0;
  }
  .az-video-bg {
    height: 420px;
  }
  .az-video-content {
    padding: 30px;
  }
  .az-video-text h2 {
    font-size: 30px;
  }
  .az-video-play {
    position: static;
    margin-top: 30px;
  }
}
/* ===== Trusted By – Bootstrap Based ===== */
/* ===== Trusted By – Continuous Scroll ===== */

.az-logo-strip {
  background: #ffffff;
  overflow: hidden;
}

.az-logo-track {
  display: flex;
  width: calc(240px * 24); /* 12 logos x 2 */
  animation: az-logo-scroll 35s linear infinite;
}

.az-logo-item {
  width: 240px;
  flex-shrink: 0;
}

.az-dummy-logo {
  height: 36px;
  width: 130px;
  background: linear-gradient(135deg, #e5e7eb, #f1f5f9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
  text-transform: uppercase;
}

/* Smooth infinite animation */
@keyframes az-logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ===============================
   PREMIUM SERVICES SECTION
================================ */

.az-services {
  background: #ffffff;
  padding: 120px 0;
}

.az-services-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.az-services-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.az-services-image {
  max-width: 420px;
}

.az-service-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.az-service-icon {
  min-width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.az-service-icon svg {
  width: 32px;
  height: 32px;
  stroke: #ff3c00;
}

.az-service-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.az-service-text {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .az-services-title {
    font-size: 36px;
  }
  .az-services-image {
    margin-bottom: 60px;
  }
}
/* ===============================
   TEXT SCROLLER / MARQUEE
================================ */

.az-text-scroller {
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.az-text-track {
  display: flex;
  width: max-content;
  animation: az-text-scroll 20s linear infinite;
}

.az-text-item {
  display: flex;
  align-items: center;
  font-size: 72px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111827;
  white-space: nowrap;
  padding: 30px 40px;
}

.az-text-star {
  color: #f59e0b;
  margin: 0 40px;
  font-size: 64px;
  line-height: 1;
}

/* Animation */
@keyframes az-text-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .az-text-item {
    font-size: 40px;
  }
  .az-text-star {
    font-size: 36px;
    margin: 0 24px;
  }
}
/* ===============================
   WHAT WE DO – PREMIUM SECTION
================================ */

.az-what {
  position: relative;
  background: #020617;
  padding: 140px 0;
  overflow: hidden;
}

/* subtle wave texture */
.az-what::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 60% at 20% 20%,
      rgba(255,255,255,0.04),
      transparent 60%
    ),
    radial-gradient(
      120% 60% at 80% 80%,
      rgba(255,255,255,0.03),
      transparent 60%
    );
  pointer-events: none;
}

/* images */
.az-what-images {
  position: relative;
}

.az-what-img-main {
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.az-what-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  border: 6px solid #020617;
}

/* content */
.az-what-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.az-what-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 22px;
}

.az-what-text {
  color: #cbd5f5;
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 36px;
}

/* CTA */
.az-btn-orange {
  background: #ff3c00;
  color: #fff;
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.az-btn-orange:hover {
  background: #e63600;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .az-what {
    padding: 100px 0;
  }
  .az-what-title {
    font-size: 34px;
  }
  .az-what-img-float {
    position: static;
    width: 70%;
    margin: 24px auto 0;
    display: block;
  }
}
/* ===============================
   CONTACT SECTION – PREMIUM
================================ */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
   
     padding-right: 0; 
     padding-left: 0; 
  
}
.az-contact {
  background: #ffffff;
  padding: 0px 0 140px;
}

.az-contact-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Content */
.az-contact-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.az-contact-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 40px;
}

/* Form */
.az-form-control {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 12px 4px;
  font-size: 15px;
}

.az-form-control:focus {
  border-bottom-color: #ff3c00;
  box-shadow: none;
}

.az-contact-btn {
  background: #ff3c00;
  color: #fff;
  padding: 14px 40px;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.az-contact-btn:hover {
  background: #e63600;
  color: #fff;
}

.az-form-check {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 991px) {
  .az-contact {
    padding: 100px 0;
  }
  .az-contact-title {
    font-size: 34px;
  }
}

/* ===============================
   BLOG / LATEST NEWS SECTION
================================ */

.az-blog {
  background: #ffffff;
  padding: 120px 0;
}

.az-blog-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.az-blog-title {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 70px;
}

/* Blog Card */
.az-blog-card {
  height: 100%;
}

.az-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
}

.az-blog-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111827;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.az-blog-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 14px;
}

.az-blog-meta {
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 991px) {
  .az-blog-title {
    font-size: 34px;
    margin-bottom: 50px;
  }
}
/* ===============================
   PREMIUM FOOTER
================================ */

.az-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 120px 0 40px;
}

.az-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
}

.az-footer-logo span {
  color: #a855f7; /* purple accent */
}

/* Big statement */
.az-footer-statement {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 520px;
}

/* Newsletter */
.az-footer-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
footer .form-check{
    text-align: left;
}
.az-footer-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #374151;
  border-radius: 0;
  color: #fff;
  padding: 10px 0;
}

.az-footer-input:focus {
  box-shadow: none;
  border-bottom-color: #a855f7;
}

.az-footer-arrow {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Links */
.az-footer-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.az-footer-links a {
  display: block;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.az-footer-links a:hover {
  color: #ffffff;
}

/* Bottom bar */
.az-footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 80px;
  padding-top: 30px;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 991px) {
  .az-footer-statement {
    font-size: 28px;
  }
}
/* ===============================
   PREMIUM COUNTER SECTION
================================ */

.az-counter {
  background: #ffffff;
  padding: 20px 0;
}

.az-counter-item {
  position: relative;
  text-align: center;
  padding: 40px 10px;
}

/* Large faded number */
.az-counter-bg {
  font-size: 160px;
  font-weight: 800;
  color: #e5e7eb;
  line-height: 1;
  opacity: 0.6;
}

/* Foreground label */
.az-counter-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}

/* Divider line */
.az-counter-divider {
  width: 1px;
  background: #e5e7eb;
  height: 80px;
  margin: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .az-counter-bg {
    font-size: 110px;
  }
  .az-counter-label {
    font-size: 18px;
  }
}
/* ===============================
   TESTIMONIAL – PREMIUM SLIDER
================================ */

.az-testimonial {
  background: #ffffff;
  padding: 70px 0 0;
  position: relative;
  text-align: center;
}

/* Quote text */
.az-testimonial-text {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* Arrows */
.az-testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #111827;
  cursor: pointer;
  user-select: none;
}

.az-testimonial-arrow.left {
  left: 40px;
}

.az-testimonial-arrow.right {
  right: 40px;
}

/* Author */
.az-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.az-testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.az-testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.az-testimonial-location {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 991px) {
  .az-testimonial-text {
    font-size: 28px;
  }
  .az-testimonial-arrow {
    display: none;
  }
}
/* ===============================
   DARK SERVICES GRID
================================ */

.az-services-dark {
  background: #0b3347;
  padding: 120px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle hex pattern */
.az-services-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.15;
  pointer-events: none;
}

/* section heading */
.az-services-tag {
  color: #ff4d5a;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.az-services-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

/* service item */
.az-service-dark {
  margin-bottom: 60px;
}

.az-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ff4d5a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.az-service-icon svg {
  width: 30px;
  height: 30px;
  stroke: #ff4d5a;
}

.az-service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.az-service-text {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
}

.az-service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.az-service-link:hover {
  color: #ff4d5a;
}

/* Responsive */
@media (max-width: 991px) {
  .az-services-title {
    font-size: 34px;
    margin-bottom: 60px;
  }
}
/* ===============================
   WHY US + FAQ + CTA
================================ */

.az-why {
  padding: 120px 0;
  background: #ffffff;
}

/* Left content */
.az-why-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f2a3d;
  margin-bottom: 30px;
}

.az-why-text {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.az-why-img {
  border-radius: 6px;
  margin-bottom: 24px;
}

/* Progress bar */
.az-progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 8px;
}

.az-progress {
  height: 8px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.az-progress-bar {
  height: 100%;
  background: #ef4a5f;
  width: 70%;
}

/* FAQ */
.az-faq .accordion-button {
  font-weight: 700;
  color: #0f2a3d;
}

.az-faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: #ef4a5f;
  box-shadow: none;
}

.az-faq .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 22px;
}

.az-faq .accordion-button:not(.collapsed)::after {
  content: "−";
}

.az-faq .accordion-body {
  color: #6b7280;
  line-height: 1.6;
}

/* CTA strip */
.az-cta-strip {
  background: #ef4a5f;
  padding: 60px 0;
  color: #ffffff;
}

.az-cta-title {
  font-size: 32px;
  font-weight: 800;
}

.az-cta-contact {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
  .az-why-title {
    font-size: 32px;
  }
  .az-cta-contact {
    text-align: left;
    margin-top: 20px;
  }
}
/* CTA Phone Icon */
.az-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.az-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}
/* ===============================
   CTA PHONE ICON ANIMATION
================================ */

.az-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: az-phone-pulse 2.5s ease-in-out infinite;
}

.az-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

/* Pulse animation */
@keyframes az-phone-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.35);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 14px rgba(255,255,255,0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
.az-fixed-icon{
    max-width:35px;
}



 .service-section .s-block {
    background: none;
    background-size: 100%;
    border: none;
    position: relative;
}
.s-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(https://www.brandingnuts.com/images/shape/shape-7.svg) #a6c2d3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}
.s-block h4, .s-block p {
    color: #000;
}
.mt30 {
    margin-top: 30px;
}
.mt70 {
    margin-top: 70px;
}
.free-cta-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.bg-btn2 {
    margin-left: 10px;
    color: #000000;
    font-weight: 600;
    border: 1px solid #333;
    padding: 7px 15px;
    text-decoration: none;
}

.bg-btn2 i {
    font-size: 11px;
    padding-left: 5px;
}
.web-servic .-cta-btn p {
    color: #040404;
}
.-cta-btn p span {
    font-weight: bold;
}
.service-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.s-block {
    background: #fff;
    text-align: center;
    background-size: 200%;
    background-position: top right;
    background-repeat: no-repeat;
    text-align: center;
    padding: 50px 20px;
    margin: 0;
    position: relative;
    border: 1px solid #d4f0ff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059), 0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071), 0 25px 40px -30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3.4px 2.7px -30px rgba(0, 0, 0, 0.059), 0 8.2px 8.9px -30px rgba(0, 0, 0, 0.071), 0 25px 40px -30px rgba(0, 0, 0, 0.2);
}
 .cookie-banner {
      position: fixed;
      bottom: -100%; /* Initially hidden offscreen */
      left: 0;
      width: 100%;
      background-color: #333;
      color: white;
      padding: 15px;
      text-align: center;
      z-index: 1000;
      transition: bottom 0.5s ease-in-out; /* Smooth slide-up transition */
    }

    /* Class to activate the slide-up animation */
    .cookie-banner.active {
      bottom: 0; /* Bring the banner into view */
    }

    .cookie-banner button {
background-color: #00346a;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
    box-shadow: 0 0 9px #ffffff38;
    }

    .cookie-banner button:hover {
      background-color: #45a049;
    }
@media only screen and (max-width: 1370px) {
    .hero-section {
        padding-top: 72px;
    }
}
@media only screen and (max-width: 991px) {
    .contact-block-btm {
        padding: 30px 10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px){
       /* .text-block {
        margin-top: 50px;
        position: unset;
        transform: unset;
    }*/
}
@media only screen and (max-width: 767px){
    p{
        font-size:16px;
        line-height:24px;
    }
    .award-flex {
    display: block;
    margin: auto;
    text-align: center;
}
.award-imgFX {
    display: inline-block;
    text-align: center;
    margin-bottom: 25px;
    padding: 0 5px;
}
.award-imgFX img {
    max-width: 115px;
}
div#cookieBanner a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.cookie-banner {
    font-size: 14px;
    line-height: 18px;
}
    .text-block {
        margin-top: 50px;
        position: unset;
        transform: unset;
    }
.footer-row2 {
    padding: 0px 0 80px 0;
}
}
@media only screen and (max-width: 520px) {
    .connect-block a span.large-text {
        font-size: 16px;
        line-height: 26px;
    }
        .footer-badges- li {
        padding: 10px 6px;
    }
}
@media only screen and (max-width:375px){
h2.banner-form-heading:after {
    bottom: -23%;
}
h2.banner-form-heading {
    font-size: 20px;
    line-height: 28px;
}
}

.service-section {
    background: #ffffff;
}
.service-section:before {
    content: "";
    background: url(../../assets/images/dot-shape.png);
    position: absolute;
    height: 400px;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    background-position: center top;
    background-size: contain;
    background-repeat: repeat;
}
.common-heading {
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 10;
}
.common-heading > span {
    line-height: 26px;
}
.common-heading > span {
    color: #e60072;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px 0;
    display: block;
}
.web-servic h2 {
    color: #000;
}
.shape-bg1, .shape-num, .shape-num {
    position: relative;
}
.upset {
    position: relative;
    z-index: 5;
}
.shape-num .shape-loc:first-child:before {
    content: '';
    background: url(../images/shape/shape-1.svg);
    background-size: auto;
    position: absolute;
    height: 150px;
    width: 150px;
    background-repeat: no-repeat;
    left: -40px;
    bottom: -60px;
    z-index: -1;
}
 .service-section .s-block {
    background: none;
    background-size: 100%;
    border: none;
    position: relative;
}
.s-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(https://www.brandingnuts.com/images/shape/shape-7.svg) #a6c2d3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.award-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.award-imgFX img {
    max-width: 150px;
}
.award-cstm-sct {
    background: #fff;
    padding: 25px 0 70px;
}




/* AUMZENIX Premium FAQ */
.az-faq {
  --az-primary: #6a5cff;
  --az-gradient: linear-gradient(135deg, #6a5cff, #9b8cff);
}

.az-faq .accordion-item {
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all .3s ease;
}

.az-faq .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.az-faq .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  padding: 20px 24px;
  border-radius: 16px;
}

.az-faq .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 24px;
  font-weight: 500;
  transform: rotate(0deg);
  transition: all .3s ease;
  color: var(--az-primary);
}

.az-faq .accordion-button:not(.collapsed)::after {
  content: "–";
  transform: rotate(180deg);
}

.az-faq .accordion-button:focus {
  box-shadow: none;
}

.az-faq .accordion-button:not(.collapsed) {
  color: var(--az-primary);
  background: linear-gradient(135deg, rgba(106,92,255,.08), rgba(155,140,255,.12));
}

.az-faq .accordion-body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}


.AZ-hero {
  background: #f4f8ff;
  /*margin-top:70px;*/
}

/* Badge */
.AZ-badge {
  background: #fff;
  color: #0b63ce;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
      color: #1d1d1b;
}

/* Headings */
.AZ-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
color: #1d1d1b;
}

.AZ-subtitle {
  font-size: 18px;
  max-width: 480px;
      color: #1d1d1b;
}

/* Services */
.AZ-service {
  font-size: 15px;
  font-weight: 500;
      color: #1d1d1b;
}

/* Button */
.AZ-btn-primary {
  background: #0b63ce;
  color: #fff;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 10px;
}

.AZ-btn-primary:hover {
  background: #084fa5;
  color: #fff;
}

/* Image Card */
.AZ-image-card {
  /*background: #cfe0ff;*/
  padding: 30px;
  /*border-radius: 24px;*/
  position: relative;
}

/* Tech tags */
.AZ-tech-tags span {
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
      color: #1d1d1b;
}

/* Tech stack */
.AZ-tech-stack p {
  font-size: 14px;
  font-weight: 600;
      color: #1d1d1b;
}

.AZ-tech-stack span {
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
      color: #1d1d1b;
}

/* Stats cards */
.AZ-stat {
  position: absolute;
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.AZ-stat h3 {
  color: #0b63ce;
  font-size: 28px;
  margin-bottom: 0;
}

.AZ-stat p {
  font-size: 14px;
  margin-bottom: 0;
      color: #1d1d1b;
}

.AZ-stat-top {
  top: -40px;
  right: 0;
}

.AZ-stat-side {
  left: -40px;
  top: 40%;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .AZ-title {
    font-size: 40px;
  }

  .AZ-stat {
    display: none;
  }

  .AZ-subtitle {
    margin: auto;
  }
}

@media (max-width: 575px) {
  .AZ-title {
    font-size: 32px;
  }

  .AZ-subtitle {
    font-size: 16px;
  }
}

/*-----------*/
.AZ-video-hero {
  background: #fff;
}

/* Wrapper */
.AZ-hero-wrapper {
  min-height: 600px;
  position: relative;
}

/* Video */
.AZ-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.AZ-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}

/* Badge */
.AZ-badge-dark {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
}

/* Title */
.AZ-hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
}

/* Description */
.AZ-hero-desc {
  font-size: 16px;
  max-width: 480px;
  opacity: 0.9;
}

/* Buttons */
.AZ-btn-primary {
  background: linear-gradient(90deg,#1b57ff,#4f8cff);
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 10px;
}

.AZ-btn-primary:hover {
  opacity: 0.9;
  color: #fff;
}

.AZ-btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
}

/* Trusted */
.AZ-trusted {
  font-weight: 600;
  opacity: 0.85;
}

/* Logo boxes */
.AZ-logo-box {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 991px) {
  .AZ-hero-title {
    font-size: 44px;
  }

  .AZ-hero-wrapper {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .AZ-hero-title {
    font-size: 34px;
  }

  .AZ-hero-desc {
    font-size: 14px;
  }
}

/*-----back to top----*/
#top_to_bottom {
    position: fixed;
    bottom: 8px;
    right: 28px;
}

div#top_to_bottom i {
    font-size: 30px;
}

/*-------*/
.fixed-top {
    top: 10px;
    padding: 20px;
}

/*----------*/

.AZ-metrics {
  background: #fff;
}

/* Base card */
.AZ-card {
  background: #f3f6f9;
  border-radius: 28px;
  padding: 40px;
}

/* LEFT */
.AZ-left-top h2 {
  font-size: 56px;
  font-weight: 800;
  color: #5c8dff;
}

.AZ-left-top p {
  font-weight: 600;
  line-height: 1.3;
}

.AZ-scale span {
  display: block;
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
}

/* CENTER */
.AZ-card-blue {
  background: linear-gradient(135deg,#1b6cff,#4f9bff);
}

.AZ-small {
  font-size: 14px;
  opacity: .9;
}

.AZ-big {
  font-size: 64px;
  font-weight: 800;
}

.AZ-text {
  font-size: 18px;
  font-weight: 600;
}

/* speed lines */
.AZ-speed-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      rgba(255,255,255,.35) 1px,
      transparent 1px);
  background-size: 14px 14px;
  opacity: .25;
}
.AZ-big{
    color:#fff !important;
}
/* RIGHT */
.AZ-card h2 {
  font-size: 52px;
  font-weight: 800;
  color: #5c8dff;
}

.AZ-card p {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .AZ-card {
    padding: 32px;
  }

  .AZ-big {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .AZ-left-top h2,
  .AZ-card h2 {
    font-size: 42px;
  }
}
.AZ-card {
  background: #f3f6f9;
  border-radius: 28px;
  padding: 40px;
  position: relative;
}

.AZ-card-blue {
  background: linear-gradient(135deg, #1b6cff, #4f9bff);
  overflow: hidden;
}

.AZ-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.AZ-value {
  font-size: 56px;
  font-weight: 800;
  color: #5c8dff;
}

.AZ-value-lg {
  font-size: 64px;
  font-weight: 800;
}

.AZ-text,
.AZ-text-lg {
  font-weight: 600;
}
.AZ-left-top p, .clr-dark p{
    color:#1d1d1b;
}

/*-------------*/

.az-title {
  font-size: 40px;
  font-weight: 700;
  color: #0b1b3f;
  line-height: 1.2;
}

.az-check {
  width: 22px;
  height: 22px;
  background: #e6f4ff;
  color: #007bff;
  border-radius: 50%;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.az-video-card {
  max-width: 420px;
}

.az-play-btn {
  width: 70px;
  height: 70px;
  background: #ec008c;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
}

/* FORM */
.az-form-card {
  background: #fff;
}

.az-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.az-input {
  background: #f6fbff;
  border: 1px solid #d6e9f8;
  border-radius: 10px;
  padding: 12px 14px;
}

.az-textarea {
  min-height: 120px;
  resize: none;
}

/* BUTTON */
.az-submit-btn {
  border: 2px solid #ec008c;
  color: #ec008c;
  padding: 10px 30px;
  border-radius: 30px;
  background: transparent;
  font-weight: 600;
}

.az-submit-btn:hover {
  background: #ec008c;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .az-title {
    font-size: 32px;
  }
}
.az-service-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.az-service-text {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.8;
  max-width: 520px;
}

/* Responsive – same behavior as screenshot */
@media (max-width: 991px) {
  .az-service-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .az-service-text {
    max-width: 100%;
  }
}
/*----------*/

.az-limit-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #000;
}

.az-limit-title span {
  color: #e11d2e; /* exact red emphasis */
}

.az-limit-text {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  max-width: 560px;
}

/* IMAGE */
.az-limit-image-wrap {
  border-radius: 80px;
  overflow: hidden;
}

/* RESPONSIVE — SAME BEHAVIOR */
@media (max-width: 991px) {
  .az-limit-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .az-limit-text {
    max-width: 100%;
  }

  .az-limit-image-wrap {
    border-radius: 30px;
  }
}
.az-mission-label {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.az-mission-label span {
  color: #e11d2e;
}

.az-mission-title {
  font-size: 28px;
  font-weight: 700;
  color: #0b1b3f;
}

.az-mission-text {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 520px;
}

/* STATS */
.az-stats-box {
  border: 1px solid #cfd9e8;
  margin-top: 30px;
}

.az-stat-item {
  padding: 24px;
  border-right: 1px solid #cfd9e8;
}

.az-stat-item:nth-child(2),
.az-stat-item:nth-child(4) {
  border-right: none;
}

.az-stat-item h4 {
  font-size: 32px;
  font-weight: 800;
  color: #e11d2e;
  margin-bottom: 5px;
}

.az-stat-item p {
  font-size: 14px;
  margin: 0;
  color: #333;
}

/* IMAGE */
.az-mission-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.az-main-image {
  max-width: 90%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .az-mission-title {
    font-size: 24px;
  }

  .az-main-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .az-stat-item {
    border-right: none;
  }
}
.az-glance-section {
  background: linear-gradient(
      rgba(20, 44, 70, 0.9),
      rgba(20, 44, 70, 0.9)
    ),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.az-glance-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.az-glance-box {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  overflow: hidden;
}

.az-glance-item {
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.az-glance-item:last-child {
  border-right: none;
}

.az-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.az-glance-item p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.az-glance-item strong {
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .az-glance-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .az-glance-item:last-child {
    border-bottom: none;
  }
}
.az-why-section {
  background: #f7fbff;
}

.az-why-title {
  font-size: 36px;
  font-weight: 700;
}

.az-why-title span {
  color: #e11d2e;
}

.az-why-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
}

.az-assurance-title {
  font-size: 22px;
  font-weight: 700;
  color:#4a4a4a;
}

.az-assurance-sub {
  font-size: 14px;
  color: #666;
}

.az-card {
  background: #fff;
  border: 1px solid #dce8f6;
  border-radius: 14px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.az-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.az-card-icon {
  width: 52px;
  height: 52px;
  background: #eef4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 22px;
  color: #e11d2e;
}

.az-card h6 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color:#4a4a4a;
}
.az-section-title, .az-section-desc, .az-quality-card.az-equal-card h5, .az-quality-card.az-equal-card p {
    color: #4a4a4a;
}
.az-cta-section {
  background: #7e2f8e; /* exact purple tone */
  padding: 90px 0;
  color: #fff;
}

/* TITLE */
.az-cta-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

/* DESCRIPTION */
.az-cta-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  color: #ffffff;
  margin-top: 40px;
}

/* BUTTON */
.az-cta-btn {
  background: #111;
  color: #fff;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.az-cta-btn:hover {
  background: #000;
  color: #fff;
}

/* ARROW */
.az-cta-arrow {
  position: absolute;
  right: 60px;
  top: 60px;
  font-size: 90px;
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

/* WAVE EFFECT */
.az-cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: skewY(-2deg);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .az-cta-title {
    font-size: 42px;
    -webkit-text-stroke: 1.5px #ffffff;
  }

  .az-cta-arrow {
    display: none;
  }

  .az-cta-desc {
    margin-top: 24px;
  }
}
/* BASE CARD — SAME FOR ALL */
.az-quality-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid #e6ecf5;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* DEFAULT ACTIVE (BLUE CARD) */
.az-quality-card.is-active {
  background: #0b2fa3;
  color: #ffffff;
}

.az-quality-card.is-active p {
  color: #e0e6ff;
}

/* ICON */
.az-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eef3ff;
  color: #0b2fa3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  transition: background 0.35s ease, color 0.35s ease;
}

/* ICON ON ACTIVE */
.az-quality-card.is-active .az-icon-box {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* 🔥 HOVER — SAME AS ACTIVE */
.az-quality-card:hover {
  background: #0b2fa3;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(11, 47, 163, 0.25);
}

.az-quality-card:hover p {
  color: #e0e6ff;
}

.az-quality-card:hover .az-icon-box {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}


/* REVIEW */
.az-hero-review {
  font-size: 14px;
  color: #666;
}

.az-stars {
  color: #ff4d4f;
  margin: 0 6px;
}

.az-review-label {
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 6px;
}

/* TITLE */
.az-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
  color: #333;
}

/* DESC */
.az-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.az-hero-btn {
  background: #2ecc71;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* IMAGE GRID */
.az-hero-images {
  position: relative;
  width: 100%;
  height: 520px;
}

.az-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}



.az-img.small.top {
  width: 40%;
  height: 45%;
  left: 0;
  top: 0;
}

.az-img.small.bottom {
  width: 40%;
  height: 45%;
  left: 0;
  bottom: 0;
}

.az-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .az-hero-images {
    margin-top: 50px;
    height: auto;
  }

  .az-img {
    position: relative;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
  }
}
.az-hero-section{
    padding-top:100px;
}
/*--------------footer css like modal popup back to top--------*/
  
/* ================= MODAL ================= */
.popup-modal .modal-content {
  background: transparent;
  border: 0;
}

.popup-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  filter: invert(1);
}

/* ================= STEP BAR ================= */
.popup-modal .step-bar {
  display: flex;
  align-items: center;
  padding: 20px 70px;
  /*background: rgba(0,0,0,0.7);*/
  color: #fff;
}

.popup-modal .step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.popup-modal .step-item.active {
  opacity: 1;
}

.popup-modal .step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.popup-modal .step-circle.active {
  background: #4CAF50;
}

.step-line {
  flex: 1;
  height: 2px;
  border-bottom: 2px dotted #ccc;
  margin: 0 15px;
}

/* ================= LEFT PANEL ================= */
/* Modal Content Wrapper */
.popup-modal .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: none;
}

/* Background Video */
.popup-modal .modal-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay (Readability) */
.popup-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Keep Content Above Video */
.popup-modal .modal-body,
.popup-modal .step-bar {
  position: relative;
  z-index: 2;
}
.btn-close.modal-close {
    z-index: 99;
}
.az-brand-clr{
    color:#328ddb;
}

.popup-modal .left-panel {
 
  color: #fff;
  padding: 80px 60px;
}
/*.popup-modal .modal-content{
     background:linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f");
  background-size: cover;
  background-position: center;
}*/
.popup-modal .left-panel h1 {
  font-size: 42px;
  margin: 15px 0;
  color:#fff;
}

.popup-modal .left-panel ul {
  list-style: none;
  padding: 0;
}

.popup-modal .left-panel ul li {
  margin-bottom: 10px;
}

.popup-modal .help-box {
  margin-top: 40px;
  background: rgba(255,255,255,.15);
  padding: 15px 25px;
  border-radius: 30px;
  display: inline-block;
}

/* ================= RIGHT PANEL ================= */
.popup-modal .right-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom:15px;
}
.eligibility-wrapper .popup-modal .form-card {
  width: 100%;
  /*max-width: 420px;*/
}
.popup-modal .form-card {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.popup-modal .form-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #328ddb;
}

.popup-modal .form-card p {
  font-size: 13px;
  color: #666;
}

/* ================= FORM ================= */
.form-step {
  display: none;
}

.popup-modal .form-step.active {
  display: block;
}

.popup-modal label {
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
  color: #555;
}

.popup-modal .form-control {
      font-size: 14px;
    line-height: 18px;
    height: 30px;
    padding: 0 6px;
}

.popup-modal .phone-group {
  display: flex;
}

.popup-modal .phone-group span {
  background: #f1f1f1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-right: 0;
  font-size: 14px;
}

.popup-modal .terms {
  font-size: 11px;
  text-align: center;
  margin-top: 12px;
  display: block;
  color: #1b1b1d;
}
.left-panel h5{
    color:#fff;
}
/* ================= MOBILE ================= */
@media(max-width: 991px) {
  .popup-modal .left-panel {
    display: none;
  }
}

.notes-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.notes-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1;
}

    .edu-left-bg {
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b');
  background-size: cover;
  background-position: center;
}
/*-----------services--------------------*/
html { scroll-behavior: smooth; /* enables smooth scrolling */ }
.aumsrvs-hero-section{


background-image: url(https://img.freepik.com/premium-vector/digital-technology-background-concept-with-technology-line-circuit-board-background-technology_322958-9888.jpg?w=2000);
background-size: cover;
}

.aum-primary-color{
    color:var(--primary);
}
.aumsrvs-form-heading {
color: var(--primary);
    position: absolute;
    top: 0rem;
    background: var(--primary);
    padding: 0.75rem;
    color: #fff !important;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    top: -21px;
    font-size: 1.255rem;
    box-shadow: -2px -6px 19px 4px #c9cfd1;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.aumsrvs-form-heading:after {

    position: absolute;
    left: 0px;
    content: "";
    width: 20px;
    height: 23px;
    left: -24px;
    top: 0px;

    border-left: 12px solid #5c341600;
    border-right: 12px solid #0a85bb;
    border-bottom: 12px solid #0a85bb;
    border-top: 12px solid #00800000;
    rotate: 1deg;
}
h4.mb-4.px-0.aumsrvs-form-heading::before {

    position: absolute;

    content: "";
    width: 20px;
    height: 23px;
    right: -24px;
    top: 0px;
  
    border-left: 12px solid #5c341600;
    border-right: 12px solid #0a85bb;
    border-bottom: 12px solid #0a85bb;
    border-top: 12px solid #00800000;
    rotate: 90deg;
}



.aumsrvs-hero-section-wrapper-from {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem !important;
    border-bottom-color: red;
    border-bottom: 6px solid var(--primary);
    position: relative;
}
.aumsrvs-hero-section .AZ-badge{
    background-color: var(--primary);
    color: #fff;
}
.aumservs-label-group-wrapper {

    position: relative;
    margin: 1.85rem 0rem;
}
.aumservs-label-group-wrapper label {
    position: absolute;
    left: 2%;
    top: -12px;
    background: white;
    font-size: 12px;
    padding: 0px 10px;
    color: var(--primary) !important;
    
}
.aumsrvs-form-heading{
    color:var(--primary)
}
.aumsrvs-hero-section-wrapper-from input::placeholder{
color: #a3a1a1
}


.AZ-btn-primary.aum-primary {
    background: var(--primary);
}


.card.aum-service-card {
    border: 0px;
}
.aumsrvs-cta-action-section {
    background-image: url(https://img.freepik.com/premium-photo/abstract-123-background-wallpaper_792836-204373.jpg?w=2000);
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;


}

.aumsrvs-cta-action-section:before {
position: absolute;
left: 0px;
top: 0px;
content: "";
width: 100%; 
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;

}
.aumsrvs-cta-action-section .row{
    position: relative;
    z-index: 2;
}
a.AZ-btn-primary.AZ-btn-white--outline {
    background: #fffff000;
    color: #ffff;
    border: 1px solid;
}

.sticky-section {
    position: -webkit-sticky;
    position: sticky;
    top: 7.375rem;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}

.aumsrcs-side-nav .nav-link{
    color:var(--primary) !important;
    padding: 1rem 0.5rem;
    
}

i.technologies-sprite-icon.ios {
    background-position: -5px -5px;
}

i.technologies-sprite-icon.android {
    background-position: -5px -5px;
}
i.technologies-sprite-icon.react-native {
    background-position: -5px -5px;
}
i.technologies-sprite-icon.react-flutter  {
    background-position: -5px -5px;
}
i.technologies-sprite-icon.xamrin   {
    background-position: -5px -5px;
}

.technologies-sprite-icon {
    background: url(https://www.peerbits.com/static/technologies-sprite-icon-477070b49cfb58b193c24394fb3bb972.webp) no-repeat;
    background-color: #eee;
    border: 2px solid #eee;
    border-radius: 100%;
    filter: grayscale(1);
    transition: all .3s ease-in-out;
}
.icon-size-60 {
    height: 60px;
    min-width: 60px;
    width: 60px;
    display: inline-block;
}

a.text-body.aumservice-force-hover.d-inline-block {
    text-decoration: none;
}

li.nav-item.aumsrcs-side-nav a.nav-link.js-active {
    background: #62cfff38;
    border-left: 0px solid var(--primary);
    position: relative;
}
li.nav-item.aumsrcs-side-nav a.nav-link.js-active:before {
    position: absolute;
    left: -10px;
    background: var(--primary);
    content: "";
    top: 0px;
    height: 100%;
    width: 10px;
}

.nav-link.js-active {
  background-color: #f0f0f0; /* highlight color */
  border-radius: 4px;
}


.nav-link.js-active {
  background-color: #f0f0f0;
  border-radius: 4px;
}

.dark-box-2.js-active {
  position: relative;
}
.dark-box-2.js-active:before {
 position: absolute;
    left: -23px;
    top: 0;
    background: var(--primary);
    height: 99%;
    width: 5px;
    content: "";
}

.aumsrvs-cta-action-section-expert {
    background-image: url(https://img.freepik.com/free-photo/modern-tech-background-with-low-poly-plexus_1048-14278.jpg?t=st=1771174884~exp=1771178484~hmac=2c69abfe74477ea8fe0fb6a5d58d565d0130e5fbcd44c033443c978a3c61399b&w=2000);
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;


}.aumsrvs-cta-action-section-expert:before {
position: absolute;
left: 0px;
top: 0px;
content: "";
width: 100%; 
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;

}
.aumsrvs-cta-action-section-expert .container-lg {
    position: relative;
    z-index: 2;
}   
