.postid-36824 .cta-flag {
    width: auto;
    height: 60px;
}
 .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.6) 29%, /* Start of thick line */ rgba(255, 255, 255, 0.6) 36%, /* End of thick line */ rgba(255, 255, 255, 0) 37%, /* Gap */ rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.4) 41%, /* Start of thin line */ rgba(255, 255, 255, 0.4) 42%, /* End of thin line */ rgba(255, 255, 255, 0) 43%);
    transform: skewX(-20deg);
    animation: shimmerEffect 2s ease-out 3s infinite;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 767.98px) {
    .homepage_banner_ImageBox .mask-wrapper {
        padding-top: 110px !important;
    }
.cta-flag-row {
    margin-top: 10px !important;
}
}
.homepage_banner_textBox {
  margin-top: 140px;
}
.homepage_banner_ImageBox .mask-wrapper {
  position: relative;
  height: 700px; 
  overflow: hidden;
  padding-top: 100px;
}
.homepage_banner_textBox .fade {
  opacity: 0.3;
  transform: translateY(40px);
  animation: fadeUpSlow 1.5s ease-out forwards;
}
@keyframes fadeUpSlow {
  0% {
    opacity: 0.3;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.homepage_banner_textBox .fade-1 {
  animation-delay: 0.3s;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1.44px;
  color: #3366FF;
}
.homepage_banner_textBox .fade-2 {
  animation-delay: 0.6s;
  font-weight: 600;
  font-size: 48px;
  line-height: 114%;
  color: #0D1B44;
}
.homepage_banner_textBox .fade-3 {
  animation-delay: 0.9s;
}
.homepage_banner_ImageBox .image-stack {
  position: relative;
  width: 1400px;
  height: 700px;
  margin: 100px 10px;
}
.homepage_banner_ImageBox .stack-img {
  position: absolute;
  width: 1400px;
  height: auto;
  opacity: 0;
  transform: translateY(100px) scale(0.95);
  animation: stackIn 0.8s ease-out forwards;
}
.homepage_banner_ImageBox .img1 {
  left: 0px;
  z-index: 1;
  bottom: -205px;
  transform: translateY(100px) rotate(0deg) scale(0.95);
  animation-delay: 1.6s;
  filter: drop-shadow(0px 20px 10px rgba(17, 100, 255, 0.5));
}
.homepage_banner_ImageBox .img2 {
  left: 100px;
  z-index: 2;
  bottom: -175px;
  transform: translateY(100px) rotate(0deg) scale(0.97);
  animation-delay: 1.4s;
  filter: drop-shadow(0px 20px 10px rgba(17, 100, 255, 0.5));
}
.homepage_banner_ImageBox .img3 {
  left: 200px;
  z-index: 3;
  bottom: -100px;
  transform: translateY(100px) rotate(0deg) scale(1);
  animation-delay: 1.2s;
  filter: drop-shadow(0px 20px 10px rgba(17, 100, 255, 0.5));
}
@keyframes stackIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.homepage_banner_textBox .cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 33px;
  background: #1164FF;
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden; 
  max-width: 100%;
  box-shadow: 0px -4px 0px 0px rgba(0, 0, 0, 0.2) inset;
}
.homepage_banner_textBox .cta-btn:hover {
  background: #1164FF;
  box-shadow: -4px 4px #0A1737;
  transform: translateY(-5px);
  cursor: pointer;
  color: #fff;
}
.homepage_banner_textBox .discoveryCall_arrow-icon {
  transition: transform 0.2s ease;
  display: inline-block;
  vertical-align: middle; 
  margin-left: 10px;
}
.cta-btn:hover .discoveryCall_arrow-icon {
  animation: arrowFlyDisappear 0.2s ease-in-out;
}

@keyframes arrowFlyDisappear {
  0% {
  opacity: 1;
  transform: translate(0, 0);
  }
  40% {
    opacity: 0;
    transform: translate(10px, -10px); /* Fly to top-right and fade out */
  }
  41% {
    opacity: 0;
    transform: translate(-10px, 10px); /* Instantly jump to bottom-left */
  }
  100% {
    opacity: 1;
    transform: translate(0, 0); /* Return to original position */
  }
}


.homepage_banner_textBox .cta-btn {
  position: relative;
  overflow: hidden;
}


.homepage_banner_textBox .cta-btn * {
  position: relative;
  z-index: 1;
}

@keyframes shimmerEffect {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  60%, 100% {
    transform: translateX(100%) skewX(-20deg);
  }
}

/* =========================== */
.homepage_banner_textBox .content-stack {
  position: relative;
  width: fit-content;
  margin: 0;
}
.homepage_banner_textBox .text-box {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(10px);
  animation: textFadeIn 0.8s ease-out forwards;
  animation-delay: 0.4s;
}
@keyframes textFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 767.98px) {
  .homepage_banner_textBox .text-box {
    text-align: center;
    animation: textFadeIn 0.4s ease-out forwards;
    animation-delay: 0.2s;
  }
  .homepage_banner_textBox .content-stack {
    margin: 0 auto;
  }
  .homepage_banner_textBox .fade-1 {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 1.44px;
    animation-delay: 0.1s;
  }
  .homepage_banner_textBox .fade-2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 115%;
    animation-delay: 0.2s;
  }
  .homepage_banner_textBox .fade-3 {
    animation-delay: 0.3s;
  }
  .homepage_banner_ImageBox .image-stack {
    width: 500px;
    height: 420px;
    margin: 0;
  }
  .homepage_banner_ImageBox .stack-img {
    width: 500px;
  }
  .homepage_banner_ImageBox .img1 {
    bottom: 50px;
    filter: drop-shadow(0px 5px 10px rgba(17, 100, 255, 0.5));
    animation-delay: 0.9s;
  }
  .homepage_banner_ImageBox .img2 {
    bottom: 100px;
    left: 40px;
    filter: drop-shadow(0px 5px 10px rgba(17, 100, 255, 0.5));
    animation-delay: 0.7s;
  }
  .homepage_banner_ImageBox .img3 {
    bottom: 150px;
    left: 80px;
    filter: drop-shadow(0px 5px 10px rgba(17, 100, 255, 0.5));
    animation-delay: 0.5s;
  } 
  .homepage_banner_textBox {
    margin-top: 150px;
  }
  .homepage_banner_ImageBox .mask-wrapper {
    height: 340px;
    padding-top: 160px;
  }
  .homepage_banner_textBox .cta-btn {
    padding: 10px 80px;
  }
}

