@media (min-width: 1700px){
    .mega-menu-ads.case-study-video .video-thumb-wrapper {
        width: 265px;
        height:150px;
    }
    .featured-text {width: 265px}
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding-left: 35px; /* Adjust this value based on icon size */
    height: 50px; /* Adjust input height as needed */
    box-sizing: border-box;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    fill: #ccc; /* Color of the SVG */
    width: 20px; /* Adjust icon size */
    height: 20px; /* Adjust icon size */
}

.border-radius {border-radius: 15px}
.border-primary {border: 2px solid rgba(var(--bs-primary-rgb)) !important}
.border-dashed {border-style: dashed !important}

.app-image {height: 200px; width: 200px}

.app-store-wrap .hero-section-content-wrap .hero-section-content {
    margin-bottom: 95px;
}
.app-store-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 24px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 120px;
}
.app-store-box {
    transition: all 0.5s;
    padding: 70px;
}
.app-store-box h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--primary_color);
}
.app-store-box h3 {
    font-size: 19px;
    line-height: 1;
    font-weight: 500;
    color: var(--dark1);
    margin-top: 10px;
    font-family: var(--font_yantramanv);
}
.app-store-box p {
    font-size: 16px;
    line-height: 24px;
    color: rgb(28 28 28 / 80%);
    margin-bottom: 0;
}

.app-store-box:hover {
    background:rgba(0,0,255,0.1);
}

.app-icon {
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
    border-radius: 10px;
}


.partner-title {
    font-size: 19px;
    line-height: 1;
    font-weight: 500;
    color: var(--dark1);
    margin-top: 10px;
    font-family: var(--font_yantramanv);
}


/* Layout: responsive 5 → 4 → 3 → 2 → 1 columns */
.partner_main{
  display:grid;
  gap: 1.25rem;              /* space between cards */
  grid-template-columns: repeat(1, minmax(0,1fr));
  align-items: stretch;
}

@media (min-width: 576px){
  .partner_main{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 768px){
  .partner_main{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 992px){
  .partner_main{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1200px){
  .partner_main{ grid-template-columns: repeat(5, minmax(0,1fr)); }
}

/* Make each link occupy a grid cell cleanly */
.partner_main > a{
  display:block;
  height:100%;
  text-decoration: none;
}

/* Card should fill its grid cell */
.partner_card{
  position:relative;
  height:100%;
  border-radius: 16px;
  padding: 16px;
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,.06);
}

/* Image sizing = no layout shift + consistent tiles */
.partner_icon{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 120px;
}
.partner-image{
  width: 100%;
  max-width: 160px;   /* matches your width attr */
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

/* Optional: nicer hover */
.partner_card:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 420ms ease-out forwards;
}

.title_sm {
    font-size:16px;
    color:#3b3b3b;
    font-weight:300
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* Soften the glow; pointer-events none so it doesn’t catch hovers */
.partner_glow_effect {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .08;
  box-shadow: 0 0 0 0 rgba(255,255,255,0);
  transition: box-shadow .25s ease, opacity .25s ease;
}
.partner_card:hover .partner_glow_effect {
  opacity: .18;
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 6px 12px rgba(0,0,0,.06),
    0 0 80px rgba(120, 160, 255, .25);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; opacity: 1; transform: none; }
  .partner_glow_effect { transition: none; }
}

h1, h2, h3, h4, h5, h6 {font-family: var(--font_yantramanv)}

/* Layout tweaks if needed */
.services-list { gap: 1.25rem; flex-wrap: wrap; }

/* Make the whole card a link */
.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
  will-change: transform, box-shadow;
}

/* Soft shadow underneath (separate from the card's own shadow) */
.service-card::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 12px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.06), rgba(0,0,0,0));
  opacity: 0;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

/* Float effect on hover/focus */
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: translateY(4px);
}

