@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* poppins  */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #0dd620;
    --secondary:#ff0000;
    --white: #fff;
    --black: #000;
}

body {
   font-size: 17px;
	line-height: 30px;
	font-weight: 400;
	-moz-osx-font-smoothing: grayscale;
	word-break: break-word;
	-webkit-font-smoothing: antialiased;
	font-family: "Inter", sans-serif;
	margin: 0;
	overflow-x: hidden;
	background: #eee;;
}
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="date"], textarea, select, label {
    color: #fff;
    font-size: 14px;
    line-height: normal;
    width: 100%;
    outline: 0;
    font-family: "Poppins", sans-serif;
    /* border: 1px solid #c1c1c17d; */
    margin: 0px 0 0px;
    border-radius: 6px;
    padding: 0px;
    font-weight: 400;
    letter-spacing: .5px;
    background: #fdfdfd00;
}
option {
    color: #000 !important;
}
::placeholder {
  color: #000;
  font-weight:400;
}

select, input[type="date"] {
    padding: 8px 17px;
}
input[type="submit"] {
    color: var(--black);
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    font-size: 14.5px;
    border: 0;
    outline: none;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 13px 20px;
    letter-spacing: 1px;
    border-radius: 2px;
    line-height: normal;
    width: 100%;
}
input[type="submit"]:hover {
    background: var(--primary);
    color: var(--black);
    transition: 0.8s;
}

textarea {
    height: 100px;
    margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    font-family: "Barlow", sans-serif;
    color: #050A15;
    font-weight: 500;
    text-transform: inherit;
    line-height: normal;
}

h1 {
    font-size: 28px
}

h2 {
    font-size: 24px
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Poppins", sans-serif;
    color: #000000d1;
    font-size: 14.7px;
    line-height: 28px;
    font-weight: 400;
}

ul,
li,
a {
    list-style-type: none;
    font-family: "Poppins", sans-serif;
    color: #222;
    line-height: 24px;
    font-size: 15px;
}

a:hover {
    transition: 0.8s;
    text-decoration: none;
}


/* Css By Lopa */

/* Header */

a.logo img {
    width: 150px;
	box-shadow: none;
}

/* New Slider */

#main {
  display: flex;
  height: 100vh;
	z-index:0 !important;
	position:relative !important;
 



  .part {
    flex: 1;

    .section {
      width: 100%;
      height: 100vh;
      position: relative;
      overflow: hidden;
	  z-index:0 !important;

      img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        left: var(--x);
        pointer-events: none;
      }
    }
  }
}



.buttons {
  position: absolute;
/*   right: 25px; */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;

  button {
    border: none;
    background-size: contain;
    background: url("data:image/svg+xml,%3Csvg width='10' height='29' viewBox='0 0 10 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0V27L1 17.4857' stroke='white' stroke-width='2' /%3E%3C/svg%3E%0A") no-repeat;
    background-position: center;
    width: 10px;
    height: 30px;
    display: block;
    margin: 20px 0;
    padding: 0 15px;
    transition-duration: .6s;

    &.next {
      transform: scaleY(-1);
    }

    &.prev:active {
      transform: translateY(8px);
    }

    &.next:active {
      transform: scaleY(-1) translateY(8px);
    }
  }
}

#main h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 52px;
    font-weight: 700;

}

span.gradient-text {
    background: linear-gradient(135deg, #ff4d6d, #ff6128, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.main_content {
   width: 64%;
    position: absolute;
    top: 59%;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    z-index: 1;
    font-size: 20px;

  p {
    margin: .5em auto;
	  color:#fff;
	  font-size:16px;
  }

  kbd {
    width: 15px;
    height: 15px;
    border: 1px solid white;
    display: inline-block;
    border-radius: 3px;
    font-size: .9em;
    vertical-align: text-top;
  }

  a {
    color: rgba(227, 227, 227, 0.78);
    text-decoration: none;
    border-bottom: 1px solid currentColor;

    &:hover {
      padding-bottom: 1px;
    }
  }
}

/* Slider Section */


/* About Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    z-index: 0 !important;
}


/* Keep content above the image */
.hero-section > * {
    position: relative;
    z-index: 1;
}

/* Slide animation */
@keyframes heroSlideLeft {
    0% {
        transform: translateX(-150px);
       
    }
    100% {
        transform: translateX(0);
        
    }
}



.hero-section h2 .highlight {
  position: relative;
  color: #000;
}

.hero-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  overflow: hidden;
}

/* Highlight word */
.hero-heading span {
  background: linear-gradient(135deg, #de6926, #ff8a3d, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animation */
.hero-heading {
  animation: headingReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes headingReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 0.12em;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
    filter: blur(0);
  }
}


.hero-section p {
    font-size: 16px;
    line-height: 28px;
    color: #000 !important;
}
.hero-section_two p {
    font-size: 16px;
    line-height: 28px;
    color: #000 !important;
}

.circle-arrow {
    transform: translate(-30%, -50%);
}
img.abt-image.shadow-lg {
    border-top-left-radius: 38%;
    border-bottom-left-radius: 38%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 357px;
    width: 100%;
    object-fit: cover;
}
.hero-section .col-lg-6.mb-4.mb-md-0 {
    padding: 0% 0% 0% 5%;
}
.hero-section  .conatainer {
    padding: 0px 22px 0px 0px;
}
.circle-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-37%,-50%);
}

img.arrow-img {
    box-shadow: none;
}
/* Rotate the image continuously */
.circle-arrow .arrow-img {
    width: 164px;
    height: 164px;
    display: block;
    animation: rotate360 8s linear infinite;
    box-shadow: none !important;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Button */

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 13rem;
  height: 3.2rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  font-family: inherit;
}

/* Circle */
.cta-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 3.2rem;
    height: 100%;
    border: 2px solid #000;
    border-radius: 50px;
    transition: width 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
    background: linear-gradient(45deg, #dc6227, #ff5468);
}