@media (max-width: 377.98px) {
  .homepage_banner_textBox .fade-2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1750px) {
  .homepage_banner_ImageBox .image-stack {
    width: 1600px;
  }
  .homepage_banner_ImageBox .stack-img {
    width: 1600px;
  }
  .homepage_banner_ImageBox .img1 {
    bottom: -360px;
  }
  .homepage_banner_ImageBox .img2 {
    bottom: -325px;
  }
  .homepage_banner_ImageBox .img3 {
    bottom: -250px;
  } 
}
@media screen and (min-width: 1920px) {
  .homepage_banner_ImageBox .image-stack {
    width: 1850px;
  }
  .homepage_banner_ImageBox .stack-img {
    width: 1850px;
  }
  .homepage_banner_ImageBox .mask-wrapper {
    height: 900px;
  }
  .homepage_banner_ImageBox .img1 {
    bottom: -550px;
  }
  .homepage_banner_ImageBox .img2 {
    bottom: -500px;
  }
  .homepage_banner_ImageBox .img3 {
    bottom: -400px;
  } 
}

/* ==================Our Vision Starts============================ */
.banner {
  box-shadow: 0 -40px 30px -10px white;
  position: relative;
  z-index: 3;
  background-color: #0A285F;
  color: #fff;
  height: auto;
  background-image: url('https://www.zigram.tech/wp-content/uploads/2025/04/Regtech-bg-scaled.webp');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0px;
}
.ourvision-heading {
  font-size: 20px;
  font-weight: 700;
  color: #3366FF;
  margin-top: 25px;
  line-height: 16px;
  letter-spacing: 1.44px;
}
.ourvision_head {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #fff;
  margin-top: 10px;
}
.ourvisionpara {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  opacity: 60%;
  margin: 40px 0;
}
.regtech_reverse {
  min-height: 700px;
}
.RegetchForWorldPara {
  max-width: 580px;
  width: 580px;
}
.Regetch_For_World img {
  padding: 0px;
  width: 480px;
  height: 480px;
}
.about-us-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
}
.about-us-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
.about-us-btn:hover {
  color: #fff;
}
.about-us-btn:hover::after {
  width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1439.98px) {
  .regtech_reverse {
    min-height: 640px;
  }
  .Regetch_For_World img {
    padding: 0px;
    text-align: center;
    height: auto;
  }
  .RegetchForWorldPara {
    max-width: 460px;
    width: 460px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .regtech_reverse {
    min-height: 454px;
  }
  .Regetch_For_World img {
    height: auto;
  }
  .RegetchForWorldPara {
    max-width: 320px;
    width: 320px;
  }
  .ourvision-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 9%;
  }
  .ourvision_head {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
  }
  .ourvisionpara {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin: 20px 0 40px 0;
  }
  .about-us-btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 767.98px) {
  .banner{
    padding: 10px 30px;
  }
  .regtech_reverse {
    min-height: auto;
  }
  .Regetch_For_World img {
    height: auto;
    margin: 40px 0 60px 0;
  }
  .RegetchForWorldPara {
    max-width: auto;
    width: auto;
  }
  .ourvision-heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 9%;
    margin-top: 60px;
  }
  .ourvision_head {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
  }
  .ourvisionpara {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin: 20px 0;
  }
  .about-us-btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
  }
}