/* Icon & headings */
.service-icon { width: 48px; height: auto; margin-bottom: 12px; }
.service-card h3 {margin: 8px 0 8px; font-size: 1.125rem; }
.service-card p {margin: 0; line-height: 1.5; }

.home-hero-billboard {
    background-image: url('/assets/images/billboard.jpg'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: top center; 
    width: 100%; 
    height: 700px;
}

/* Always-on dark overlay over each project's image */
.project-item-inner {
  position: relative;
  overflow: hidden;            /* ensures overlay stays clipped */
  border-radius: 10px;
}

.project-item-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* keeps images nicely cropped */
}

/* the overlay */
.project-item-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

/* make the title sit above the overlay */
.project-item-inner h2 {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
}

/*News Images*/
.new-release-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px; /* if you want rounded corners */
}

/* Make the image behave like a cover photo */
.new-release-img-box img {
  display: block;
  width: 100%;
  height: 450px;                  /* or use a fixed aspect: */
  aspect-ratio: 16 / 9;          /* remove if you want natural height */
  object-fit: cover;
}

/* Title over the image (top) */
.new-release-img-box .section-title {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;                  /* move up/down as needed */
  left: 2rem;
  right: 1.25rem;
  margin: 0;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  font-size: 3.5rem;
  font-family: var(--font_yantramanv) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  font-weight:400 !important;
}

/* Gentle top gradient for readability */
.new-release-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.45) 28%,
    rgba(0,0,0,0.25) 52%,
    rgba(0,0,0,0.0) 100%
  );
}

/* ---- Configurator grid (force 2:1 split on desktop) ---- */
#configure.pricing-table-lists {
  display: grid !important;          /* override any existing flex */
  grid-template-columns: 1fr;        /* mobile */
  gap: 24px;
}

@media (min-width: 992px) {
  #configure.pricing-table-lists {
    grid-template-columns: 2fr 1fr;  /* left stack : right summary */
    align-items: start;
  }
}

/* Left column stack spacing */
#configure .left-stack {
  display: grid;
  gap: 24px;
}

/* Make the cards look consistent */
#configure .pricing-table-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  background: var(--card-bg, rgba(0,0,0,0.03));
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 20px;
}

/* Two-column list layout for radios/checkboxes */
#configure .two-col-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem .75rem;
  margin: 0; padding: 0;
}
#configure .two-col-list li { list-style: none; }
@media (min-width: 768px) {
  #configure .two-col-list { grid-template-columns: 1fr 1fr; }
}

/* SLA options as cards */
#configure .sla-card {
  display: flex; gap: .75rem; align-items: flex-start;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .75rem; padding: .75rem .9rem; width: 100%;
  cursor: pointer; background: #fff;
}
#configure .sla-card input {margin-top: .25rem; }

/* ---- Header overlap & sticky summary ---- */
:root { --header-offset: 84px; }     /* adjust to your real fixed-header height */

#configure { scroll-margin-top: var(--header-offset); }   /* for anchor jump */
#configure .sticky-summary {
  position: sticky;
  top: calc(var(--header-offset) + 12px);
  z-index: 2;                         /* sit above page content but under header */
}

/* If your global header has a big z-index, keep summary under it */
.header, .site-header { z-index: 1000; }  /* your header selector */
#configure .sticky-summary { z-index: 900; }


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--bs-nav-link-hover-color);
    border-bottom: 2px solid var(--bs-nav-link-hover-color);
    background-color: #fff !important;
    border-radius: 0px;
}

/* Scoped to the configurator tabs */
.config-tabs-animate .tab-pane { position: relative; }
.config-tabs-animate .tab-pane.animating { pointer-events: none; }

/* In/out directions */
.config-tabs-animate .slide-in-right   { animation: cfgSlideInRight .28s ease both; }
.config-tabs-animate .slide-out-left   { animation: cfgSlideOutLeft .28s ease both; }
.config-tabs-animate .slide-in-left    { animation: cfgSlideInLeft .28s ease both; }
.config-tabs-animate .slide-out-right  { animation: cfgSlideOutRight .28s ease both; }