/* Arrow */
.cta-arrow {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  width: 1.3rem;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.cta-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

/* Text */
.cta-text {
  position: relative;
  margin-left: 3.8rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

/* Hover */
.cta-btn:hover .cta-circle {
  width: 100%;
}

.cta-btn:hover .cta-arrow {
  transform: translate(1.4rem, -50%);
}

.cta-btn:hover .cta-text {
  transform: translateX(0.4rem);
}
article.project-card .cta-text {
    color: #fff !important;
}
/* Hero section 2 */


.hero-section_two {
    background-color: #f8f9fa;
    padding: 0px 0px 40px;
    position: relative;
    overflow: hidden;
    z-index: 0 !important;
}

/* .hero-section_two::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://algopagedev.com/project/avl-concept.com/wp-content/uploads/2026/01/38266841_jema_lh_058_09-removebg-preview-1-2-scaled.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 158px;
    opacity: 1;
    z-index: 0;
    transform: translateX(120px);
    animation: slideFromRight 1.6s ease-out forwards;
} */

/* Animation */
@keyframes slideFromRight {
    from {
        transform: translateX(120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Keep content above the image */
.hero-section_two > * {
    position: relative;
    z-index: 1;
}

.hero-section_two img.abt-image.shadow-lg {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 38%;
    border-bottom-right-radius: 38%;
    height: 357px;
    width: 100%;
}
.hero-section_two .circle-arrow {
    position: absolute;
    top: 50%;
    transform: translate(-37%,-50%);
    /* right: 128px; */
    left: 87%;
}
.hero-section_two  .col-lg-6.mb-4.mb-md-0 {
    padding: 0% 0% 0% 5%;
}
.hero-section_two   .conatainer {
    padding: 0px 32px 0px 0px;
}
.av-solutions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.av-solutions li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #000000b0;
}

/* Arrow using ::before */
.av-solutions li::before {
  content: '→';            /* arrow character */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  color: #de6926;          /* arrow color */
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Hover effect */
.av-solutions li:hover::before {
  transform: translateY(-50%) translateX(8px); /* arrow moves right */
  color: #000;                                  /* optional color change */
}

.av-solutions li:hover {
  color: #000;                                  /* text color change */
}



/*  Testing */


:root {
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 100px;
  --open: 100rem;
  --accent: #ff6b35;
}

.workflow-section {
    background: #07090d;
    color: #fff;
    padding: 40px 20px 0px !important;
    position: relative;
    z-index: 0 !important;
}
.workflow-section .head {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.workflow-section .head h2 {
    /* font: 400 1.5rem/1.2 Inter, sans-serif; */
    color: #fff !important;
    font-size: 44px !important;
    text-align: center !important;
    margin: 0 auto !important;
}

@media (min-width: 1024px) {
  .workflow-section .head h2 {
    font-size: 2.25rem;
  }
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.nav-btn:hover {
  background: var(--accent);
}
.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.slider {
  max-width: 1400px;
  margin: 40px auto 0;
  overflow: hidden;
}

.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}
.track::-webkit-scrollbar {
  display: none;
}

/* Card Styles */
.project-card {
    position: relative;
    /* flex: 0 0 var(--closed); */
    height: 26rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: flex-basis var(--speed), transform var(--speed);
    scroll-snap-align: center;
/*     width: 100%; */
}

.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.project-card__bg {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(75%);
    transition: filter 0.3s, transform var(--speed);
}
.project-card:hover .project-card__bg {
  filter: brightness(0.9) saturate(100%);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: transform 0.4s ease, font-size 0.4s ease, opacity 0.4s ease;
}

.project-card__thumb,
.project-card__desc,
.project-card__btn {
  display: none;
  transition: all 0.4s ease;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
/*   padding: 1.2rem 2rem; */
  gap: 1.1rem;
}

.project-card[active] .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 19px;
}

.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
  display: block;
}

.project-card__thumb {
  width: 133px;
  height: 269px;
  border-radius: 0.45rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}
.project-card__thumb:hover {
  transform: scale(1.05);
}

.project-card__desc {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 20rem;
}

.project-card__btn {
  padding: 0.55rem 1.3rem;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transform: translateX(30px);
  opacity: 0;
}
.project-card[active] .project-card__btn {
  transform: translateX(0);
  opacity: 1;
}
.project-card__btn:hover {
  background: #ff824f;
}

/* Dots */
.dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 20px 0;
}
.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.dot.active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent);
}

/* Responsive */
@media (max-width: 767px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }



  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
  }

  .dots {
    display: none;
  }
}
/* Open card on hover (desktop only) */
/* @media (hover: hover) {
  .project-card:hover {
    flex-basis: var(--open);
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  }

  .project-card:hover .project-card__content {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
  }

  .project-card:hover .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 19px;
  }

  .project-card:hover .project-card__thumb,
  .project-card:hover .project-card__desc,
  .project-card:hover .project-card__btn {
    display: block;
  }

  .project-card:hover .project-card__btn {
    transform: translateX(0);
    opacity: 1;
  }
} */

.project-card:hover {
    flex-basis: var(--open);
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.project-card:hover .project-card__content {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
}

.project-card:hover .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 19px;
}

.project-card:hover .project-card__thumb,
.project-card:hover .project-card__desc,
.project-card:hover .project-card__btn {
    display: block;
}

.project-card:hover .project-card__btn {
    transform: translateX(0);
    opacity: 1;
}




/*Contact  */

/* .contact-section {
  position: relative;
  background: url('https://algopagedev.com/project/avl-concept.com/wp-content/uploads/2026/01/15568.jpg') center/cover no-repeat;
  
  color: #fff;
} */
.contact-section {
    position: relative;
    background: url('https://avl-concept.com/wp-content/uploads/2026/01/15568.jpg')
                center/cover no-repeat;
    color: #fff;
    overflow: hidden; /* important */
}

/* Decorative top-right image */
.contact-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 541px;
    height: 400px;
    background: url('https://avl-concept.com/wp-content/uploads/2026/01/2149707016-removebg-preview.png')
                no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}


.contact-overlay {
    background: linear-gradient(rgb(5 7 15 / 22%), rgb(5 7 15 / 27%));
}
.contact-section h2 {
    color: #fff;
}

.contact-visual {
  position: relative;
  padding: 20px;
}

.contact-visual img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.visual-caption {
  position: absolute;
  bottom: 30px;
  left: 40px;
  right: 40px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-radius: 14px;
}

.visual-caption h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}

.visual-caption p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.contact-form-wrap {
    background: rgb(255 255 255 / 14%);
    backdrop-filter: blur(6px);
    padding: 9px 35px;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

.contact-form-wrap h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.form-sub {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 25px;
}

/* Contact Form 7 Styling */
.contact-form-wrap input, .contact-form-wrap textarea, .contact-form-wrap select {
    width: 100%;
    background: #0000005c;
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: #aaa;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.contact-form-wrap input[type="submit"] {
  background: #ff6b35;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-wrap input[type="submit"]:hover {
  background: #ff824f;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-visual {
    margin-bottom: 40px;
  }

  .contact-form-wrap {
    padding: 35px 25px;
  }
#rmp-container-334 {
    position: fixed;
    top: 0;
    margin: 0;
    transition: transform 0.5s;
    overflow: visible !important;
    display: block;
    width: 75%;
    max-width: 350px;
    min-width: 320px;
    background-color: #1d4354;
    background-image: url("");
    left: 0;
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    height: 100vh !important;
}
}

/* Work flow */

/* Section */
.workflow {
  background: #0b0b0b24;
  color: #fff;
}

/* Header */
.hero-heading {
    font-size: 44px;
    font-weight: 800;
}

.hero-heading span {
  color: #ff9b17;
}

.workflow-subtitle {
    font-size: 16px;
    color: #060606;
    line-height: 28px;
}
/* Card */
/* Outer card (GSAP only) */
.workflow-step {
  position: relative;
  height: 260px;
  opacity: 0;
  transform: translateY(40px);
}