@media (min-width: 100px) and (max-width: 399.98px) { 
  .Regetch_For_World{
    padding: 0px;
    text-align: center;
  }
  .banner{
    padding: 10px 30px;
  }
  .ourvision_head {
    font-size: 23px;
  }
}
/* ==================Our Vision Ends ============================ */


.Integrated_Regtech-StackSection {
  margin: 0;
  background: #071633;
  color: white;
  overflow: hidden;
  padding: 60px 0;
}
.Integrated_Regtech-StackSection .container-regtech {
  display: flex;
  flex-direction: row;
  /* height: calc(100dvh - 80px); */
  height: 700px;
  padding: 40px;
  gap: 0px;
  box-sizing: border-box;
}
.Integrated_Regtech-StackSection .video-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Integrated_Regtech-StackSection .video-placeholder video {
  width: 100%;
  /* height: 500px; */
  border: 0;
  object-fit: cover;
}
.Integrated_Regtech-StackSection .scroll-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.Integrated_Regtech-StackSection .heading-section {
  margin: 20px 40px 0;
  text-align: center;
}
.Integrated_Regtech-StackSection .heading-section h5 {
  color: #3366FF;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1.44px;
  text-align: center;
  text-transform: uppercase;
}
.Integrated_Regtech-StackSection .heading-section h2 {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
}
.Integrated_Regtech-StackSection .heading-section p {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  width: 780px;
  margin: 0 auto;
  opacity: 60%;
}
.Integrated_Regtech-StackSection .slider-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  overflow: hidden;
  margin-top: 20px;
}
.Integrated_Regtech-StackSection .custom-scrollbar {
  width: 6px;
  background: #2c3e50;
  border-radius: 5px;
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
}
.Integrated_Regtech-StackSection .scroll-thumb {
  width: 100%;
  background: #2B90C6CC;
  border-radius: 5px;
  position: absolute;
  top: 0;
  transition: top 0.2s ease;
}
.Integrated_Regtech-StackSection .scroll-content {
  flex: 1;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: 20px;
  height: 100%;
}
.Integrated_Regtech-StackSection .scroll-content::-webkit-scrollbar {
  display: none;
}
.Integrated_Regtech-StackSection .scroll-item {
  scroll-snap-align: start;
  height: 500px;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.Integrated_Regtech-StackSection .carousel-heading {
  color: #3366FF;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}
.Integrated_Regtech-StackSection .carousel-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
}
.Integrated_Regtech-StackSection .carousel-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
}
.Integrated_Regtech-StackSection .tag-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.Integrated_Regtech-StackSection .tag-buttons span {
  padding: 6px 16px;
  background-color: #243a63;
  color: #fff;
  border-radius: 20px;
  border: 1px solid #2e4c7c;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 991.98px) {
  .Integrated_Regtech-StackSection .heading-section h5 {
    margin-bottom: 20px;
  }
  .Integrated_Regtech-StackSection .heading-section {
    margin: 20px 0p;
  }
  .Integrated_Regtech-StackSection .heading-section h2 {
    font-size: 24px;
  }
  .Integrated_Regtech-StackSection .heading-section p {
    width: auto;
  }
  .Integrated_Regtech-StackSection .carousel-heading {
    font-size: 16px;
  }
  .Integrated_Regtech-StackSection .carousel-title {
    font-size: 20px;
  }
  .Integrated_Regtech-StackSection .tag-buttons {
    margin-top: 0;
  }
  .Integrated_Regtech-StackSection .tag-buttons span {
    padding: 4px 10px;
  }
  .Integrated_Regtech-StackSection .scroll-item {
    gap: 10px;
  }
}