/* Keyframes */
@keyframes cfgSlideInRight { from { transform: translateX(24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes cfgSlideOutLeft { from { transform: translateX(0); opacity: 1; } to { transform: translateX(-24px); opacity: 0; } }
@keyframes cfgSlideInLeft  { from { transform: translateX(-24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes cfgSlideOutRight{ from { transform: translateX(0); opacity: 1; } to { transform: translateX(24px); opacity: 0; } }


/* Clickable selection cards (multi-select) */
.select-card {
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  background: #fff;
}
.select-card:hover {
  border-color: rgba(45,108,223,.45);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.select-card.is-selected {
  border-color: #2d6cdf;
  box-shadow: 0 0 0 3px rgba(45,108,223,.15);
  background: #f7faff;
}

/* SLA radio “cards” */
.sla-card {
  display: flex; gap: .75rem; align-items: flex-start;
  border: 1px solid rgba(0,0,0,.08); border-radius: .75rem;
  padding: .75rem .9rem; width: 100%; background: #fff; cursor: pointer;
}
.sla-card input {margin-top: .25rem; }

.select2-search__field {
    width: 100%;
    border: none !important
}
.select2-selection__choice {
    height: 41px;
    padding: 6px 14px !important;
    background-color: rgba(19, 81, 216, .1) !important;
    border: 1px solid rgba(0, 0, 0, .1)
}

@media (max-width: 768px) {
  .contact-area {padding-top: 20px}
}

.mega-menu-ads.case-study-video .video-thumb-wrapper{
  position: relative;
  width: 260px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 15px;
}

.mega-menu-ads.case-study-video .video-thumb-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.mega-menu-ads.case-study-video img {
    display: block;
    width: 100%;
    height: auto;
}

.mega-menu-ads.case-study-video .play-button {
    position: absolute;
    top: 35%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
}

.mega-menu-ads.case-study-video .play-button::before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 3px;
}

.mega-menu-ads.case-study-video .play-button:focus-visible {
    box-shadow: 0 0 0 3px #ffffff;
}

/* Modal */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000; /* adjust to sit above your nav/mega menu */
}

.video-modal-overlay.is-open {
    display: flex;
}

.video-modal {
    position: relative;
    background: #000;
    border-radius: 16px;
    max-width: 960px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.video-modal-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-modal-inner video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}


.clients-list {
    gap: 30px;
}

.clients-list .client-card {
    flex: 1;
}
.client-card {
    padding: 77px 34px 56px 34px;
    position: relative;
}
.client-card img {
    display: block;
/*    height: 45px;*/
/*    margin-bottom: 30px;*/
}
.client-card h3 {
    font-family: var(--font_yantramanv);
    font-size: 24px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0; 
    line-height: 1;
    margin-bottom: 18px;
}
.client-card h3 a {
    color: var(--dark1);
}
.client-card p {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 24px;
    color: rgb(28 28 28 / 70%);
}
.client-card .client-badge {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 10px;
    background: var(--primary_color);
    color: #ffffff;
    padding: 10px 19px;
}

.client-icon { 
/*    width: 48px; */
    height: auto; 
}

.client-area {padding: 50px 0}



.about-timeline .about-timeline-item {
    width: 362px;
    border-radius: 14px;
    padding: 6px;               /* thickness of the fake border */
    position: relative;
    transition: .3s;
}

.about-timeline .about-timeline-item.item1 {
     /* gradient wrapper */
    background: linear-gradient(135deg, #e366a4, #a645c3); 
}

.about-timeline .about-timeline-item.item2 {
     /* gradient wrapper */
    background: linear-gradient(135deg, #a645c3, #7a43ce); 
}

.about-timeline .about-timeline-item.item3 {
     /* gradient wrapper */
    background: linear-gradient(135deg, #7a43ce, #b746c1); 
}

.about-timeline .about-timeline-item-inner {
    background: #F3F6FD;        /* or var(--primary_light) if that matches */
    border-radius: 10px;        /* slightly smaller than outer radius */
    padding: 40px;              /* this was on the outer before */
    position: relative;         /* keeps .line-shape nicely scoped if needed */
}

.featured-text {width: 300px}

/* Fix lists inside blog intro content */
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction ul,
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction ol {
    margin: 16px 0 20px;
    padding-left: 1.5rem;            /* indent */
    list-style-position: outside;
}

/* bullets + numbering */
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction ul {
    list-style: disc;
}

.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction ol {
    list-style: decimal;
}

/* tidy spacing */
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction li {
    margin: 8px 0;
}

/* your markup wraps li text in <p>, so kill the default p margins */
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction li > p {
    margin: 0 20px;
}

/* nested lists (optional, but nice) */
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction ul ul {
    list-style: circle;
    margin-top: 8px;
}
.blog-details-area .blog-details-body .blog-details-inner .blog-details-introduction ol ol {
    margin-top: 8px;
}

.mid-blue-bg {background: rgba(8, 13, 79, 0.7)}
.dark-blue-bg {background: rgba(8, 13, 79, 0.85)}
.mid-gray-bg {background: rgba(0, 0, 0, 0.7)}
.dark-gray-bg {background: rgba(0, 0, 0, 0.85)}
.light-blue-bg {background: rgb(19 81 216 / 5%)}

.video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.header-area .navbar-wrapper ul li .mega-menu .mega-menu-inner .mega-menu-service-cards .mega-menu-service-card .icon img {
    width: 60px;
    border-radius: 7px;
}

.dashed-border {border: 2px dashed rgba(0,0,0,0.1)}

/* theme-btn4: black -> white on hover (and text flips white -> black) */
.theme-btn4 {
    background: var(--dark1);
    color: var(--light_white);
}

/* the hover overlay for btn4 should be WHITE (not dark1) */
.theme-btn4::before,
.theme-btn4::after {
    background: var(--light_white);
}

/* when overlay expands, make text black */
.theme-btn4:hover {
    color: var(--dark1);
}

/* if you have icons inside, flip them too */
.theme-btn4:hover i,
.theme-btn4:hover svg {
    color: var(--dark1);
    fill: var(--dark1);
}

/* theme-btn4 arrow rotates 45deg on hover */
.theme-btn4 i {
  transition: transform .3s;
  transform-origin: 50% 50%;
}

.theme-btn4:hover i {
  transition: transform .5s;
  transform: rotate(45deg);
}


/* Make search + checkbox groups feel like matching controls */
.partner-filters-row .search-input{
  height: 48px;
}

.partner-filters-row .filter-box{
  height: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  flex-wrap: nowrap;
}

.partner-filters-row .filter-box .form-check-input{
  margin-top: 0;
  width: 25px;
  height: 25px;
  margin-right: 7px;
}

.partner-filters-row .partner-filter-reset{
  height: 48px;
}

.case-studio-area .case-studio .case-studio-tabs .nav-item button.active {
    color: var(--primary_color);
}

.border-radius {border-radius: 1.5rem !important}

.h-100 {height: 100% !important;}





.video-thumb-wrapper{
    position: relative;
    display: block;
    overflow: hidden;
}

.video-thumb-wrapper img{
    display: block;
    width: 100%;
    height: auto;
}

.video-thumb-wrapper .play-button{
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    z-index: 5;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.55);
}

.video-thumb-wrapper .play-button::before{
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 3px;
}

.no-anim:hover,
.no-anim:focus,
.no-anim:active {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.no-hover {
  pointer-events: none !important;
}

.case-studio-cat {background:rgba(255,255,255,0.7) !important}

.about-area .left-content ul li i {
    font-size: 26px !important;
    background: none !important;
}