/* Flip container */


.workflow-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(175deg, #ed6e3de0, #7b271e);
    border: 2px solid rgb(253 252 252 / 97%);
    border-radius: 20%;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(.4,.2,.2,1);
    perspective: 1200px;
}

/* Hover flip */
.workflow-step:hover .workflow-card {
  transform: rotateY(180deg);
}

/* Faces */
.workflow-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 20%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Front */
/* .workflow-front img {
  max-width: 75%;
  max-height: 75%;
	box-shadow:none !important;
} */

.workflow-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(43deg, #092ccf, #ff9b17b5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-icon img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    box-shadow: none !important;
}


/* Back */
.workflow-back {
  transform: rotateY(180deg);
  background: #0b0b0b;
  text-align: center;
}

.workflow-back h3 {
  color: #ff9b17;
  margin-bottom: 10px;
}

.workflow-back p {
    font-size: 16px;
    color: #cfcfcf;
    line-height: 28px;
}
/* Step number */
.step-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    height: 48px;
    width: 48px;
    background: #000000;
    border: 2px solid #ffffffa3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffae42;
    font-weight: 700;
    z-index: 10;
}



/* Proof section */
.proof-section {
    background: #0b0b0be0;
    padding: 40px 0;
    color: #fff;
    overflow: hidden;
}

/* Image */
.proof-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.proof-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transform: scale(1.1);
}

/* Content */
.proof-title {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 30px;
}

.proof-section h2 {
    color: #fff;
}

.proof-list {
    list-style: none;
    padding: 0;
    margin: 26px 0px 0px 0px;
}

.proof-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(40px);
}

.proof-icon {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9b17, #d02b29) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    flex-shrink: 0;
}

.proof-list strong {
    font-size: 20px;
    color: #ff9b17;
}

.proof-list p {
    margin: 6px 0 0;
    font-size: 16px;
    color: #cfcfcf;
    line-height: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .proof-title {
    font-size: 36px;
  }
}


/* Footer */

.site-footer {
    position: relative;
    color: #cfd3da;
    padding: 90px 0 25px;
    font-size: 15px;
    overflow: hidden;
    /* background: linear-gradient(266deg, #ff6b35d4, #220225e0); */
    background-size: 400% 400%;
    /* animation: footerGradientMove 22s ease infinite; */
    z-index: 0;
    background: #000;
    border-top: 1px solid;
}

@keyframes djVibrate {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    15% { transform: translate(-1px, 1px) scale(1.02) rotate(-0.4deg); }
    30% { transform: translate(1px, -1px) scale(0.99) rotate(0.4deg); }
    45% { transform: translate(-1px, 0) scale(1.03) rotate(-0.3deg); }
    60% { transform: translate(1px, 1px) scale(1) rotate(0.3deg); }
    75% { transform: translate(-1px, -1px) scale(1.01) rotate(-0.2deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* Ensure content above background/images */
.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Footer Logo & text styling */
.footer-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    transition: transform 0.3s ease;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
}

.footer-logo img:hover {
  transform: translateY(-2px);
}

/* Footer columns */
.site-footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
}
.site-footer h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #ff6b35;
  display: block;
  margin-top: 6px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    position: relative; 
    padding-left: 25px; 
}

/* Add music icon before each list item */
.footer-col ul li::before {
    content: "🎵";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    background: linear-gradient(45deg, #ff9b17, #ff35b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-col ul li a {
  color: #cfd3da;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ff6b35;
  padding-left: 6px;
}
.footer-col p a {
  color: #cfd3da;
  text-decoration: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    position: relative;
    padding-left: 28px; /* space for icon */
    font-size: 15px;
    color: #cfd3da;
}

.contact-item a {
    color: #cfd3da;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b35;
}

/* Icons before each type */
.contact-item.address::before {
    content: "📍"; /* location pin */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #ff9b17;
}

.contact-item.phone::before {
    content: "📞"; /* phone */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #ff9b17;
}

.contact-item.email::before {
    content: "✉️"; /* envelope */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #ff9b17;
}

footer.site-footer p {
    color: #cfd3da;
}
.footer-col p a:hover {
  color: #ff6b35;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #9aa0aa;
}

/* ===== Floating Music Icons ===== */
/* Floating music icons container */
.floating-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2; /* ABOVE footer background & images */
    overflow: visible; /* ensure icons can move outside container */
}

/* Individual music icons */
.music-icon {
    position: absolute;
    font-size: 18px;
    color: #ff9b17;
    bottom: 0; /* start at bottom of container */
    animation: floatUp linear infinite;
    opacity: 0.8;
}

/* Randomize positions & speed */
.music-icon:nth-child(1) { left: 5%; animation-duration: 6s; animation-delay: 0s; }
.music-icon:nth-child(2) { left: 15%; animation-duration: 5s; animation-delay: 1s; }
.music-icon:nth-child(3) { left: 25%; animation-duration: 7s; animation-delay: 0.5s; }
.music-icon:nth-child(4) { left: 35%; animation-duration: 6.5s; animation-delay: 1.2s; }
.music-icon:nth-child(5) { left: 50%; animation-duration: 5.5s; animation-delay: 0.8s; }
.music-icon:nth-child(6) { left: 70%; animation-duration: 6.2s; animation-delay: 0.3s; }
.music-icon:nth-child(7) { left: 85%; animation-duration: 7s; animation-delay: 1.5s; }

/* Floating animation */
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(1);
        opacity: 0;
    }
}


/* ===============================
   WhatsApp Floating Icon (Left)
================================ */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 30px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* Pulse animation */
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===============================
   Back To Top Button (Right)
================================ */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff9b17);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* Request btn */
.feedback-btn {
    position: fixed;
    width: 173px;
    height: 47px;
    background: linear-gradient(45deg, #1d124c 58%, #e47623);
    top: 50%;
    right: -63px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    transform: rotate(270deg) translateY(5%);
    transform-origin: center;
    z-index: 2147483647;
    pointer-events: auto;
}
.feedback-btn:hover {
    background:linear-gradient(45deg, var(--secondary), var(--primary));
}
.feedback-txt {
    position: absolute;
    left: 18px;
    top: 10px;
    color: #fff;
    transition: 0.2s ease-out;
}
 .feedback-wrap {
    position: fixed;
    top: 50%;
    right: -63px;
    transform: translateY(-50%) rotate(270deg);
    transform-origin: center;
    z-index: 2147483647;
    pointer-events: auto;
	 isolation: isolate;
}



.feedback-btn {
    width: 173px;
    height: 47px;
    background: linear-gradient(45deg, #1d124c 58%, #e47623);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
}

.feedback-btn:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.feedback-txt {
    position: absolute;
    left: 18px;
    top: 10px;
    color: #fff;
    pointer-events: none;
} 

/* Breadcrumb section */


.breadcrumb-section {
    position: relative !important;
    height: 65vh !important;
    padding: 154px 0 !important;
    overflow: hidden !important;
    background-image: url('https://avl-concept.com/wp-content/uploads/2026/01/page-header-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
}
.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 38%);
    backdrop-filter: blur(3px);
    z-index: 1;
}
.breadcrumb-section .container {
    position: relative; 
    z-index: 2;         
}

.breadcrumb-section h1 {
    position: relative; 
    z-index: 10;       
    color: #fff;
    font-size: 30px;
}
.breadcrumb-section  h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffff;
}