@media screen and (min-width: 1801px) { 
  .Integrated_Regtech-StackSection .container-regtech {
    /* height: calc(100dvh - 220px); */
    height: 800px;
  }
  .Integrated_Regtech-StackSection .scroll-item {
    height: 600px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1279.98px) { 
    .Integrated_Regtech-StackSection .container-regtech {
      height: 600px;
    }
}

@media (max-width: 767.98px) {
  .Integrated_Regtech-StackSection {
    overflow: auto;
    height: auto;
    padding: 40px 0 20px 0;
  }
  .Integrated_Regtech-StackSection .container-regtech {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 10px;
  }
  .Integrated_Regtech-StackSection .video-container {
    order: -1;
    height: auto;
  }
  .Integrated_Regtech-StackSection .video-placeholder video {
    height: auto;
  }
  .Integrated_Regtech-StackSection .scroll-section {
    height: auto;
  }
  .Integrated_Regtech-StackSection .custom-scrollbar {
    display: none;
  }
  .Integrated_Regtech-StackSection .scroll-content {
    padding-left: 0;
  }
  .Integrated_Regtech-StackSection .tag-buttons {
    margin-top: 0;
  }
  .Integrated_Regtech-StackSection .scroll-item {
    height: auto;
    padding: 0;
    gap: 10px;
    margin-bottom: 40px;
    padding: 10px 0;
    border-bottom: 1px solid #687172;
    border-radius: 0px;
  }
  .Integrated_Regtech-StackSection .heading-section {
    margin: 20px 0;
    text-align: left;
  }
  .Integrated_Regtech-StackSection .heading-section h5 {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
  }
  .Integrated_Regtech-StackSection .heading-section h2 {
    font-size: 24px;
    text-align: left;
    margin: 0 0 10px;
  }
  .Integrated_Regtech-StackSection .heading-section p {
    width: auto;
    font-size: 16px;
    text-align: left;
  }
  .Integrated_Regtech-StackSection .carousel-heading {
    font-size: 14px;
    line-height: 140%;
  }
  .Integrated_Regtech-StackSection .carousel-title {
    font-size: 20px;
  }
  .Integrated_Regtech-StackSection .tag-buttons span {
    font-size: 12px;
    padding: 6px 10px;
    gap: 6px;
  }
}


nav {
        position: relative !important;
    }

    .top_banner_reports {
        padding: 10px;
        background: #6EA7DC;
        text-align: center;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: unset;
    }

    .top_banner_reports span {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .top_banner_reports span p {
        margin: 0;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.4;
    }

    .top_banner_reports span a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 10px 16px;
        border-radius: 25px;
        background: #fff;
        color: #0E204E;
        font-weight: 600;
        font-size: 16px;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
    }

    /* CTA + FLAG INLINE */
    .cta-flag-row {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 20px;
    }


    /* FLAG STYLE (same position as reference) */
    .cta-flag {
        width: 106px;
        height: 60px;
        display: block;
        margin-top: 20px;
        border-radius: 3px;
    }


    @media (max-width: 767.98px) {
        .container-regtech {
            height: auto !important;
        }

        .regtech_reverse {
            flex-direction: column-reverse;
        }

        .Regetch_For_World img {
            margin: 40px 0 0 0 !important;
        }

        .scroll-item {
            height: auto !important;
        }
    }

    @media (max-width: 1006px) {
        .solutions-nav {
            top: auto !important;
        }
    }
    /* Hide mobile flag on desktop */
.mobile-flag-badge {
    display: none;
}



/* ========================= */
/* MOBILE VERSION            */
/* ========================= */

@media (max-width: 767px) {

    /* Hide desktop flag */
    .desktop-flag {
        display: none;
    }

    /* Show mobile badge */
    .mobile-flag-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #eef2f7;
        padding:6px;
        border-radius: 3px;
        font-size: 14px;
        font-weight: 400;
        color: #1e2b4a;
        margin: 0 auto 0px auto;
        justify-content: center;
    }

    .mobile-flag-badge img {
        width: 20px;
        height: 14px;
        object-fit: cover;
    }

    /* Center text */
    .text-box {
        text-align: center;
    }

    .cta-flag-row {
        justify-content: center;
    }

    
}
/* SECTION BACKGROUND */
.aml-india-section {
    padding: 75px 85px;
    color: #ffffff;
    box-shadow: 0 -40px 30px -10px white;
    position: relative;
    z-index: 3;
    background-color: #0A285F;
    color: #fff;
    height: auto;
    background-image: url(https://www.zigram.tech/wp-content/uploads/2025/04/Regtech-bg-scaled.webp);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* WRAPPER FLEX */
.aml-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT SIDE */
.aml-content {
    flex: 1;
    max-width: 600px;
}

/* Subtitle */
.aml-subtitle {
       font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3366FF;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Title */
.aml-title-india {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* List */
.aml-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aml-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    color: #ffffff;
    opacity: 80%;
}

.aml-list li span {
    font-weight: 600;
    color: #3A8DFD;
    min-width: 30px;
}

/* RIGHT IMAGE */
.aml-image {
    flex: 1;
    text-align: right;
}

.aml-image img {
    max-width: 100%;
    border-radius: 16px;
}
@media (max-width: 991px) {

    .aml-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .aml-content {
        max-width: 100%;
    }

    .aml-title-india {
        font-size: 28px;
       text-align: left;

    }

    .aml-list li {
        justify-content: center;
        text-align: left;
    }

    .aml-image {
        text-align: center;
    }

    .aml-india-section {
        padding: 60px 16px;
    }

.zigram-header .title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}
.zigram-header .description {
    font-size: 16px;
    color: #000000;
    opacity: 80%;
}
.content-box h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}
.content-box p {
    margin: 0;
    font-size: 16px;
    color: #000000;
    opacity: 60%;
    line-height: 1.6;
}
}

* {
    box-sizing: border-box;
}


.zigram-wrapper {
    padding: 75px 104px;
    display: flex;
    justify-content: center;
    background-color: #F3FAFF;
}

.zigram-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    /* This creates the large gap between the left text and the right features */
    grid-template-columns: 1.2fr 2fr; 
    gap: 20px; 
    align-items: start;
}