@keyframes breadcrumbGlow {
  0% { opacity: .4; }
  100% { opacity: .8; }
}

.breadcrumb-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}


.breadcrumb-nav {
  color: #fff;
  font-size: 15px;
}

.breadcrumb-nav a {
    color: #db5b26;
    text-decoration: none;
    position: relative;
    padding: 0 6px;
    transition: color .3s ease;
}

.breadcrumb-content {
    position: relative;  
    z-index: 10;         
}

.breadcrumb-content h1 {
    color: #fff !important;      
    position: relative;
    z-index: 11;                 
    font-size: 30px;
    margin: 0 0 15px 0;
}
.breadcrumb-nav a:hover {
  color: #fff;
}

/* separator */
.breadcrumb-nav span.separator {
  margin: 0 8px;
  color: rgba(255,255,255,.5);
}

/* current page */
.breadcrumb-nav .breadcrumb_last {
  color: #fff;
  font-weight: 600;
}

/* animated underline */
.breadcrumb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffcc00;
  transition: width .3s ease;
}

.breadcrumb-nav a:hover::after {
  width: 100%;
}


/* Increment  */

.stats-section.py-5 {
    background: linear-gradient(45deg, #c5bebe, #07327100) no-repeat center center / cover, url('https://avl-concept.com/wp-content/uploads/2026/01/14360.jpg') no-repeat center center / cover !important;
    background-blend-mode: overlay !important;
    position: relative;
    color: #fff !important;
}
.stats-section h2.hero-heading {
    text-align: center;
    margin-bottom: 28px;
}

.stats-main-gif {
  max-width: 100%;
  height: auto;
}

.stat-card {
    background: linear-gradient(45deg, #d87d24ad, #d22e2957);
    padding: 20px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 82px;
    margin-bottom: 15px;
    /* background: var(--primary); */
    padding: 7px;
    background: #0b0b35;
    border-radius: 30%;
    border: 1px solid #ffff;
}

.stat-number {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}

.suffix {
  font-size: 26px;
}

.stat-title {
    font-size: 18px;
    color: #040404;
    margin-top: 0px;
}


/* Team Section */

.team-section h2.hero-heading {
    text-align: center;
    margin-bottom: 30px;
}
.team-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100% !important;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-photo {
    width: 152px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    transition: border-radius 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-photo {
    border-radius: 20%;
    width: 200px;
    height: 180px;
}
.team-card h5 {
    font-weight: 600;
    font-size: 26px;
    color: #0b0b35;
}

.team-card .designation {
    font-size: 15px;
    color: #000000;
}

.team-card .social-links a {
    margin: 0 7px;
    color: #040404;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px;
    background: #0d6efd4a;
    border-radius: 50%;
}

.team-card .social-links a:hover {
    color: #007bff;
}

/* Careers  Page */
/* Hero */
.careers-hero {
    padding: 40px 0 0;
    background: #e9eaed;
    color: #fff;
}

.hero-content {
  font-size: 18px;
  line-height: 1.8;
}

.careers-hero img {
    max-width: 80%;
    height: auto;
    /* border-radius: 12px; */
    box-shadow: none !important;
}
.careers-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 50px 0;
  }
  .hero-content {
    font-size: 16px;
  }
  .careers-hero img {
    margin-top: 30px;
  }
}


/* Section Titles */
.culture-benefits-section {
  background: #0c0f1a;
  color: #fff;
}
.culture-benefits-section h2.hero-heading {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}


/* CARD */
.benefit-card {
    display: flex;
    gap: 20px;
    padding: 17px;
    border-radius: 16px;
    position: relative;
    background: #ffffff;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* GRADIENT BORDER */
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ICON */
.benefit-icon i {
    font-size: 42px;
    background: linear-gradient(135deg, #bd5d1a, #a725b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
    
}
/* Icon animation on hover */
.benefit-card:hover .benefit-icon i {
  transform: scale(1.2) rotate(5deg);
}



/* CARD HOVER */
.benefit-card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: #151a33;
}

/* CONTENT */
.benefit-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.benefit-content p {
  font-size: 15px;
  opacity: 0.85;
  transition: color 0.3s ease;
}

/* TEXT COLOR ON CARD HOVER */
.benefit-card:hover .benefit-content h4,
.benefit-card:hover .benefit-content p {
  color: #fff !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* Openings */
.current-openings {
  background: #fff;
  color: #fff;
}
.current-openings h2.hero-heading {
    text-align: center;
    margin-bottom: 37px;
}
.opening-card {
  background: #121735;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.08);
	height:100% !important;
}
.opening-card h4 {
    color: #fff !important;
    font-size: 24px;
}
.opening-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Apply link */
.apply-link {
  display: inline-block;
  margin-top: 12px;
  color: #00e5ff;
  font-weight: 600;
  text-decoration: none;
}

.apply-link:hover {
  text-decoration: underline;
}

/* Call icon */
.call-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -18px;
  right: -18px;
  animation: phoneShake 1.4s infinite;
}

.call-link i {
  font-size: 18px;
}

/* Vibration animation */
@keyframes phoneShake {
  0% { transform: rotate(0); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0); }
}

/* Internship note */
.internship-note {
  max-width: 800px;
  margin: auto;
  opacity: 0.85;
}

/* How to Apply */
.apply-cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0c0f1a, #141a33);
    position: relative;
}
.apply-cta-section h2.hero-heading {
    color: #fff;
}
.apply-cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 60px 40px;
  background: #11162d;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* Gradient border */
.apply-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 24px;
  background: linear-gradient(135deg, #00e5ff, #7c4dff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.apply-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.apply-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d1d5ff;
}

.apply-text a {
  color: #00e5ff;
  font-weight: 600;
  text-decoration: none;
}

.apply-text a:hover {
  text-decoration: underline;
}

.apply-text .note {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .apply-cta-box {
    padding: 40px 25px;
  }

  .apply-title {
    font-size: 28px;
  }

  .apply-text {
    font-size: 16px;
  }
}

/* Project and Testimonials */

.about-row {
  display: flex;
  align-items: center;
  padding: 20px 15px;
  border-bottom: 1px solid #ddd;
  position: relative;
  transition: background 0.3s;
}
.about-row .icon {
  flex: 0 0 50px;
}
.about-row .icon img {
    width: 75px;
    background: #050525;
    border-radius: 20%;
    border: 3px solid #fff;
}
/* .about-row .content {
  flex: 1;
  margin-left: 15px;
} */
.about-row .content h5 {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 24px;

    background: linear-gradient(90deg, #db5b26, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* optional for Firefox */
    background-clip: text;
    color: transparent;
}

.about-row .content p {
    margin: 17px 0;
    color: #000000;
    font-size: 15px;
}
/* .about-row .action {
  flex: 0 0 auto;
} */
.about-row .action button {
  padding: 6px 15px;
  border: 1px solid #007bff;
  background: #fff;
  color: #007bff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.about-row .action button:hover {
  background: #007bff;
  color: #fff;
}
.about-row .content.d-flex.flex-column {
    display: flex !important;
    flex-direction: row !important;
    padding: 0px 0 0 30px !important;
}
.about-row .hover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 1 !important;
    pointer-events: none;
    z-index: 10;
}
.about-row:hover .hover-image {
  transform: translate(-50%, -50%) scale(1); /* scale up on hover */
  opacity: 1;
}
.about-row:hover .hover-image {
  opacity: 0.2;
}
 
/* Popup */
.popup-modal {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 9999;
}
.popup-modal.active {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.4s ease;
}
.popup-modal.active .popup-content {
    transform: translateY(12px);
}
h3.popup-title {
    color: var(--primary);
}
.popup-content .close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.popup-content img {
    max-width: 68%;
    margin: 15px 0;
    border-radius: 8px;
}

/* Contact Page */

.contact-page-form {
    background: #000000c7;
    padding: 30px;
}

.contact-page-form select {
    color: #000 !important;
    /* margin-bottom: 3px; */
    margin-top: 1px;
    border: 1px solid #fbfbfb;
    height: 49px;
}
iframe {
    border: 0;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #80808030;
}

.contact-details-box {
    background: #fff;
    box-shadow: 0 0 10px 0 #80808040;
    padding: 20px 40px;
    border-radius: 10px;
    border: 1px dashed var(--yellow);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-details-box h2 {
    font-size: 26px !important;
    font-weight: 600;
}

.contact-details-box span{
	color: #000;
}

.box-inner-contact {
    display: flex;
    align-items: center;
}
.contact-details-box i {
    background: #d89e6863;
    height: 40px;
    width: 40px;
	padding: 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d3352a;
    margin-right: 10px;
    font-size: 22px;
}
.contact-details {
    background: url(https://avl-concept.com/wp-content/uploads/2026/02/contact-box-bg.png) #b35126;
    padding: 70px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.contact-details-box a{
	color: #000;	
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    min-height: 50px;
    padding-left: 20px;
    border: 1px solid #c7c7c7;
    border-radius: 5px;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    min-height: 50px;
    padding-left: 20px;
    padding-top: 20px;
    border: 1px solid #c7c7c7;
    border-radius: 5px;
}
input[type="submit"] {
    color: #fff;
    background: #ff7c2b;
    text-transform: uppercase;
    border: none;
    font-size: 14.5px;
    border: 1px solid white;
    border-radius: 10px !important;
    outline: none;
    font-weight: 400;
    padding: 13px 20px;
    letter-spacing: 1px;
    border-radius: 2px;
    line-height: normal;
    width: 100%;
}
.contact-inner {
    padding: 40px 0px;
}
.map {
    padding: 20px;
}
.col-md-4.im-fd img {
    width: 100%;
    height: 492px;
}
input[type="submit"]:hover {
	background: #000;
	color: #fff;
}

/* Services */

.page-services {
  padding: 100px 0;
  background: #000;
}
.service-item {
  position: relative;
  height: 100%;
  padding: 40px 35px;
  background: linear-gradient(135deg, #de6926, #ff8a3d, #ff4d6d);
border: 1px solid rgb(251 248 246 / 22%);
  border-radius: 6px;
  transition: all 0.4s ease;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  pointer-events: none;
}
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgb(255 254 255 / 25%);
}
.service-item:hover::before {
  opacity: 0.8;
}
.icon-box {
  margin-bottom: 25px;
}
.icon-box i {
    font-size: 42px;
    color: #fbfbfb;
    text-shadow: 0 0 8px rgba(168, 85, 255, 0.6),
    0 0 20px rgba(168, 85, 255, 0.4);
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}
.service-item:hover .icon-box i {
  transform: scale(1.1);
  text-shadow:
    0 0 12px rgba(192, 132, 255, 0.9),
    0 0 30px rgba(168, 85, 255, 0.7);
}
.service-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-item-content h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 22px;
}
.service-item:hover h3 a {
  color: #000;
}
.service-item-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 25px;
}
.readmore-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-right: 18px;
}
.readmore-btn::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}
.service-item:hover .readmore-btn::after {
  transform: translateX(6px);
}
.page-services .col-lg-4 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .service-item {
    padding: 30px 25px;
  }
}

/* FAQs */

.faq-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT SIDE */
.faq-tag {
  color: #ff7e29;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.faq-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
	color: #fff;
}

.faq-left h2 span {
  color: #ff8a21;
}

.faq-left p {
  color: #cfc3d9;
  max-width: 420px;
}

/* RIGHT SIDE */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
}

.faq-question span {
  max-width: 90%;
}

.faq-question .icon {
  width: 22px;
  height: 22px;
  border: 2px solid #c400ff;
  border-radius: 50%;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: '';
  position: absolute;
  background: #c400ff;
}

.faq-question .icon::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .icon::after {
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .icon::after {
  display: none;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #cfc3d9;
  transition: max-height 0.4s ease;
  padding-right: 30px;
	  font-size: 18px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
	font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-left h2 {
    font-size: 36px;
  }
}

/* Testimonial section */
.testimonial-section {
    padding: 40px 0;
    background: #02021a;
    z-index: 0 !important;
}
.client-testimonial-section {
    padding: 40px 0px !important;
}
.client-testimonial-section .hero-heading {
    text-align: center !important;
    margin: 0 0 23px !important;
}

.testimonial-section h2.hero-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
p.testi-para {
    color: #fff;
    text-align: center;
    margin: -10px auto 27px;
    max-width: 973px;
    font-size: 16px;
}
.review_btn {
    color: #fff !important;
    display: flex;
    justify-content: center;
    margin: 26px 0px 0px;
}
.review_btn .cta-text {
    color: #fff;
    font-size: 12px;
}
.review_btn .cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 15rem;
    height: 3.2rem;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    overflow: hidden;
}
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease;
	z-index:0 !important;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}
.testimonial-image {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #eee;
}
.testimonial-rating {
  color: #f8b400;
  font-size: 18px;
  margin-top: 8px;
  letter-spacing: 2px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: #777;
}

/* Swiper spacing */
.testimonial-slider .swiper-slide {
  height: auto;
}

/* POSITION ARROWS */
.testimonial-slider {
  position: relative;
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  background: #151a33;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* Arrow icon color */
.testimonial-prev::after,
.testimonial-next::after {
  font-size: 16px !important;
  color: #fff;
}

/* Left & right positioning */
.testimonial-prev {
  left: -60px;
}

.testimonial-next {
  right: -60px;
}

/* Hover effect */
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #db5b26;
  transform: scale(1.1);
}