/* Left Side Header */
.zigram-header .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 25px;
}

.zigram-header .description {
   font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 1.6;
    max-width: 320px;
    opacity: 80%;
}

/* Right Side Grid */
.zigram-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 20px; }

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}



.content-box h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.content-box p {
     margin: 0;
    font-size: 16.5px;
    color: #000000;
    opacity: 60%;
    line-height: 1.6;
}

/* Responsive: Stacks for mobile */
@media (max-width: 1024px) {
.aml-india-section {
    padding: 37px 40px;
}
    .zigram-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .zigram-header .description {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .zigram-features {
        grid-template-columns: 1fr;
    }
}

p.aml-desc {
    text-align: left;
    width: 100%;
}

@media (max-width: 767.98px) {
.aml-subtitle {
    text-align: left;
 font-size: 14px;
}
    .aml-title-india {
        font-size: 24px;
        text-align: left;
    }
    .homepage_banner_textBox
 {
        margin-top: 40px;
    }
}
@media (max-width: 767.98px) {
.zigram-header .title
 {
    font-size: 24px;
}
    .aml-india-section
 {
        padding: 60px 16px;
    }
.zigram-wrapper {
    padding: 60px 16px;
}
}

 .section-header h2 {
     font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0D1B44;
    }

/* iPad Pro specific */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (-webkit-min-device-pixel-ratio: 2) {

.homepage_banner_textBox .fade-2 {
    font-size: 25px;
}
.aml-subtitle {
    font-size: 12px;
}
.aml-title-india {
    font-size: 24px;
}
.aml-list li
 {
    font-size: 14px;
}
.zigram-wrapper {
    padding: 60px 40px;
}
.zigram-header .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 10px;
}
}
@media (max-width: 767px) {
    .afasa-report-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}


    .zigram-slider-section .aml-video-nav {
        position: absolute;
        top: 60%;
        width: 35.5px;
        height: 35.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #000000;
        background: transparent;
        color: #070707;
        cursor: pointer;
        z-index: 5;
        line-height: 1;
        padding: 0;
    }

    .zigram-slider button.owl-dot.active {
        background: #0D152D;

    }

    i.fas.fa-chevron-left {
        color: #000000 !important;
    }

    .zigram-slider i.fas.fa-chevron-left,
    i.fas.fa-chevron-right {
        color: #000000 !important;
    }

    .zigram-slider button.owl-dot {
        width: 44px;
        height: 7px;
        background: #E1E5E9;
        border-radius: 1px;
        transition: all 0.3s ease;
        border: 0;
        margin: 40px 5px 0 0;
    }

 

    .homepage_banner_textBox {
        margin-top: 75px;
    }

    p.aml-desc {
        text-align: center;
        width: 100%;
    }

    .zigram-slider-section {
        padding: 80px 0px;
        background: #f8f9fb;
        text-align: center;
    }

    @media (max-width: 767px) {

    .zigram-slider-section .aml-video-nav
    {
        display: none;
    }

        .zigram-slider-section {
            padding: 60px 16px;
            background: #f8f9fb;
        }

        .section-header h2 {
            text-align: left;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #0D152D;
        }

        .section-header p {
            text-align: left;
        }

        .aml-image img {
            height: auto !important;
        }

        p.aml-desc {
            font-size: 16px;
            margin: 12px auto 20px;
            text-align: left;
            font-weight: 400;
            width: auto;
        }
    }

    .solution-slide {

        max-height: 520px !important;
        height: 520px !important;

    }

    .aml-image img {
        height: auto;
    }

    .icon-box img {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    span.counter {
        color: white;
    }

    .icon-box img {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .aml-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .aml-list li {
        display: flex;
        align-items: flex-start;
        gap: 0px;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .aml-list .icon {
        display: inline-block;
        min-width: 40px;
    }

    .aml-list .icon img {
        width: 28px;
        height: 15px;
        object-fit: contain;
    }

    .icon-box img {
        height: 65px;
    }



    @media (max-width: 767px) {
        .mobile-flag-badge img {
            object-fit: contain;
        }
    }

    .zigram-slider-section .container {
        position: relative;
    }

    /* Allow arrows outside container */
    .zigram-slider-section .container {
        position: relative;
        overflow: visible !important;
    }

    /* Slider wrapper */
    .zigram-slider {
        position: relative;
    }

    .section-header p {
        font-size: 16px;
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto 40px;
        color: #575F70;
    }

    .event-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        transition: 0.3s ease;
        height: 352px;
    }

    .event-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .event-card h4 {
        padding: 20px;
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        color: #273D72;
    }

    .event-card:hover {
        transform: translateY(-8px);
    }


  @media (min-width: 1600px) {
        .aml-image img {
            max-width: 620px;
            height: auto;
        }
    }

    .homepage_banner_textBox {
        margin-top: 75px;
    }

    p.aml-desc {
        text-align: center;
        width: 100%;
    }

    @media (max-width: 767px) {
        .aml-image img {
            height: auto !important;
        }

        p.aml-desc {
            font-size: 16px;
            margin: 12px auto 20px;
            text-align: left;
            font-weight: 400;
            width: auto;
        }
    }

    .solution-slide {

        max-height: 520px !important;
        height: 520px !important;

    }

    .aml-image img {
        height: auto;
    }

    .icon-box img {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    span.counter {
        color: white;
    }

    .icon-box img {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .aml-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .aml-list li {
        display: flex;
        align-items: flex-start;
        gap: 0px;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .aml-list .icon {
        display: inline-block;
        min-width: 40px;
    }

    .aml-list .icon img {
        width: 28px;
        height: 15px;
        object-fit: contain;
    }