/* Mobile fix */
@media (max-width: 767px) {
  .testimonial-prev {
    left: 10px;
  }
  .testimonial-next {
    right: 10px;
  }
}

/* Promise Section  */
.promise-section {
    background: #02021a;
    padding: 80px 0;
}
.promise-section .hero-heading {
    color: #fff;
    margin: 0px 0px 32px;
}
.promise-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.promise-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b0b2c;
}

.promise-text {
    font-size: 16px;
    line-height: 1.8;
    color: #b1aeae;
    margin-bottom: 35px;
    font-style: italic;
}

.promise-wrapper .cta-text {
    color: #ffffff;
}

/* Project new section */
.project_sec {
  background: #f8fafc;
  padding: 80px 0;
}

.projects-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b0b2c;
  margin-bottom: 40px;
  text-align: center;
}

p.testi-paragraph {
    color: #000;
    text-align: center;
    margin: -10px auto 27px;
    max-width: 973px;
    font-size: 16px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Representative Project Card */
.rep-project-card {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
    height: 315px;
    overflow: hidden;
}

/* Gradient overlay */
.rep-project-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgb(209 106 44 / 97%), rgb(221 34 35 / 82%));
    border-radius: 16px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease;
    opacity: 0.9;
    filter: blur(12px);
    z-index: 1;
}

/* Hover effect: expand gradient */
.rep-project-card:hover::before {
    width: 250%;
    height: 250%;
    transform: translate(-50%, -50%) scale(1);
}

/* Keep content above overlay */
.rep-project-card * {
    position: relative;
    z-index: 2;
}

/* Hover box shadow + lift */
.rep-project-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 4px 37px rgb(0 0 0 / 13%) !important;
}

/* Icon style */
.project-icon {
    background: linear-gradient(45deg, #ad4201c7, #1c3ccf);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon image */
.project-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Text color change on hover */
.rep-project-card:hover p {
    color: #ffffff;
    transition: color 0.4s ease;
}

/* Card text */
.rep-project-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #05406e;
  margin-bottom: 12px;
}

.rep-project-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* Responsive */
@media(max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}


/* Why choose us */

/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-section {
  background: #fff;
  position: relative;
	z-index: 0;
}

/* Titles */
.section-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #7b5cff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b0b2c;
}

/* =========================
   CENTER IMAGE
========================= */
.choose-center-img img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* =========================
   FEATURE CARD
========================= */
.choose-item {
    background: #fff;
    padding: 13px 22px 13px 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    /* overflow: hidden; */
    transition: all 0.35s ease;
}

/* Right aligned card */
.choose-item.right {
    padding: 13px 24px 13px 21px;
    text-align: left;
}
/* Gradient hover layer */
.choose-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff635c, #fa853a);
    opacity: 0;
    transform: scale(0.6);
    border-radius: 50%;
    transition: all 0.45s ease;
    z-index: 0;
}

/* Hover animation */
.choose-item:hover::after {
  opacity: 1;
  transform: scale(1);
  border-radius: 12px;
}

/* Bring content above gradient */
.choose-item * {
  position: relative;
  z-index: 1;
}

/* =========================
   TEXT
========================= */
.choose-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0b0b2c;
  transition: color 0.35s ease;
}

.choose-item p {
    font-size: 16px;
    margin: 0;
    color: #323232;
    line-height: 28px;
    transition: color 0.35s ease;
}

/* Text color on hover */
.choose-item:hover h5,
.choose-item:hover p {
  color: #fff;
}

/* =========================
   ICON BOX
========================= */
.icon-bg {
    width: 56px;
    height: 60px;
    background: #0d0f56;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: 11px;
    font-size: 27px;
    /* border-radius: 0 50px 0 14px;  Remove old border-radius */
    z-index: 2;
    transition: all 0.35s ease;

    /* Clip-path polygon to mimic your shape */
    clip-path: polygon(
        0% 0%,       /* top-left */
        100% 0%,     /* top-right */
        100% 80%,    /* bottom-right */
        70% 100%,    /* bottom-middle */
        0% 100%      /* bottom-left */
    );
}


/* Icon 3D plate */
/* .icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #085ea7;
  height: 11px;
  border-radius: 21px 0 0 0;
  transform: translate(-53px, 0);
  z-index: -1;
  transition: all 0.35s ease;
} */

/* Icon hover merge effect */
.choose-item:hover .icon-box {
  background: #fff;
  color: #085c9f;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Icon plate hover blend */
.choose-item:hover .icon-box::before {
  background: rgba(255,255,255,0.35);
  transform: translate(-58px, 4px);
}

/* Right aligned icon */
.choose-item.right .icon-box {
  right: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .choose-item,
  .choose-item.right {
    padding: 25px 25px 25px 70px;
  }

  .choose-item.right .icon-box {
    right: auto;
    left: 15px;
  }

  .choose-center-img {
    margin: 40px 0;
  }
}


/* Pop up  */
.pum-theme-290, .pum-theme-default-theme {
    background-color: rgb(0 0 0) !important;
}

.pum-theme-290 .pum-container, .pum-theme-default-theme .pum-container {
    padding: 18px;
    border-radius: 5px;
    border: 1px none #fff;
    box-shadow: 1px 1px 20px 0px #ffffff8f;
    background: linear-gradient(58deg, #110a35, #a76438fa, #212529);
}
.pum-theme-290 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 0px;
    bottom: auto;
    top: 0px;
    padding: 10px;
    color: #ffffff;
    font-family: inherit;
    font-weight: 400;
    font-size: 10px;
    font-style: inherit;
    line-height: 30px;
    border: 1px none #ffffff;
    border-radius: 7px;
    box-shadow: 1px 1px 3px 0px rgba( 2, 2, 2, 0.23 );
    text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
    background-color: #000;
}
.feedback-btn{
	background: linear-gradient(135deg, #de6926, #ff8a3d, #ff4d6d) !important;
}
footer.site-footer p {
    color: #fff !important;
    font-weight: 400;
}
.pum-theme-290 .pum-title, .pum-theme-default-theme .pum-title{
	    font-weight: 600;
}

/* Tab section  */
.vmc-section {
    padding: 40px 0;
    background: url('https://avl-concept.com/wp-content/uploads/2026/01/vision-bg.avif') center center / cover no-repeat;
    position: relative;
}


.vmc-tabs {
    display: flex;
    gap: 58px;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #3858e947;
}

.vmc-tab {
    background: transparent;
    border: 2px solid #0960a1;
    padding: 7px 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0px 0px;
    background: linear-gradient(45deg, #ff5b62, #f47f35);
}

.vmc-tab.active,
.vmc-tab:hover {
  background: #000;
  color: #fff;
}

.vmc-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vmc-content-wrapper {
    border: 1px solid #000;
    padding: 57px 24px;
    border-radius: 20px;
    background: linear-gradient(45deg, #f5793c, #dc3545ad);
}
.vmc-content.active {
  display: grid;
}

.vmc-left h3 {
    margin-bottom: 15px;
    font-size: 40px;
    color: #040716;
    font-weight: 700;
}

.vmc-left p, .vmc-left ul {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.vmc-left ul {
  list-style: none;
  padding-left: 0;
}

.vmc-left ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
 color:#fff;
}

.vmc-left ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #070706;
    font-size: 16px;
}

.vmc-left ul {
  padding-left: 18px;
}

.vmc-right img {
  width: 100%;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .vmc-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* partner logos  */
.brand-marquee-section {
  padding: 60px 0;
  text-align: center;
}

.brand-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 35px;
}

/* Section Wrapper */
.brand-marquee-section {
  padding: 60px 0;
  text-align: center;
}

.brand-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 35px;
}

/* Marquee Container */
.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 60px;
}

/* Content Sliding Row */
.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
	 width: max-content;
  animation: marquee 80s linear infinite;
}

/* Images */
.marquee-content img {
  height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s;
}


.marquee-content img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
p.btm-text {
    padding: 35px 0 0;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, #b75518, #b95c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Tesimonial  */
strong.ti-rating.ti-rating-large {
    color: #fff !important;
}
.ti-widget.ti-goog .ti-header .ti-rating-text .nowrap {
    margin-bottom: 3px;
    color: #fff !important;
}
.ti-widget.ti-goog .ti-rating-text, .ti-widget.ti-goog .ti-rating-text strong:not(.ti-rating-large), .ti-widget.ti-goog .ti-rating-text strong a, .ti-widget.ti-goog .ti-rating-text strong span, .ti-widget.ti-goog .ti-rating-text span strong, .ti-widget.ti-goog .ti-rating-text span, .ti-widget.ti-goog .ti-footer, .ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large), .ti-widget.ti-goog .ti-footer span, .ti-widget.ti-goog .ti-footer strong a {
    font-size: 15px;
    color: #fff !important;
}



/* Animation Keyframe */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-content img {
    height: 40px;
  }
  
  .marquee-content {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .marquee-content img {
    height: 32px;
  }

  .brand-title {
    font-size: 20px;
  }
}


/*  About Us Founder Section  */
/* Section */
.founder-section {
    position: relative;
    background: url("https://avl-concept.com/wp-content/uploads/2026/02/concert-bg.jpeg") center/cover no-repeat;
    color: #dcdcdc;
    overflow: hidden;
}

/* Gradient Overlay */
.founder-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0), rgb(0 0 0 / 59%));
    z-index: 0;
}

/* Content above overlay */
.founder-section * {
    position: relative;
    z-index: 2;
}


/* Image Wrapper */
.founder-img-wrap {
  position: relative;
}

.founder-img-box {
    position: relative;
    overflow: hidden;
    display: flex;
}

/* Frame */
.founder-img-wrap::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 29%;
    right: 28px;
    /* bottom: 20px; */
    border: 2px solid #f9f6f6;
    border-radius: 50%;
    z-index: 0;
    height: 247px;
    width: 241px;
    background: linear-gradient(45deg, #d3224e52, #e9855d5c);
    box-shadow: 2px 2px 6px 6px #8b8b8b87;
}

/* Image */
.founder-img {
    object-fit: cover;
    border-radius: 50%;
    opacity: 1;
    z-index: 1;
    height: 238px;
    width: 238px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

/* Text */
.founder-section p {
  color: #c7c7c7;
  line-height: 1.7;
}

/* Title */
.fm-title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.fm-title::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #b8405e;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Signature */
.fm-signature {
  margin-top: 20px;
}

.fm-signature h4 { color: #fff; }
.fm-signature span {
    font-size: 20px;
    font-family: "Dancing Script", cursive;
    letter-spacing: -0.5px;
    margin-top: -10px;
    display: inline-block;
    background: linear-gradient(90deg, #e4b1ff, #f68137, #ff6fa3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ----------------------------- */
/* CSS-ONLY FADE ANIMATIONS      */
/* ----------------------------- */

.fade-left {
  animation: fadeLeft 1.3s ease-out forwards;
}

.fade-right {
  animation: fadeRight 1.3s ease-out forwards;
  animation-delay: 0.2s;
}

/* Keyframes */
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Future Vision in Home page */
.future-vision-section {
    position: relative;
    background: linear-gradient(45deg, #010516, #000000c7);
    color: #dcdcdc;
    overflow: hidden;
    z-index: 0;
}

/* Rotating Gradient Circle */
.future-vision-section::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -178px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(247 127 133), rgb(221 126 65 / 68%), #0000006b 70%);
    border-radius: 50%;
    filter: blur(11px);
    animation: rotateCircle 18s linear infinite;
    z-index: 0;
    opacity: 0.5;
}
@keyframes rotateCircle {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Content forward */
.future-vision-section * {
    position: relative;
    z-index: 2;
}

.future-vision-section h2 {
    color: #fff !important;
}

/* LEFT SIDE */
.fv-subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    color: #ff7e29;
    font-weight: 600;
    text-transform: uppercase;
}

.fv-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.fv-description {
    font-size: 16px;
    line-height: 28px;
    color: #c7c7c7;
}

/* RIGHT SIDE BOXES */
.fv-box {
  padding: 18px 25px;
  background: #141414;
  border-left: 3px solid #b8405e;
  border-radius: 6px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.fv-box:hover {
  background: #1d1d1d;
  transform: translateX(5px);
}

.fv-box h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 600;
}

.fv-box p {
    color: #bfbfbf;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
}

/* NOTE AT BOTTOM */
.fv-note {
    margin-top: 20px;
    color: #c4c4c4;
    font-size: 16px;
    line-height: 28px;
}

/* Future Focus */
.future-focus-section {
    position: relative;
    padding: 29px 0px !important;
    background: linear-gradient(234deg, #000000d1, #dd643e8a), url(https://avl-concept.com/wp-content/uploads/2026/02/177079956_4fce4452-1eb2-48a2-980a-12c66f4a50f8-scaled.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.focus-card {
  border-radius: 12px;
  transition: 0.3s ease;
  background: #fff;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.focus-icon.mb-3 {
    position: relative; /* required for before element */
    background: linear-gradient(45deg, #c9672a, #ff5e5f);
    padding: 10px;
    border-radius: 50%;
    width: 84px;
    height: 76px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Outer Circle (Ring) */
.focus-icon.mb-3::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    border: 2px solid #dd2324;
    opacity: 2.7;
}


.focus-icon i {
    color: #ffffff !important;
    font-size: 32px !important;
}

#rmp_menu_trigger-334 {
    width: 55px;
    height: 55px;
    position: fixed;
    top: 15px;
    border-radius: 5px;
    display: none;
    text-decoration: none;
    right: 5%;
    background: linear-gradient(45deg, #f5632d, #c51e1ef7) !important;
    transition: transform 0.5s, background-color 0.5s;
}

@media (max-width: 991px) {
	header .nav ul {
    display: none !important;
    list-style: none;
}
	div#rmp-menu-title-334 {
    display: none !important;
}
	div#rmp-menu-additional-content-334 {
    display: none !important;
}
	div#rmp-container-334 {
    padding: 30px 0px;
}
	#rmp-menu-wrap-334 .rmp-menu-current-item .rmp-menu-item-link {
    color: #fff;
    border-color: #ffffff;
    background: linear-gradient(45deg, #f15e2c, #c92925);
}
	div#rmp-search-box-334 {
    display: none !important;
}
	div#track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 39px;
}
	.row.g-4.workflow-steps {
    row-gap: 17px;
    justify-content: center;
    align-items: center;
}
	.contact-section::after {
    display:none !important;
}
#custom-popup .popup-content {
    max-height: 85vh;
    overflow-y: auto;
    top: 20px;
}
	img.abt-image.shadow-lg {
    height: 405px;
    width: 100%;
    object-fit: cover;
}
	.hero-section_two img.abt-image.shadow-lg {
    height: 407px;
    width: 100%;
		object-fit:cover;
}
	.hero-section_two  .col-lg-6.mb-4.mb-md-0 {
    padding: 2% 0% 0% 5%;
}
	.faq-section {
    padding: 60px 20px;
}
/* About us	 */
	section.founder-section.py-5 {
    height: 150vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}
	.fm-title::after {
    left: 44%;  
}
	.founder-img-wrap::before {
    left: 31%;
    width: 254px;
   
}
	.vmc-tab {
    padding: 7px 42px;
}
	.vmc-left ul {
    padding-left: 0px;
}
	.vmc-content {
    gap: 22px;
}
	.vmc-content-wrapper {
    padding: 10px 24px;
}
	.vmc-left ul li {
    padding-left: 25px;
    margin-bottom: 4px;
}
	.page-services .row {
    justify-content: center;
}
	p.testi-paragraph {
    margin: 0px auto 27px;
}
	.rep-project-card {
    height: 100% !important;

}
	.careers-hero img {
    max-width: 60%;
}
/* 	.row.align-items-center {
    display: flex;
    flex-direction: column-reverse;
} */
	.benefit-card {
    height: 100%;
}
	.contact-inner .col-md-8 {
    width: 100% !important;
}
	.contact-inner .col-md-4.im-fd {
    width: 100% !important;
}
	.contact-inner .row.align-items-center {
    row-gap: 20px;
}
	.contact-details .col-md-4 {
    width: 49%;
    justify-content: center;
    align-items: center;
    display: flow;
    margin: 0 auto;
}
	.contact-details .row {
    row-gap: 20px;
}
	.contact-details-box {
    padding: 20px 28px; 
}
}


@media (max-width: 767px) {
/* Contact us 	 */
	.contact-details .col-md-4 {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flow;
    margin: 0 auto;
}
/* careers	 */
	.careers-hero img {
    max-width: 85%;
    margin: 0 !important;
}
	.marquee-content img {
    width: 143px !important;
}
	.founder-img-wrap::before {
    left: 25%;
    width: 254px;
}
	section.founder-section.py-5 {
    height: 165vh;
}
	.vmc-tabs {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

	.vmc-tab {
    padding: 7px 72px;
}
.vmc-tab:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}
/* 	.faq-section {
    padding: 40px 20px;
    height: 124vh !important;
} */
.team-section .row.justify-content-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.project-card {
    width: 100% !important;
}
	div#track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 39px;
}
	.row.g-4.workflow-steps {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    justify-content: center;          
    align-items: center;
    margin: 0 auto;
}


}

@media (max-width: 667px) {
	#custom-popup .popup-content {
    max-width: 582px;
    height: auto;
    width: 97%;
}
}

@media (max-width: 568px) {
	div#track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}
	.founder-img-wrap::before {
    left: 26%;
    width: 254px;
}
	.faq-container {
    gap: 0px;
}
/* 	.faq-section {
    padding: 41px 20px;
    height: 157vh !important;
} */
	.buttons {
    display: none !important;
}
}

@media (max-width: 479px) {
	section.founder-section.py-5 {
    height: 173vh;
}
	.founder-img-wrap::before {
    left: 22%;
    width: 254px;
}
	.founder-img {
    height: 194px;
    width: 194px;
}
	.founder-img-wrap::before {
    left: 27%;
    width: 208px;
    height: 202px;
}
	.vmc-tab:nth-child(3) {
    justify-self: normal;
}
	.vmc-tabs {
    grid-template-columns: 1fr;
}
	.vmc-left p, .vmc-left ul {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}
	.vmc-left ul li {
    padding-left: 25px;
    margin-bottom: 4px;
    text-align: start;
}
/* 	.faq-section {
    padding: 41px 20px;
    height: 157vh !important;
} */
	.team-section .row.justify-content-center {
    display: grid;
    grid-template-columns: 1fr;
}
	.team-card {
    height: 333px;
    width: 336px;
    margin: 0 auto;
}
	#main h1 {
    font-size: 35px;
}
	.main_content {
    width: 84%;
}
	.hero-heading {
    font-size: 30px;
    font-weight: 800;
}
	.workflow-section .head h2 {
    font-size: 35px !important;
}
	.row.g-4.workflow-steps {
    grid-template-columns: 1fr;
   
}
	.workflow-card {
    width: 80%;
    margin: 0 auto;
}
}

@media (max-width: 414px) {
/* 	.faq-section {
    padding: 35px 20px;
} */
	.section img {
    width: 100vw;
    height: 100vh;
    object-fit: cover !important;
    position: absolute;
    left: var(--x);
    pointer-events: none;
}
}

@media (max-width: 360px) {
	.hero-heading {
    font-size: 30px;
    font-weight: 800;
}
	img.abt-image.shadow-lg {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
	.hero-section_two img.abt-image.shadow-lg {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
	p{
		font-size:14px !important;
		line-height:24px !important;
	}
	.hero-section_two {
    padding: 0px 0px 2px;
}
	.founder-img-wrap::before {
    left: 15%;
    width: 211px;
    height: 202px;
}
	.fm-title::after {
    left: 34%;
}
	#main {
    height: 83vh !important;
    
}
}

/*Pop up  */
#custom-popup.cf7-popup {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999999 !important;
	pointer-events: all !important;
	transform: none !important;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 61%);
    justify-content: center;
    align-items: center;
}


#custom-popup .popup-content {
    background: linear-gradient(45deg, #f36812, #0a0808);
    padding: 30px;
    max-width: 638px;
    width: 97%;
    border-radius: 10px;
    position: relative;
    top: 91px;
    border: 1px solid #000;
    z-index: 2147483647 !important;
}


.cf7-close-popup {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}
.popup-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.popup-content label {
    text-align: left !important;
}

