

.nx-hero{
  height:100vh;
  background:#042840;
  position:relative;
  overflow:hidden;
  font-family:Arial,sans-serif;
}

/* slide */
.nx-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.15);
  transition:opacity 1s ease, transform 1.2s ease;
}

.nx-slide.nx-active{
  opacity:1;
  transform:scale(1);
  z-index:2;
}

/* media */
.nx-media{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 3D floating */
.nx-3d{
  animation:nxFloat 6s ease-in-out infinite;
}

@keyframes nxFloat{
  0%{transform:translateY(0) rotateY(0deg);}
  50%{transform:translateY(-25px) rotateY(12deg);}
  100%{transform:translateY(0) rotateY(0deg);}
}

/* content */
.nx-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  max-width:500px;
  color:#fff;
  animation:nxFadeUp 1.2s ease;
}

@keyframes nxFadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(-50%);}
}

.nx-content h1{
  font-size:52px;
  margin-bottom:15px;
  color: #ffffff;
  padding: 5px;
}

.nx-content p{
  opacity:.85;
  margin-bottom:30px;
  color: #ffffff;
  padding: 5px;
}

.nx-btn{
  display:inline-block;
  padding:14px 40px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  font-size:16px;

  /* Gradient like screenshot */
  background: linear-gradient(
      135deg,
      #ffffff 0%,
      #e8fff3 40%,
      #39e29d 100%
  );

  color:#0b2f44;

  /* Soft depth */
  box-shadow:
      0 8px 20px rgba(0,0,0,.15),
      inset 0 2px 6px rgba(255,255,255,.6);

  transition:.35s ease;
}

.nx-btn:hover{
  transform: translateY(-3px);
  box-shadow:
      0 14px 30px rgba(0,0,0,.25),
      inset 0 2px 8px rgba(255,255,255,.7);
  background: #5EE7AF;
}

.nx-btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50px;
  /* background:linear-gradient(to bottom, rgba(255,255,255,.6), transparent); */
  opacity:.4;
}
/* dots */
.nx-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
}

.nx-dot{
  width:12px;
  height:12px;
  background:#555;
  border-radius:50%;
  display:inline-block;
  margin:0 6px;
  cursor:pointer;
  transition:.3s;
}

.nx-dot.nx-active{
  background:#12f1cc;
}

.phone_item{
    display:flex;
    align-items:center;
    gap:40px;
}



.phone_call{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#ffffff;
}

/* icon circle */
.phone_icon{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid transparent;

    background:
        linear-gradient(#032E4A,#032E4A) padding-box,
        linear-gradient(135deg,#ffffff,#21b983) border-box;
}

/* phone icon */
.phone_icon i{
    color:#fff;
    font-size:14px;
    transform: rotate(80deg);
}




/* ===== BACKGROUND 3D VIDEO ===== */
#ea-bg-viewer{
  position:fixed;
  inset:0;
  z-index:1;
  filter:brightness(.65);
}

/* ===== MAIN WRAPPER ===== */
.ea-tour-wrapper{
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  background:#000;
  z-index:9999;
  display:none;
}
.ea-tour-wrapper.ea-open{ display:block; }

/* blur background when open */
.ea-open ~ #ea-bg-viewer{
  filter:blur(6px) brightness(.35);
}

/* ===== VIEWER ===== */
#ea-viewer{
  width:100%;
  height:100%;
  transition:opacity .35s ease;
}

/* ===== CLOSE ===== */
.ea-btn-close{
  position:absolute;
  top:15px;
  right:20px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* ===== SIDE ARROWS ===== */
.ea-nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:90px;
  border:none;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:40px;
  cursor:pointer;
}
.ea-left{ left:10px; }
.ea-right{ right:10px; }

/* ===== ICON GROUP ===== */
.ea-left-icons{
  position:absolute;
  bottom:90px;
  left:20px;
  display:flex;
  gap:10px;
}
.ea-right-icons{
  position:absolute;
  bottom:90px;
  right:20px;
  text-align:right;
}
.ea-icon-btn{
  background:rgba(0,0,0,.6);
  color:#fff;
  border:none;
  padding:10px;
  cursor:pointer;
}

.ea-brand{
  margin-top:8px;
  color:#fff;
  font-weight:bold;
}

/* ===== BOTTOM BAR ===== */
.ea-bottom-bar{
  position:absolute;
  bottom:0;
  width:100%;
  background:#1b1b1b;
  color:#fff;
  padding:10px;
}

.ea-floor-info{
  text-align:center;
  margin-bottom:8px;
  font-size:14px;
}

/* ===== TABS ===== */
.ea-tabs{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:8px;
}
.ea-tab{
  border:none;
  background:none;
  color:#aaa;
  cursor:pointer;
}
.ea-active{
  color:#fff;
  border-bottom:2px solid #0d6efd;
}

/* ===== THUMBNAILS ===== */
.ea-thumb-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.ea-thumb-track{
  display:flex;
  gap:10px;
  overflow:hidden;
  flex:1;
}

.ea-thumb{
  min-width:120px;
  height:70px;
  background:#333;
  cursor:pointer;
  border-radius:4px;
  overflow:hidden;
}
.ea-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
}

.ea-thumb.active{
  outline:2px solid #0d6efd;
}

.ea-thumb-nav{
  background:#000;
  color:#fff;
  border:none;
  padding:10px;
  font-size:20px;
  cursor:pointer;
}



/* ===== MOBILE ===== */
@media(max-width:768px){
  .ea-nav-arrow{ width:40px;height:60px;font-size:28px; }
  .ea-thumb{ min-width:90px;height:55px; }
}



/* OUTER WRAPPER */
.service-carousel-wrapper {
    position: relative;
}



/* carousel itself */
.service-carousel {
    position: relative;
    overflow: visible;   /* MUST be visible */
}

/* image crop only */
.service-carousel-inner {
    border-radius: 12px;
    overflow: hidden;    /*  image cut হবে */
}

/* image */
.service-carousel img {
    height: 100%;
    object-fit: cover;
}



/* OUTSIDE BUTTON STYLE */
.carousel-outside-controls .carousel-control-prev,
.carousel-outside-controls .carousel-control-next {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* LEFT */
.carousel-outside-controls .outside-prev {
    left: -75px;
}

/* RIGHT */
.carousel-outside-controls .outside-next {
    right: -75px;
}



/* arrow color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.custom-arrow {
    font-size: 18px;
    color: #ffffff;

    width: 48px;
    height: 48px;
    background: #042840;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    transition: 0.3s;
}

/* hover effect */
.custom-arrow:hover {
    background: #2FD89E;
    color: #042840;
}



/* image styling */
.agile-waterfall-section .carousel-inner img {
    border-radius: 12px;
}

/* outside controls */
.carousel-outside-controls .outside-prev {
    left: -90px;
}

.carousel-outside-controls .outside-next {
    right: -90px;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .carousel-outside-controls .outside-prev {
        left: 10px;
    }
    .carousel-outside-controls .outside-next {
        right: 10px;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        visibility: hidden;
    }
    .carousel-outside-controls .outside-prev {
        visibility: hidden;

    }
    .carousel-outside-controls .outside-next {
        visibility: hidden;

    }
    .service_details_content p{
        text-align: justify;
    }
}

.full-service-card{
    max-width: 1400px;
    margin: auto;
    padding: 50px 50px;
    border-radius: 35px;
    background: radial-gradient(circle at -5% 100%, rgba(31, 169, 122, .55) 0%, transparent 35%), radial-gradient(circle at 105% -5%, rgba(31, 169, 122, .55) 0%, transparent 35%), #082c44;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, .35);
    margin-bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.4);
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #00ffb3;
    width: 40px;
}



@media (max-width: 768px) {
    .carousel-outside-controls .outside-prev,
    .carousel-outside-controls .outside-next {
        left: 10px;
        right: 10px;
    }
    
}



/* section */
.nx-agile-section {
    padding: 80px 0;
    background: #042840;
}

/* container */
.nx-agile-container {
    max-width: 1200px;
    margin: auto;
}
.nx-agile-container h2 {
    color: #ffffff;
}

/* carousel box */
.nx-carousel-inner {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* image */
.nx-carousel-inner img {
    border-radius: 14px;
}

/* arrows */
.nx-prev,
.nx-next {
    width: auto;
}

/* left arrow */
.nx-prev {
    left: -70px;
}

/* right arrow */
.nx-next {
    right: -70px;
}

/* arrow style */
.nx-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #032E4A;
    color: #ffffff;
    border: 2px solid #ffffff;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

/* hover */
.nx-arrow:hover {
    background: #3BE79B;
    color: #042840;
}

/* normal */
.nx-indicators [data-bs-target] {
    width: 30px;
    height: 4px; 
    border-radius: 10px;
    margin: 0 5px;
    transition: 0.3s;
}

/* active */
.nx-indicators .active {
    width: 40px;
    height: 4px; 
}




/* ================= SECTION ================= */
.service-methodology-section {
    padding: 80px 0;
    background: #032E4A;
    position: relative;
    overflow: hidden;
}


/* ================= CONTAINER ================= */
.service-methodology-container {
    width: 60%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ================= TITLE ================= */
.service-methodology-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* ================= CAROUSEL ================= */
.service-methodology-carousel {
    position: relative;
}

/* image wrapper */
.service-methodology-inner {
    border-radius: 20px;
    overflow: hidden;
}

/* image */
.service-methodology-img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

/* hover zoom */
.service-methodology-item:hover .service-methodology-img {
    transform: scale(1.03);
}

/* ================= INDICATORS ================= */
.service-methodology-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
}


/* ================= CONTROLS ================= */
.service-methodology-prev,
.service-methodology-next {
    width: 45px;
    height: 45px;
    background: #032E4A;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(6px);
}

/* left */
.service-methodology-prev {
    left: -60px;
}

/* right */
.service-methodology-next {
    right: -60px;
}

/* icon center fix */
.service-methodology-prev span,
.service-methodology-next span {
    filter: invert(1);
}

/* hover */
.service-methodology-prev:hover,
.service-methodology-next:hover {
    background: #0d6efd;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .service-methodology-prev,
    .service-methodology-next {
        display: none;
    }

    .service-methodology-title {
        font-size: 24px;
    }
}


/* Service dropdown menu */
/* Parent menu */

.header-menu ul li {
    position: relative;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;

    background: #032034;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    display: none;
    opacity: 0;
    visibility: hidden;

    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 1000;

    display: flex;
    flex-direction: column;
}

.header-scrolled .dropdown-menu {
    background: #032034;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}

.service-category-menu {
    position: relative;
}

.service-category-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 200px;   
    height: 100%;
}

.service-category-menu > a {
    padding: 3px 20px !important;
    display: block;
    font-weight: 600;
    color: #333;
}
.service-category-menu > a {
    display: block;
    padding: 10px 18px;
    font-weight: 600;
    color: #0b3a2f;
}

/* optional: first item highlight */
.static-item > a {
    font-weight: 700;
}


.dropdown-menu li a:hover {
    transform: scale(1.08);
}

.sub-menu {
    position: absolute;
    top: 0;
    left: 250px;

    min-width: 240px;
    background: #032034;

    display: none;
    opacity: 0;
    visibility: hidden;
    border-radius: 3px;

    padding: 0 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 10;
}

.header-scrolled .sub-menu {
    background: #032034;
}

.service-category-menu:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    display: block;
}

.sub-menu li a {
    padding: 3px 20px !important;
    display: block;
    color: #333;
    font-size: 14px !important;
}


.sub-menu li a:hover {
    transform: scale(1.08);
}


.mobile-menu-area .header-menu {
    max-height: 80vh;         
    overflow-y: auto;          
}

/* Mobile dropdown open */
.dropdown.active > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.service-category-menu.active > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}





/* ================= MICRO SERVICE MENU ================= */

.sub-menu li.has-micro {
    position: relative;
    margin-bottom: 10px;
}

/* micro service card */
.micro-menu {
    position: absolute;
    top: 0;
    left: 200px;
    margin-left: 10px;

    min-width: 260px;
    background: #032034;
    border-radius: 3px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    display: none;
    opacity: 0;
    visibility: hidden;

    z-index: 20;
}

/* header scrolled color */
.header-scrolled .micro-menu {
    background: #032034;
}

/* hover logic (THIS WAS NOT FIRING BEFORE) */
.sub-menu li.has-micro:hover > .micro-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* micro items */
.micro-menu li a {
    display: block;
    padding: 3px 20px !important;
    font-size: 14px;
    color: #333;
    transition: 0.8s ease;
}

.micro-menu li a:hover {
    transform: scale(1.08);
}

/* arrow indicator */
.sub-menu li.has-micro > a::after {
    content: " ";
    float: right;
    font-size: 16px;
    opacity: 0.6;
}




/* service details */
/* wrapper */
.service-numbered-cards {
    margin-top: 40px;
}

/* card */
.numbered-card { 
    position: relative; 
    z-index: 1; 
    background: #0b2f44; 
    border-radius: 14px; 
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15); 
    /* border: 1px solid rgba(59, 130, 246, 0.2); */ 
    transition: transform 0.35s ease, box-shadow 0.35s ease; 
    height: 100%; 
    overflow: visible; 
}

.numbered-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2.5px;
    background: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(45, 224, 167, .9) 70%, rgba(89, 243, 196, 1) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* hover */
.numbered-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: linear-gradient(135deg, #0f4c75, #0b2f44);
    box-shadow: 
        0 0 15px rgba(59,231,155,0.6),
        0 0 30px rgba(59,231,155,0.4),
        0 0 60px rgba(59,231,155,0.2);
    border: 1px solid rgba(59,130,246,0.3);

    z-index: 99;
}

/* number badge */
.number-badge {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 42px;
    font-weight: 700;
    color: rgba(255,255,255,0.08);
    z-index: 0;
    transition: 0.3s;
}

.service-details-contaner{
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* hover number */
.numbered-card:hover .number-badge {
    color: rgba(255,255,255,0.3);
}

/* icon */
.service_detls_img img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px 15px 0px 0px;
}

/* text content */
.service_dtls_content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* title */
.service_dtls_content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
    margin-left: 1rem;

    color: #ffffff;
}
.service_dtls_content ul li{
    color: #ffffff96;
}
/* description */
.service_dtls_content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    text-align: justify;
}

/* list */
.check-list li {
    color: #e2e8f0;
}

/* list icon */
.check-list li::before {
    color: #22c55e;
}


.hidden-point{
    display: none;
}

.toggle-btn{
    margin-top: 10px;
    background: none;
    border: none;
    color: #3BE79B;
    cursor: pointer;
    font-weight: 600;
}

/* Call to action button */

.cta-wrapper {
    margin-top: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e8fff3 40%, #39e29d 100%);
    color: #0b2f44;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15), inset 0 2px 6px rgba(255, 255, 255, .6);
    transition: .35s ease;
}

/* overlay */
.cta-btn span {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    /* lighter green overlay */
    background: linear-gradient(135deg, #6ef3b5, #39e29d);

    transition: 0.3s ease;
    z-index: -1;
}

/* hover */
.cta-btn:hover span {
    left: 0;
}

.cta-btn:hover {
    background: #00ffb3;
    box-shadow: 0 12px 30px rgba(0, 201, 123, 0.5);
    color: #000000;
}



.cta-btn-new {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;

    background: linear-gradient(135deg, #ffffff 0%, #e8fff3 40%, #39e29d 100%);
    color: #0b2f44;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.6);

    transition: background-color .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
    will-change: transform;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
}

/* hover */
.cta-btn-new:hover {
    background-color: #00ffb3;
    color: #000;
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0, 201, 123, 0.35),
        inset 0 2px 6px rgba(255,255,255,0.4);
}




.process-step-section {
    background: #072c3f;
    padding: 150px 40px;
    margin-bottom: 50px;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.process-card {
    background: linear-gradient(180deg, #0f4c54, #072c3f);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    position: relative;
}

/* STEP LABEL */
.step-label {
    position: absolute;
    top: 0px;
    right: 1px;
    font-size: 18px;
    font-weight: 600;
    color: #3edfa7;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ICON */
.process-card .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #0a3a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #3edfa7;
    border: 2px solid #3EDFA7;
}

/* TITLE */
.process-card h4 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #fff;
}

/* DESCRIPTION */
.process-card p {
    font-size: 16px;
    color: #ffffffcc;
    margin-bottom: 15px;
    text-align: left;
}

/* LIST */
.process-card ul {
    text-align: left;
    padding-left: 18px;
}

.process-card ul li {
    font-size: 12px;
    margin-bottom: 6px;
    color: #d9fdf3;
}

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

.process-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 12px;
    color: #d9fdf3;
}

/* TICK ICON */
.process-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #3edfa7;
    font-size: 12px;
}

/* ACTIVE */
/* .process-card.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(62,223,167,0.25);
} */

.process-card.active .icon {
    color: #3EDFA7;
}

/* HOVER EFFECT */
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(62,223,167,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= PROCESS SECTION ================= */

/* .process-wrapper {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 2rem auto;
}


.process-line {
    position: absolute;
    top: 38%;
    left: 86px;
    right: 86px;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #22c55e);
    border-radius: 10px;
    z-index: 1;
}


.process-step {
    position: relative;
    z-index: 2;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.process-step .icon {
    width: 70px;
    height: 70px;
    background: #0b2f44;
    border-radius: 50%;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(59,130,246,0.4);
    margin-bottom: 8px;
    color: #3b82f6;
}


.process-step:hover .icon {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, #3b82f6, #22c55e);
    color: #fff;
    border-color: transparent;
}


.process-step span {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}



.process-popup {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: 260px;
    background: #0b2f44;
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: left;
    border: 1px solid rgba(59,130,246,0.3);
}

.process-popup h4 {
    margin-bottom: 6px;
    color: #22c55e;
}

.process-popup p {
    font-size: 13px;
    margin-bottom: 6px;
    color: #cbd5e1;
}


.process-step:hover .process-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px) scale(1);
}


.process-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.process-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.6;
}


.process-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #22c55e;
    font-weight: bold;
}



@media (max-width: 992px) {
    .process-wrapper {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .process-line {
        display: none;
    }
} */




/* consultation section */
.partner-section{
    margin-top: 5rem;
    margin-bottom: 3rem;
}


/* SECTION */
.partner-section {
    padding: 80px 20px;
    background: #FFFFFF !important;
    background-image: radial-gradient(#eaeaea 1px, transparent 1px);
    background-size: 40px 40px;
}

.container-partner {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.partner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.partner-desc {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Stats row */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item .NDA {
    font-size: 25px;
    font-weight: 800;
    margin: 0;
    color: #333;
    text-align: center;
    text-decoration-line: grammar-error;
}

.stat-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partner-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partner-title {
        font-size: 32px;
    }

    .stat-item h2 {
        font-size: 42px;
    }
}


.scheduler-section{
    margin-top: 3rem;
    margin-bottom: 3rem;
}
/* MAIN */
.scheduler {
    max-width: 1050px;
    margin: auto;
    background: #fff;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* LEFT CALENDAR */
.calendar {
    width: 45%;
    background: #000;
    color: #fff;
    padding: 40px 30px;
}

.calendar h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff !important;
}

.month-nav {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    text-align: center;
}

.day {
    font-size: 12px;
    opacity: .6;
}

.date {
    padding: 10px 0;
    border-radius: 50%;
    cursor: pointer;
    opacity: .4;
}

.date:hover {
    background: #333;
}

.date.active {
    background: white;
    color: black;
    opacity: 1;
    font-weight: bold;
}

/* RIGHT SIDE */
.right_timezone {
    width: 55%;
    padding: 40px;
}

.duration {
    background: #dbe3ec;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    margin-bottom: 5px;
}

.small {
    color: #555;
    margin-bottom: 6px;
}

.timezone-toggle {
    color: #1a73e8;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 12px;
}

/* TIMEZONE DROPDOWN */
.dropdown_timezone {
    border: 1px solid #d0d7e2 !important;
    border-radius: 6px;
    display: none;
    margin-bottom: 15px;
}

.dropdown_timezone.active {
    display: block;
}

.search-box {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}

.tz-list {
    max-height: 200px;
    overflow-y: auto;
}

.tz-item {
    padding: 10px 12px;
    cursor: pointer;
}

.tz-item:hover {
    background: #eef3ff;
}

.tz-item.active {
    background: #e6efff;
    font-weight: 600;
}

/* TIME SLOTS */
.time-list {
    max-height: 260px;
    overflow-y: auto;
    margin-top: 10px;
}

.time-btn {
    width: 100%;
    padding: 14px;
    border: 1px solid #d7dde5;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: .2s;
}

.time-btn:hover {
    border-color: #000;
}

.time-btn.active {
    border: 2px solid #000;
    background: #f4f4f4;
    font-weight: 600;
}

/* responsive */
@media (max-width: 900px) {
    .scheduler {
        flex-direction: column;
    }
    .calendar,
    .right {
        width: 100%;
    }
}


.booking-wrapper {
    max-width: 720px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px 32px;
    box-shadow: 0 0 0 1px #e5e7eb;
    font-family: "Segoe UI", sans-serif;
}

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

.meeting-info {
    color: #374151;
    font-size: 14px;
    margin-bottom: 25px;
}

.meet-link {
    margin-top: 4px;
    color: #6b7280;
}

.booking-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.field input,
.field textarea {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.field input:focus,
.field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb;
}

.guests {
    margin-top: 10px;
}

.guests label {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.hint {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.guest-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.guest-row input {
    flex: 1;
}

.guest-row button {
    padding: 9px 14px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    border-radius: 6px;
    cursor: pointer;
}

.count {
    font-size: 13px;
    color: #6b7280;
}

.note {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-back {
    padding: 10px 22px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.btn-back:hover {
    background: #4b5563;
}

.btn-confirm {
    padding: 10px 28px;
    background: #6b7280;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

.btn-confirm:hover {
    background: #4b5563;
}

/* Responsive */
@media (max-width: 640px) {
    .booking-form .row {
        grid-template-columns: 1fr;
    }
}


/* ================= HEADER LOGO ================= */

.header-logo {
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
}

.header-logo .logo {
    position: absolute;
    left: 0;
    top: 36%;
    transform: translateY(-50%);
    height: 35px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* default logo */
.logo-dark {
    opacity: 1;
    visibility: visible;
}

.logo-light {
    opacity: 0;
    visibility: hidden;
}

/* on scroll */
#sticky-header.scrolled .logo-dark {
    opacity: 0;
    visibility: hidden;
}

#sticky-header.scrolled .logo-light {
    opacity: 1;
    visibility: visible;
}

/* header */
#sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}



/* =========================
   BASE (Desktop ≥1200px)
========================= */
.approach-section{
    padding:80px 20px;
}

.container-approach{
    max-width:1200px;
    margin:auto;
}

.approach-title{
    text-align:center;
    font-size:36px;
    font-weight:700;
    margin-bottom:60px;
}


/* =========================
   GRID
========================= */
.approach-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* =========================
   CARD
========================= */
.approach-card{
    background:#CDF9E6;
    border-radius:28px;
    padding:35px;
    min-height:210px;
    position:relative;
    transition:.35s ease;
    cursor:pointer;
    overflow:hidden;
}

.approach-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #5EE7AF, #3bcf99);
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.1),
        0 0 25px rgba(94,231,175,0.6),
        0 0 60px rgba(94,231,175,0.4);

    color: #000000;
}

/* =========================
   HEADER
========================= */
.card-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.card-header h3{
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    margin:0;
    color:#083a4a;
}

/* =========================
   TOGGLE ARROW (Top Right)
========================= */
.card-header{
    position:relative;
}
.toggle-arrow{
    position:absolute;
    top:5px;
    right:8px;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.toggle-arrow i{
    position:absolute;
    opacity:0;
    transition:opacity .25s ease;
}

/* collapsed → show down */
.approach-card.collapsed .arrow-down{
    opacity:1;
}

/* expanded → show up */
.approach-card.expanded .arrow-up{
    opacity:1;
}

/* =========================
   PARAGRAPH
========================= */
.approach-text{
    margin-top:20px;
    font-size:15px;
    line-height:1.6;
    color:#1f2937;
    transition:.4s ease;
}

/* Collapsed State */
.approach-card.collapsed .approach-text{
    max-height:60px;
    overflow:hidden;
}

/* Expanded State */
.approach-card.expanded .approach-text{
    max-height:500px;
}



/* =========================
   GREEN CIRCLE BUTTON
========================= */
.circle-arrow-btn{
    position:absolute;
    right:20px;
    bottom:20px;

    width:54px;
    height:54px;
    border-radius:50%;

    background:#3BE79B;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    transition:.3s ease;

    opacity:0;
    transform:translateY(12px);
    pointer-events:none;
}

/* Show only when expanded */
.approach-card.expanded .circle-arrow-btn{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

.arrow-icon{
    font-size:35px;
    font-weight:bold;
    color:#083a4a;
    transition:.3s ease;
}

/* Hover Effect */
.circle-arrow-btn:hover{
    transform:translateX(6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.circle-arrow-btn:hover .arrow-icon{
    transform:translateX(3px);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){
    .approach-grid{
        grid-template-columns:1fr;
    }

    .approach-title{
        font-size:30px;
    }

    .approach-card{
        padding:28px;
    }
}

@media(max-width:576px){
    .approach-title{
        font-size:24px;
    }

    .card-header h3{
        font-size:18px;
    }

    .approach-text{
        font-size:14px;
    }

    .circle-arrow-btn{
        width:46px;
        height:46px;
    }
}




.tech-stack-section {
    position: relative; /* MUST */
    font-family: "Segoe UI", sans-serif;
    background-image: url("/static/assets/images/new-service-details/teck-bg.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

/* TOP CURVE GRADIENT */
.tech-stack-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 70px;
    background: radial-gradient(ellipse at center, rgb(62 223 167) 0%, rgb(62 223 167 / 93%) 25%, rgb(62 223 167) 50%, rgb(255 255 255 / 64%) 75%);
    border-radius: 0 0 400px 400px;
    filter: blur(40px);
    opacity: 0.9;
    z-index: -1;
}


.container-tech-stack {
    max-width: 1200px;
    margin: auto;
}

.tech-header {
    text-align: center;
    margin-bottom: 30px;
}

.tech-header .tag {
    display: inline-block;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding-top: 4rem;
}

.tech-header h2 {
    font-size: 42px;
    color: #1e3a8a;
    font-weight: 700;
}

/* block layout */
.tech-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* left text */
.tech-info h3 {
    font-size: 34px;
    color: #0B6D6D;
    margin-bottom: 14px;
}

.tech-info p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 520px;
}

.tech-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: none;
}

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

/* tools grid */
.tech-tools {
    display: grid;
    /* grid-auto-flow: column; */
    grid-template-columns: repeat(3, auto);
    gap: 28px 20px;
}


.tool {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: #1f2937;
}

.tech-tools-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}





@media (max-width: 575px) {

    /* main block stacked */
    .tech-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* title first */
    .tech-info {
        order: 1;
        text-align: center;
    }

    /* icons second */
    .tech-tools {
        order: 2;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

    /* description last */
    .tech-info p {
        order: 3;
        margin-top: 15px;
    }

    .tech-info h3 {
        font-size: 26px;
    }
}




.how-it-works {
    background: #f7f8fc;
    padding: 80px 20px;
}

.hiw-box {
    max-width: 1200px;
    margin: auto;
    background: #f9fafc;
    border-radius: 24px;
    padding: 50px;
}

.hiw-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* layout */
.hiw-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* steps */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    display: flex;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s ease;
    background: transparent;
}

.step:hover,
.step.active {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.step-no {
    font-size: 22px;
    font-weight: 700;
    color: #6d28d9;
    min-width: 40px;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

/* hidden description */
.step-details {
    display: none;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.step:hover .step-details,
.step.active .step-details {
    display: block;
}

.timeline {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4f46e5;
}

/* image */
.hiw-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-image img {
    max-width: 100%;
    height: auto;
}

/* responsive */
@media (max-width: 900px) {
    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .hiw-image {
        margin-top: 30px;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-left: 16px;
    text-align: justify;
}

/* green check icon */
.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;

    width: 18px;
    height: 18px;

    color: #22c55e;
    font-weight: 700;
    font-size: 14px;
}

.sidebar_box {
	background: #032E4A;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.sidebar_box:hover {
	transform: scale(1.03);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.col-lg-8 {
    overflow: visible;
}

.tech-stack-cart-section {
    position: relative;
    background: #032E4A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-stack-cart-section:hover {
    transform: translateY(-10px) scale(1.03); 
    z-index: 10;
}


/* Section */
.services-related-section {
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}
/* LEFT BOTTOM */
.services-related-section::before {
    content: "";
    position: absolute;
    left: -575px;
    bottom: -180px;
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(94, 231, 175, 0.8) 0%, rgba(94, 231, 175, 0.4) 40%, rgba(94, 231, 175, 0.1) 70%, transparent 100%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

/* RIGHT TOP */
.services-related-section::after {
    content: "";
    position: absolute;
    right: -600px;
    top: -251px;
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(94, 231, 175, 0.8) 0%, rgba(94, 231, 175, 0.4) 40%, rgba(94, 231, 175, 0.1) 70%, transparent 100%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.services-grid {
    overflow-x: auto;
    scrollbar-width: none;
}
.services-grid::-webkit-scrollbar {
    display: none;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Slider wrapper */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    
}

/* Grid slider */
.services-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(25% - 18px);
    gap: 24px;
    scroll-behavior: smooth;
    
}

/* Card */
.service-card {
    background: #CDF9E6;
    border-radius: 10px;
    padding: 5px;
    transition: 0.35s ease;
    position: relative;
    
}

.service-card img {
    max-width: 100%;
    /* margin-bottom: 24px; */
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* Hover */
.service-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #5EE7AF, #3bcf99);

    border-radius: 20px;
}



/* Slider button – EXACT like image */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    z-index: 50;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

/* Left */
.slider-btn.prev {
    left: -60px;
}

/* Right */
.slider-btn.next {
    right: -60px;
}

.slider-btn:hover {
    background: #5EE7AF;
}

/* Hover (subtle, like SaaS sites) */
.slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}


/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-auto-columns: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-auto-columns: 100%;
    }

    .section-title {
        font-size: 26px;
    }
}


/* CTA Section */
.service-cta-section{
    padding-top:70px;
    padding-bottom:20px;
    background-image: url("/static/assets/images/new-service-details/cta-bg-img.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position:relative;
}

.cta-section {
    padding: 80px 20px;
    background: #032E4A;
}


/* CTA Container */
.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 30px;
    text-align: center;
    background: #0f3b57;
    border-radius: 32px;
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.35s ease;
}



/* Heading */
.cta-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

/* Paragraph */
.cta-container p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Hover (clean + premium) */
.cta-container:hover {
    transform: translateY(-6px);
    
    background: linear-gradient(135deg, #0f4c75, #0b2f44);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 231, 155, 0.4), 0 0 40px rgba(59, 231, 155, 0.25);

    border: 1px solid rgba(59,130,246,0.35);

    z-index: 99;
}

.cta-container:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1.5px;
    background: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(45, 224, 167, .9) 70%, rgba(89, 243, 196, 1) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.scta-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e8fff3 40%, #39e29d 100%);
    color: #0b2f44;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15), inset 0 2px 6px rgba(255, 255, 255, .6);
    transition: .35s ease;
}


.scta-btn:hover {
    background: #00ffb3;
    box-shadow: 0 12px 30px rgba(0, 201, 123, 0.5);
    color: #000000;
}


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

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-container p {
        font-size: 15px;
    }
}




/* ===== VIDEO SECTION ===== */
.video-section{
    padding:70px 16px;
    background:#04344c;
}

.video-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

/* ===== TEXT ===== */

.video-text h2{
    font-size:40px;
    margin-bottom:16px;
    color:#F5F7FA;
    letter-spacing:1px;
}

.video-text p{
    font-size:18px;
    max-width:800px;
    margin:0 auto 40px;
    color:#B9BDC7;
    line-height:1.6;
}

/* ===== VIDEO WRAPPER ===== */

.video-wrapper{
    position:relative;
    max-width:900px;
    margin:40px auto 0;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.5);
}

/* thumbnail image */

.video-thumb{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    border-radius:28px;
}

/* ===== PLAY BUTTON ===== */

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:60px;
    background:#ff0000;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.play-btn span{
    width:0;
    height:0;
    border-left:18px solid #fff;
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
    margin-left:4px;
}

.fancybox__backdrop{
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(6px);
}


/* =========================
LARGE LAPTOP
========================= */

@media (max-width:1200px){

.video-text h2{
    font-size:36px;
}

.video-thumb{
    height:450px;
}

}


/* =========================
TABLET
========================= */

@media (max-width:991px){

.video-section{
    padding:60px 20px;
}

.video-text h2{
    font-size:32px;
}

.video-text p{
    font-size:17px;
}

.video-thumb{
    height:400px;
}

.play-btn{
    width:70px;
    height:50px;
}

.play-btn span{
    border-left:16px solid #fff;
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
}

}


/* =========================
SMALL TABLET
========================= */

@media (max-width:768px){


.video-text h2{
    font-size:28px;
}

.video-text p{
    font-size:16px;
}


.video-thumb {
    width: 100%;
    height: 320px;
}

.play-btn{
    width:60px;
    height:45px;
}

}


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

@media (max-width:575px){

.video-section{
    padding:50px 15px;
}

.video-text h2{
    font-size:24px;
}

.video-text p{
    font-size:15px;
    line-height:1.5;
}

.video-wrapper{
    margin-top:30px;
}

.video-thumb{
    height:230px;
}

.play-btn{
    width:55px;
    height:40px;
}

.play-btn span{
    border-left:14px solid #fff;
    border-top:9px solid transparent;
    border-bottom:9px solid transparent;
}

}

/* about costom design */
/* who we are */
.who-section{
    background:#0b3a53;
    padding-top:90px;
    padding-bottom: 45px;
    color:#fff;
    font-family:system-ui;
}

.who-container{
    max-width: 1500px;
    margin: auto;
    padding: 50px;
}

/* ===============================
   TOP AREA
================================*/
.who-top{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:90px;
    padding: 50px;
}

/* LEFT BIG IMAGE */
.who-image-left img{
    width:550px;
    border-radius:50px 0px;
    display:block;
}

/* RIGHT CONTENT */
.who-content{
    flex:1;
    position:relative;
    padding-bottom:200px;
}

.who-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
    position:relative;
    color:#ffffff;
}

/* underline glow */
.who-content h2::after{
    content:"";
    position:absolute;
    left:230px;
    bottom:20px;
    width:348px;
    height:2px;
    border-radius:5px;
    background:linear-gradient(to right,
        rgba(49,210,160,0) 0%,
        rgba(49,210,160,.4) 15%,
        rgba(49,210,160,1) 50%,
        rgba(49,210,160,.4) 85%,
        rgba(49,210,160,0) 100%);
    filter:blur(.3px);
}


.who-content p{
    color:#c7d7df;
    line-height:1.7;
    margin-bottom:28px;
}

/* small image */
.who-image-small{
    position:absolute;
    display:inline-block;
    right:0;
}

.who-image-small img{
    width:370px;
    height:230px;
    border-radius:50px 0px;
}

/* frame border */
.who-image-small::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:-20px;
    right:20px;
    border-radius:60px 0px;
    border:2px solid #ffffff;
}

/* ================= CARDS LAYOUT ================= */

.who-cards{
    display:flex;
    gap:30px;
}

.who-item{
    position:relative;
    flex:1;
    padding-top:40px;
}


/* ================= CARD ================= */

.who-card{
    background:#ffffff08;
    padding:70px 28px 30px;
    border-radius:18px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    text-align:left;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 12px 24px rgba(0,0,0,.25);
}


/* 3 SIDE GLOW BORDER */
.who-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1.5px;

    background:linear-gradient(
        to bottom,
        transparent 0%,
        transparent 5%,
        rgba(45,224,167,.9) 70%,
        rgba(89,243,196,1) 100%
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}


/* LIGHT SCAN ANIMATION */
.who-card::before{
    content:"";
    position:absolute;
    left:-40%;
    bottom:-120%;
    width:180%;
    height:180%;
    opacity:0;

    background:linear-gradient(
        to top,
        rgba(0,255,200,0) 0%,
        rgba(0,255,200,.15) 30%,
        rgba(0,255,200,.40) 50%,
        rgba(0,255,200,.15) 70%,
        rgba(0,255,200,0) 100%
    );

    transform:rotate(8deg);
}

@keyframes cardScan{
    0%{ bottom:-120%; }
    100%{ bottom:120%; }
}

.who-card:hover::before{
    animation:cardScan 1.6s linear infinite;
    opacity:1;
}


/* ================= BADGE (OUTSIDE CARD) ================= */

.who-badge{
    position:absolute;
    top:30;
    left:50%;
    transform:translate(-50%, -50%);
    width:85px;
    height:85px;
    border-radius:50%;
    background:#0b3a53;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
}


/* ICON */
.who-icon img{
    width:80px;
    height:80px;
    object-fit:contain;
    transform: translate(2px, 0);
}


/* ================= TEXT ================= */

.who-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#fff;
}

.who-card p{
    color:#cfe7f0;
    line-height:1.6;
}


/* ===============================
   RESPONSIVE
================================*/
@media (max-width:1400px) {
    .who-content h2::after {
    width: 254px;
    }
}

@media (max-width:1300px) {
    .who-content h2::after {
    width: 254px;
    }
}



@media (max-width:1200px){

.who-content h2::after {
    left: -4px;
    width: 348px;
    top: 51px;
}


.who-image-left img{
    width:100%;
    max-width:480px;
}

.who-image-small img{
    width:320px;
    height:auto;
}

.who-content{
    padding-bottom:150px;
}

}


@media (max-width:1100px) {
    .who-image-small {
    right: -40px;
}
}

/* =========================
   TABLET (992 ↓)
========================= */
@media (max-width:992px){

.who-content p {
    margin-top: 30px;
}

.who-top{
    flex-direction:column;
    gap:40px;
    text-align:center;
}





/* order control */
.who-content{
    order:1;
}

.who-image-left{
    order:2;
}



.who-content{
    padding-bottom:0;
}

.who-image-small{
    position:relative;
    margin-top:30px;
    right:auto;
}

.who-image-small::before{
    content:"";
    position:absolute;

    top:0;
    bottom:0;
    left:-12px;
    right:12px;

    border-radius:60px 0;
    border:2px solid #ffffff;
}

.who-content h2::after{
    left:50%;
    transform:translateX(-50%);
    width:220px;
}

/* cards → 2 column */
.who-cards{
    flex-wrap:wrap;
}

.who-item{
    flex:0 0 calc(50% - 15px);
}

}


/* =========================
   MOBILE (768 ↓)
========================= */
@media (max-width:768px){

.who-section{
    padding:70px 5%;
}

.who-content h2{
    font-size:32px;
}

.who-image-left img{
    border-radius:30px 0;
}

.who-image-small img{
    width:100%;
    max-width:320px;
}

.who-card{
    padding:60px 22px 24px;
}

/* 1 column cards */
.who-item{
    flex:0 0 100%;
}

.who-cards{
    gap:25px;
}
.who-content p {
    margin-top: 30px;
}

}


/* =========================
   SMALL MOBILE (480 ↓)
========================= */
@media (max-width:480px){

.who-content h2{
    font-size:26px;
}

.who-card h3{
    font-size:20px;
}

.who-card p{
    font-size:14px;
    line-height:1.5;
}

.who-badge{
    width:70px;
    height:70px;
}

.who-icon img{
    width:60px;
    height:60px;
}

}

/* ================= VALUE SECTION ================= */

.value-section{
    padding:40px 7%;
    background:#0b3a53;
}

/* gradient rounded container */
.value-wrapper{
    max-width:1200px;
    margin:auto;
    padding:70px 50px;
    border-radius:35px;

    background:
    radial-gradient(circle at -5% 100%, rgba(31,169,122,.55) 0%, transparent 35%),
    radial-gradient(circle at 105% -5%, rgba(31,169,122,.55) 0%, transparent 35%),
    #082c44;

    box-shadow: inset 0 0 60px rgba(0,0,0,.35);
}

.value-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:14px;
    padding:1.5px;

    background:linear-gradient(
        to bottom,
        transparent 0%,
        transparent 10%,
        rgba(45,224,167,.9) 70%,
        rgba(89,243,196,1) 100%
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;
}

/* grid */
.value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* card */
.value-card{
    text-align:center;
    padding:28px 22px;
    border-radius:14px;

    background:rgba(255,255,255,.05);
    /* border:1px solid rgba(255,255,255,.18); */

    backdrop-filter:blur(6px);

    transition:.35s ease;
}

/* icon circle */
.v-icon {
    width: 60px;              /* একটু বাড়ালাম যাতে image clean বসে */
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
}

/* IMPORTANT PART */
.v-icon img{
    width: 50px;              /* circle এর ভিতরে proper ratio */
    height: 50px;
    object-fit: contain;
    display: block;
}
.v-icon{
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(62, 223, 167, 0.25);
}
/* text */
.value-card h4{
    color:#fff;
    font-size:16px;
    margin-bottom:8px;
}

.value-card p{
    color:#cfe7f0;
    font-size:13px;
    line-height:1.5;
}

/* hover */
.value-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,255,200,.25);
    border-color:rgba(0,255,200,.6);
}
.value-card:hover::after{
    padding:2px;
    filter:brightness(1.4);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
    .value-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .value-wrapper{
        padding:50px 25px;
        border-radius:25px;
    }
    .value-grid{
        grid-template-columns:1fr;
    }
}

/* ================= SECTION ================= */

.foundation-section{
    background:#032E4A;
    padding:60px 7%;
    color:#fff;
    font-family:system-ui;
}

.foundation-container{
    max-width:1100px;
    margin:auto;
}

/* ================= TITLE ================= */

.foundation-title{
    text-align:center;
    font-size:55px;
    font-weight:700;
    margin-bottom:30px;
    color: #ffffff;
}

.foundation-title span{
    display:block;
    color:#27e3a5;
    font-size:35px;
    margin-top:6px;
}


/* ================= GRID ================= */

.foundation-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px 70px;
}


/* ================= CARD ================= */

.foundation-card{
    position:relative;
    background:#082c44;
    padding:45px 28px 30px;
    border-radius:14px;

    transition:
        transform .45s cubic-bezier(.19,1,.22,1),
        box-shadow .45s cubic-bezier(.19,1,.22,1),
        background .45s ease,
        filter .45s ease;

    box-shadow:0 12px 25px rgba(0,0,0,.35);
    overflow:hidden;
}

.foundation-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:14px;
    background: 
    radial-gradient(circle at 50% 50%, rgba(49, 196, 128, 0.25), transparent 55%), 
    radial-gradient(circle at 26% 46%, rgba(57, 212, 141, .15), transparent 0%), 
    linear-gradient(120deg, rgba(57, 226, 157, .12), transparent 9%);
    opacity:0.9;
    pointer-events:none;
}

/* ================= TOP GREEN BAR ================= */

.card-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:55px;
    border-radius:12px 12px 0 0;
    background:linear-gradient(90deg,#39e29d,#2ad39f);
    overflow:hidden;
}

/* light sweep */
.card-top::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55), transparent 80%);
    transform:translateX(-120%);
    transition:transform .8s ease;
}


/* ================= ICON ================= */

.card-icon {
    position: absolute;
    top: 24px;
    left: 22px;
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    background: #1acd8c;
    border: 3px solid #082c44;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s ease;
    z-index: 2;
}

/* IMAGE FIX */
.card-icon img {
    width: 50px;            
    height: 50px;
    object-fit: contain;
    display: block;
}

/* Optional subtle glow */
.card-icon::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(57,226,157,.25) 0%, transparent 70%);
    z-index:-1;
    opacity:0;
    transition:.35s ease;
}

.value-card:hover .card-icon{
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.value-card:hover .card-icon::after{
    opacity:1;
}


/* ================= TEXT ================= */

.foundation-card h3{
    margin-top:60px;
    font-size:20px;
    margin-bottom:10px;
    color: #ffffff;
}

.foundation-card p{
    color:#cde3ee;
    font-size:14px;
    line-height:1.6;
}


/* ================= HOVER EFFECT ================= */

.foundation-card:hover{
    transform:translateY(-10px);
    background:#0b3f5c;

    box-shadow:
        0 20px 45px rgba(0,0,0,.45),
        0 0 30px rgba(0,255,200,.25);
}

.foundation-card:hover::before{
    opacity:1;
}

.foundation-card:hover .card-top::after{
    transform:translateX(120%);
}

.foundation-card:hover .card-icon{
    box-shadow:0 0 18px rgba(57,226,157,.7);
    transform:scale(1.08);
}


/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.foundation-grid{
    grid-template-columns:1fr;
    gap:40px;
}

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

.foundation-title span{
    font-size:16px;
}

}


/* ================= EVOLUTION ================= */


.evolution-section{
    background:#0b3a53;
    padding: 90px 50px;
    color:#fff;
}

.evolution-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:90px;
}

/* LEFT SIDE */
.evo-left{
  flex:1;
  margin-top: 35px;
}

.evo-left h2{
    font-size:38px;
    margin-bottom:15px;
    color: #ffffff;
}

.evo-left p{
    color:#c7d7df;
}

.evo-stat{
    display:block;
    margin:15px 0 25px;
    color:#ffffff;
    font-weight:600;
    position:relative;
}

.evo-stat-p::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 18px;
    background: linear-gradient(90deg, transparent, #23e3a6, transparent);
    transform: translateX(0%);
}

.evo-image {
    position: relative;
    display: inline-block;
}

.evo-image img{
    width: 250px;
    border-radius: 50px 0 50px 0;
    border: 1px solid rgba(255,255,255,.25);
    display: block;
}

.evo-image::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 167px;
    top: 0;
    bottom: 48px;
    left: -15px;
    right: 15px;
    border-radius: 50px 0 50px 0;
    border: 1px solid #ffffff;
}

/* RIGHT SIDE */
.evo-right{
    flex:1;
    position:relative;
}

.evo-label{
    color:#23e3a6;
    font-weight:600;
    font-size: 30px;
}

.evo-right h2{
    font-size:42px;
    margin:8px 0 15px;
    color: #ffffff;
}

.evo-right h2::after{
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    margin-top: 15px;
    background: linear-gradient(90deg, transparent, #23e3a6, transparent);
    transform: translateX(0%);
}


.evo-right p{
    color:#c7d7df;
    line-height:1.7;
    max-width:500px;
}

/* overlay image */
.evo-right-img{
    position:absolute;
    right:0;
    bottom:-80px;
    width:330px;
}

.evo-right-img img{
    width:100%;
    border-radius:40px 0 40px 0;
    opacity:.9;
}



@media (max-width:1200px){

.evolution-section{
    padding:80px 30px;
}

.evolution-container{
    gap:60px;
}

.evo-left h2{
    font-size:34px;
}

.evo-right h2{
    font-size:36px;
}

.evo-image img{
    width:220px;
}

.evo-image::before{
    width: 220px;
    height: 147px;
}

}

@media (max-width:992px){

.evolution-container{
    flex-direction:column;
    text-align:center;
    gap:50px;
}

.evo-left{
    margin-top:0;
}

.vision-to-reality{
    justify-content:center;
    flex-wrap:wrap;
}

.evo-right h2 {
    font-size: 32px;
    line-height: 60px;
}
.evo-right h2::after {
    width: 100%;
}

.ms-title{
    margin-top: 50px;
}
.ms-hr-top{

    display: none;
}
.ms-hr-bottom{

    display: none;
}
.evo-right p{
    max-width:100%;
}

.evo-image img{
    width:90%;
    margin-left: 40px;
}

.evo-image::before {
    width: 90%;
    height: 100%;
    margin-left: 20px;
}
.ms-timeline {
    margin-left: 50px;
}

}

@media (max-width:768px){

.evolution-section{
    padding:70px 20px;
}

.evo-left h2{
    font-size:28px;
}

.evo-right h2{
    font-size:28px;
}

.evo-label{
    font-size:22px;
}



}

@media (max-width:480px){

.evo-left h2{
    font-size:24px;
}

.evo-right h2{
    font-size:22px;
}

.evo-stat{
    font-size:18px;
}

.evo-stat-p{
    font-size:14px;
}



}





/* =====================================================
   MILESTONE SECTION (UNIQUE CLASSES)
===================================================== */

.ms-section{
    background:#0b3a53;
    padding:10px 0px 0px 0px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.ms-hr-top {
    border: none;
    height: 3px;
    width: 62%;
    background-color:#ffffffc9;
}
.ms-hr-bottom {
    border: none;
    height: 3px;
    width: 75%;
    background-color:#ffffffc9;
}
.ms-bg-img{
    position: absolute;
    right: 130px;
    top: 68px;
    width: 500px;
    z-index: 1;
    pointer-events: none;
}

/* image style */
.ms-bg-img img{
    width:100%;
    opacity:.85;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
}

/* timeline content above image */
.ms-timeline{
    position:relative;
    z-index:2;
}

.ms-container{
    max-width:1000px;
    margin:auto;
}

/* TITLE */
.ms-title{
    position: relative;  
    text-align:center;
    font-size:38px;
    margin-bottom:90px;
    color: #ffffff;
}
.ms-title::after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 65%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #23e3a6, transparent);
    transform: translateX(-50%);
}
/* TIMELINE WRAPPER */
.ms-timeline{
    position:relative;
}

/* center vertical line */
.ms-line{
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:#23e3a6;
    transform:translateX(-50%);
}

/* rows */
.ms-row{
    position:relative;
    width:50%;
    padding:20px 55px;
}

.ms-left{
    text-align:right;
}

.ms-right{
    left:50%;
}

/* dots */
.ms-dot{
    position:absolute;
    top:30px;
    width:16px;
    height:16px;
    background:#23e3a6;
    border-radius:50%;
    box-shadow:0 0 15px #23e3a6;
}

.ms-left .ms-dot{
    right:-8px;
}

.ms-right .ms-dot{
    left:-8px;
}

/* content */
.ms-content h3{
    font-size:28px;
    margin-bottom:6px;
    color: #ffffff;
}

.ms-content h4{
    color:#d6f5ee;
    margin-bottom:10px;
    color: #ffffff;
}



.ms-content p{
    color:#c7d7df;
    line-height:1.6;
    max-width:360px;
}

.ms-left .ms-content{
    margin-right:45px;
}

.ms-right .ms-content{
    margin-left:45px;
}

/* bottom glow line */
.ms-timeline::after{
    content:"";
    position:absolute;
    bottom:-62px;
    left:50%;
    width:90%;
    height:3px;
    background:linear-gradient(90deg,transparent,#23e3a6,transparent);
    transform:translateX(-50%);
}



/* =====================================================
   RESPONSIVE
===================================================== */

/* tablet */
@media(max-width:992px){

   .ms-bg-img{
        position:relative;
        width:100%;
        max-width:420px;
        margin:40px auto 0;
        top:auto;
        right:auto;
        text-align:center;
    }

    .ms-bg-img img{
        mask-image:none;
        -webkit-mask-image:none;
        opacity:1;
        border-radius: 30px;
        margin-bottom: 50px;
    }

.evolution-container{
    flex-direction:column;
    text-align:center;
}

.evo-right-img{
    position:relative;
    bottom:auto;
    margin-top:30px;
}

/* timeline mobile */
.ms-row,
.ms-left,
.ms-right{
    width:100%;
    left:0;
    text-align:left;
    padding:20px 0 20px 70px;
}

.ms-line{
    left:28px;
}

.ms-dot{
    left:20px !important;
    right:auto !important;
}

.ms-content{
    margin:0 !important;
}

}

/* mobile */
@media(max-width:600px){

.evo-left h2{ font-size:30px; }
.evo-right h2{ font-size:32px; }

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

.evo-image img{
    width:90%;
}

}


/* =====end Milestone Timeline Section ===== */




.dcstats-sec{
    background:#0b3a52;
    padding:90px 0;
}

.dcstats-wrap{
    max-width:1150px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.dcstats-item{
    width:230px;
    height:230px;
    position:relative;
}

/* SVG rotate start from top */
.dcstats-svg{
    transform:rotate(-90deg);
}

/* background ring */
.dcstats-bg{
    fill:none;
    stroke:#2c566c;
    stroke-width:4;
}

/* main progress */
.dcstats-progress{
    fill:none;
    stroke:#39e29d;
    stroke-width:4;
    stroke-linecap:round;
    stroke-dasharray:565;
    stroke-dashoffset:565;
    transition:2s ease;
}


@keyframes rotateArc{
    from{stroke-dashoffset:0}
    to{stroke-dashoffset:-565}
}

/* inner disk */
.dcstats-content{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    color:#fff;
}

.dcstats-content::before{
    content:"";
    position:absolute;
    width:170px;
    height:170px;
    background:#123e56;
    border-radius:50%;
    z-index:-1;
}

.dcstats-number{
    font-size:48px;
    font-weight:700;
    margin:0;
    color: #ffffff;
}

.dcstats-content p{
    font-size:15px;
    color:#cde1ea;
}


/* Large Laptop */
@media (max-width:1200px){

.dcstats-wrap{
    max-width:95%;
    gap:30px;
}

.dcstats-item{
    width:210px;
    height:210px;
}

.dcstats-content::before{
    width:150px;
    height:150px;
}

.dcstats-number{
    font-size:40px;
}

}


/* Tablet */
@media (max-width:992px){

.dcstats-wrap{
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
}

/* 2 column */
.dcstats-item{
    width:calc(50% - 20px);
    height:auto;
    display:flex;
    justify-content:center;
}

.dcstats-svg{
    width:200px;
    height:200px;
}

.dcstats-content::before{
    width:140px;
    height:140px;
}

.dcstats-number{
    font-size:36px;
}

}






.story-section {
  background: #04344c;
  color: #F5F7FA;
  padding: 80px 150px;
}

.story-top-title{
    text-align: center !important;
    color: #F5F7FA;
    margin-bottom: 100px;
}
.story-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* LEFT */
.story-left h2 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #F5F7FA;
}

.story-left h2 span {
  color: #F5F7FA;
}

.story-left p {
  color: #B9BDC7;
  max-width: 100%;
  line-height: 1.7;
  margin-bottom: 30px;
}

.story-image {
  position: relative;
  max-width: 100%;
}

.story-image img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  filter: brightness(0.6);
  border-radius: 10px;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #12f3a2;
}

/* RIGHT ACCORDION */
.story-right .item {
  border-bottom: 1px solid #F0F8FF;
  padding: 5px 0;
}

.story-right .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.story-right h3 {
    font-size: 25px;
    letter-spacing: 1px;
    color: #F5F7FA;
}

.toggle {
  font-size: 26px;
  font-weight: bold;
  color: #01f586;
}

.story-subtitle {
  margin-top: 6px;
  color: #01f586;
  font-size: 13px;
  letter-spacing: 1px;
}

/* CONTENT */
.content {
  display: none;
  margin-top: 12px;
  color: #B9BDC7;
  font-size: 14px;
  line-height: 1.6;
}

.content p{
    font-size: 16px;
    line-height: 26px;
    color: #E6E9EE;
    font-weight: 400;
    font-family: "Fira Sans";
    transition: 0.5s;
}

.item.active .content {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: 1fr;
  }

  .story-left h2 {
    font-size: 40px;
    line-height: 60px;
  }

  .story-section {
    padding: 60px 60px;
  }
}


.why-choose-us {
  padding: 50px 0;
  background: #0A2A5A;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-media {
  margin: 0;
  text-align: center;
}

.why-choose-media img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: inline-block;
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 0;
  }
}




.uxdc-service-section{
  padding:80px 20px 120px;
  background:linear-gradient(180deg,#0b3a52,#0e445f);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu;
}

.uxdc-service-container{max-width:1200px;margin:auto;}

.uxdc-service-container .uxdc-title{
  text-align:center;
  font-size:44px;
  color:#F5F7FA;
  margin-bottom:10px;
  letter-spacing:.5px;
}

.uxdc-service-container .uxdc-text-center{
  text-align:center;
  color:#BFD9E4;
  font-size:16px;
  margin-bottom:60px;
}

.uxdc-service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  align-items:start;
  margin-top: 130px;
}

.uxdc-service-grid .uxdc-service-card:nth-child(2){margin-top:-90px;}
.uxdc-service-grid .uxdc-service-card:nth-child(5){margin-top:-120px;}

.uxdc-service-card{
  position:relative;
  padding:42px 30px;
  border-radius:18px;
  text-align:center;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  backdrop-filter:blur(8px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04),0 18px 45px rgba(0,0,0,.35);
  transition:.35s ease;
}
.uxdc-service-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1.5px;
  background: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(45, 224, 167, .9) 70%, rgba(89, 243, 196, 1) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}



.uxdc-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,255,200,.25);
    border-color:rgba(0,255,200,.6);
}
.uxdc-service-card:hover::after{
    padding:2px;
    filter:brightness(1.4);
}

.uxdc-service-card{
  position: relative;
  padding: 42px 30px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04),0 18px 45px rgba(0,0,0,.35);
  transition: .35s ease;
}

/* Animated 2px border */
.uxdc-service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;   /* border thickness */
  background: linear-gradient(
      90deg,
      transparent,
      #23e3a6,
      transparent,
      #23e3a6,
      transparent
  );
  background-size: 300% 300%;
  
  /* this makes it only border */
  -webkit-mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

/* Hover effect */
.uxdc-service-card:hover::before{
  opacity: 1;
  animation: borderRun 6s linear infinite;
}

@keyframes borderRun{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 300% 50%; }
}


.uxdc-icon-wrap{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,.08);
  box-shadow:
      inset 0 0 12px rgba(255,255,255,.05),
      0 8px 18px rgba(0,0,0,.15);

  backdrop-filter: blur(6px);
}

/*  Image Icon Control */
.uxdc-icon-wrap img{
  width:60px;
  height:60px;
  object-fit:contain;
  display:block;

}

.uxdc-service-card h3{font-size:20px;font-weight:700;color:#fff;margin-bottom:12px;}
.uxdc-service-card p{font-size:15px;color:#cfe5ee;line-height:1.6;margin-bottom:22px;}

/* BUTTON BASE (same look) */
.uxdc-service-btn{
  position:relative;
  display:inline-block;
  padding:10px 22px;
  border-radius:10px;
  color:#eaf6ff;
  font-size:13px;
  font-weight:600;
  text-decoration:none;

  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);

  transition:.25s ease;
}
.uxdc-service-btn::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(to bottom, transparent 0%, transparent 10%, rgba(45, 224, 167, .9) 70%, rgba(89, 243, 196, 1) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* remove any color change */
.uxdc-service-btn:hover{
  background:rgba(255,255,255,.08);
  color:#eaf6ff;
  border-color:rgba(255,255,255,.18);
}

/* animated border same as card */
.uxdc-service-btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:8px;
  padding:1.6px;

  background:linear-gradient(
      90deg,
      transparent,
      #23e3a6,
      transparent,
      #23e3a6,
      transparent
  );
  background-size:300% 300%;

  -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;

  opacity:0;
  pointer-events:none;
}

/* ONLY BORDER RUNS */
.uxdc-service-btn:hover::before{
  opacity:1;
  animation:borderRunReverse 6s linear infinite;
}

@keyframes borderRunReverse{
  0%{ background-position: 300% 50%; }
  100%{ background-position: 0% 50%; }
}

@media(max-width:992px){
  .uxdc-service-container .uxdc-title{font-size:34px;}
  .uxdc-service-grid{grid-template-columns:repeat(2,1fr);gap:30px;}
  .uxdc-service-grid .uxdc-service-card:nth-child(2),
  .uxdc-service-grid .uxdc-service-card:nth-child(5){margin-top:0;}
}

@media(max-width:600px){
  .uxdc-service-section{padding:60px 15px 80px;}
  .uxdc-service-container .uxdc-title{font-size:28px;}
  .uxdc-service-container .uxdc-text-center{font-size:14px;margin-bottom:40px;}
  .uxdc-service-grid{grid-template-columns:1fr;gap:22px;}
  .uxdc-service-card{padding:32px 22px;}
}

.uxdc-btn-center{
  display:flex;
  justify-content:center;
  margin-top:-20px;
}




/* =========================
   CASE STUDIES SECTION
========================= */
.cs-section{
  padding: 80px 8%;
  text-align: center;
  background: #0A2A5A;
}

.cs-title{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F5F7FA;
  letter-spacing: 1px;
}

.cs-desc{
  font-size: 18px;
  margin-bottom: 40px;
  color: #B9BDC7;
}


/* =========================
   CAROUSEL WRAPPER
========================= */
.cs-carousel{
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  height: 450px;
  background: #163D59;
  border: 2px solid #ffffff;
  box-shadow: 0 35px 80px rgba(0,0,0,0.6);
}


/* =========================
   TRACK & SLIDES
========================= */
.cs-track{
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}

.cs-slide{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 100%;
}

.cs-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #163D59;
  display: block;
  border-radius: 16px;
}


/* =========================
   ARROWS
========================= */
.cs-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #163D59;
  border: 1.5px solid #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: 0.3s ease;
}

.cs-prev{ left: 14px; }
.cs-next{ right: 14px; }

.cs-nav:hover{
  background: #0df581;
  color: #0F1115;
}


/* =========================
   RESPONSIVE HEIGHT
========================= */
@media (max-width: 992px){
  .cs-title{ font-size: 34px; }
  .cs-carousel{ height: 380px; }
}

@media (max-width: 768px){
  .cs-section{ padding: 60px 6%; }
  .cs-title{ font-size: 30px; }
  .cs-desc{ font-size: 16px; }
  .cs-carousel{ width: 100%; height: 300px; }
}

@media (max-width: 480px){
  .cs-carousel{ height: 220px; }
  .cs-nav{
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .cs-prev{ left: 8px; }
  .cs-next{ right: 8px; }
}



/* home section design */
/* Technology */

.tech-section{
  background:#09e2ac;
  padding:20px 0;
  max-width: 100%;
}
.tech-bg-section{
  background:#032E4A;
  max-width: 100%;
  border-radius:50px;
}

.tech-container{
  max-width:90%;
  padding: 70px 50px;
  margin:auto;
  border-radius:25px;
  position:relative;
  color:#ffffff;
}

/* Green strips */
.tech-container::before,
.tech-container::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:14px;
  background:#39e29d;
}

.tech-container::before{
  top:-14px;
  border-radius:25px 25px 0 0;
}

.tech-container::after{
  bottom:-14px;
  border-radius:0 0 25px 25px;
}

/* HEADER */
.tech-header h2{
  font-size:36px;
  margin-bottom:10px;
  color: #042840;
  margin-top: 70px;
}

.tech-header p{
  color:#c6dbe6;
  margin-bottom:50px;
  color: #ffffff;
}

/* LAYOUT */
.tech-layout{
  display:flex;
  gap:60px;
}

/* LEFT TABS */
.tech-tabs{
  width:400px;
  background:#1a4b64;
  padding:25px;
  border-radius:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.tech-tab{
  background:#355d74;
  border:none;
  padding:16px;
  border-radius:14px;
  color:#fff;
  cursor:pointer;
  text-align:left;
  transition:.3s;
}

.tech-tab.active{
  background:#39e29d;
  color:#0b2f44;
  font-weight:600;
}


.tech-contents{
    margin-top: 196px;
    flex: 1;
}
.tech-content{
  display:none;
}

.tech-content.active{
  display:block;
}

.tech-slider{
  position:relative;
  padding:0px 30px;
  border-radius:20px;
  overflow:visible; 
}

.tech-slider-inner{
  overflow:hidden;
  width:100%;
}
.tech-track{
  display:flex;
  gap:30px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.tech-card{
  flex:0 0 calc((100% - 120px) / 5);
  background:#2f5872;
  border-radius:15px;
  padding:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:.3s;
  aspect-ratio: 1 / 1;  
}

.tech-card span{
  font-size:16px;
  font-weight:500;
  color:#fff;
}

.tech-card:hover{
  background:#3a6a86;
  transform:translateY(-6px);
}

.tech-card img{
    width:50%;
    max-width:70px;
    height:auto;
    margin-bottom:10px;
}

.tech-card span{
  font-size:16px;
}

.tech-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  background:#1a4b64;
  border:none;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:20;
}

.tech-arrow.arrow-left{
  left:-25px;
}

.tech-arrow.arrow-right{
  right:-25px;
}

.tech-arrow:hover{
  background:#39e29d;
  color:#032E4A;
}
.tech-arrow.active{
  background:#39e29d;
  color:#032E4A;
}

.tech-arrow{
  z-index:10;              
  pointer-events:auto;
}



@media (max-width:1200px){

.tech-card{
  flex:0 0 calc((100% - 90px) / 4);
}

.tech-arrow.arrow-left{
  left:-15px;
}

.tech-arrow.arrow-right{
  right:-15px;
}

}
@media (min-width:993px) and (max-width:1240px){
.tech-tabs{
  width:100%;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
}

.tech-layout{
  flex-direction: column;
  gap: 40px;
}

.tech-card{
  flex:0 0 calc((100% - 60px) / 3);
}

.tech-arrow.arrow-left{
  left:-25px;
}

.tech-arrow.arrow-right{
  right:-25px;
}

.tech-card{
  flex:0 0 calc((100% - 60px) / 3);
}
.tech-arrow.arrow-left{
  left:-25px;
}

.tech-arrow.arrow-right{
  right:-25px;
}

.tech-contents {
    margin-top: 45px;
    flex: 1;
}


}
@media (max-width:992px){

.uxdc-btn-center{
    margin-top: 60px;
}

.tech-layout{
  flex-direction:column;
  gap:40px;
}

.tech-tabs{
  width:100%;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
}

.tech-tab{
  flex:1 1 45%;
  text-align:center;
}

.tech-contents{
  margin-top:20px;
}

.tech-card{
  flex:0 0 calc((100% - 60px) / 3);
}

.tech-arrow.arrow-left{
  left:-20px;
}

.tech-arrow.arrow-right{
  right:-20px;
}

}
@media (max-width:768px){

.tech-header h2{
  font-size:28px;
}

.tech-tabs{
  gap:10px;
}

.tech-tab{
  flex:1 1 100%;
}

.tech-card{
  flex:0 0 calc((100% - 30px) / 2);
}

}
@media (max-width:480px){

.tech-slider-inner{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.tech-track{
  scroll-snap-type: x mandatory;
}


.tech-container{
  padding:40px 20px;
}

.tech-card{
  flex:0 0 100%;
}

.tech-arrow{
  display:none;
}

.tech-track{
  gap:20px;
}

}

.tech-slider-inner{
  scroll-behavior: smooth;
}
/* End Technology */





/* Section background */
.dms-why-section {
  background: #032E4A;
  background-size: 40px 40px;
  padding: 100px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.dms-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left content */
.dms-subtitle {
  color: #f9f9f9;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.dms-title {
  font-size: 42px;
  margin: 15px 0 20px;
  color: #f9f9f9;
}

.dms-text {
  color: #f9f9f9;
  line-height: 1.7;
  font-size: 15px;
  max-width: 520px;
}

.dms-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.dms-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 500;
}

.dms-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffffff;
}

/* Button */
.dms-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #2aa9ff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.dms-btn:hover {
  background: #2aa9ff;
  color: #000;
}

/* Right visual card */
.dms-visual-card {
  width: 100%;
  height: 380px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;       
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Image */
.dms-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;          
  display: block;
}


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

  .dms-visual-card {
    height: 300px;
  }

  .dms-title {
    font-size: 34px;
  }
}







/* =========================
   SECTION
========================= */
.process-section{
  padding:30px;
  background:#032E4A;
  color:#f8f3f3;
}

/* =========================
   CONTAINER
========================= */
.process-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.6fr; 
  gap:70px;
  align-items:flex-start;
}

/* =========================
   LEFT SIDE
========================= */
.badge{
  background:#39E89B;
  color: #000000;
  padding:8px 16px;
  border-radius:6px;
  font-size:13px;
  display:inline-block;
  margin-bottom:25px;
}

.process-title{
  font-size:42px;
  line-height:1.25;
  margin-bottom:25px;
  color:#e0dcff;
}

.process-text{
  color:#e0dcff;
  line-height:1.6;
  margin-bottom:35px;
  max-width:420px;
}

.primary-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  background:#ffffff;
  color:#4a3b86;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.primary-btn:hover {
    background:#0ea5a0;
    color:#fff;
}

/* =========================
   RIGHT SIDE
========================= */
.process-right{
  position:relative;
  width:100%;
  overflow:visible;
}

/* =========================
   VERTICAL LINE
========================= */
.process-right::before{
  content:"";
  position:absolute;
  left:28px;                
  top:0;
  bottom:0;
  width:2px;
  background:rgba(255,255,255,0.35);
}

/* =========================
   EACH STEP (DOT + CARD)
========================= */
.process-step-home{
  display:grid;
  grid-template-columns:60px minmax(0,1fr);
  gap:30px;
  align-items:center;
  margin-bottom:22px;
  position:relative;
  z-index:1;
  width:100%;
}

/* icon */
.process-step-home .icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: #f0f1f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 8px;
    z-index: 1;
    border: 3px solid #032E4A;
}

/* Animated Border Layer */
.process-step-home .icon::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        #032E4A,
        #39e29d,
        #032E4A
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Inner White Circle */
.process-step-home .icon::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #f0f1f3;
    border-radius: 50%;
    z-index: -1;
}

/* Hover Animation */
.process-step-home .icon:hover::before {
    opacity: 1;
    animation: rotateBorder 2s linear infinite;
}

/* Rotation Keyframes */
@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* title text */
.process-step-home span {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    max-width: 100px;
    margin: 0;
}

/* hover icon */
.process-step-home:hover .icon {
    transform: translateY(-8px) scale(1.1);
    background: linear-gradient(135deg, #22c55e, #3b82f6);
}

/* =========================
   DOT / TIMELINE
========================= */
.timeline{
  display:flex;
  justify-content:center;
}

.dot{
  width:32px;
  height:32px;
  background:#39E89B;
  color:#4a3b86;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:14px;
}

.dot.active{
  background:#ffffff;
}

/* =========================
   ACCORDION CARD
========================= */
.accordion-item{
  width:100%;
  max-width:100%;
  background:#ffffff;
  color:#000000;
  border-radius:12px;
  overflow:hidden;
  transition:background 0.3s ease;
}

.accordion-header-home{
  width:100%;
  padding:20px 24px;
  border:none !important;
  background:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
  font-size:20px;
  cursor:pointer;
}

.accordion-body{
  display:none;
  padding:0 24px 24px;
  font-size:14px;
  line-height:1.6;
}

.accordion-item.active{
    background: linear-gradient(to top right, rgb(14 243 149 / 87%), transparent 60%) bottom left, 
                linear-gradient(to top left, rgb(13 227 140 / 93%), transparent 60%) bottom right, #ffffff;
    background-repeat: no-repeat;
    background-size: 50% 100%;
    padding-bottom: 0;
}

.accordion-item.active .accordion-body{
  display:block;
}

/* =========================
   ICON
========================= */
.icon{
  font-size:22px;
}



.accordion-body{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.accordion-body{
  padding: 0 18px 18px;
  overflow: hidden;
  animation: fade .3s ease;
}

.accordion-body p{
  margin: 0;
  max-width: 92%;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  color: #071010;
  font-weight: 400;
  padding-left: 8px;
}




@keyframes fade{
  from{opacity:0; transform:translateY(-5px)}
  to{opacity:1; transform:none}
}


/* =========================
   TABLET (<= 1024px)
========================= */
@media (max-width: 1024px){
  .process-section {
    padding: 30px;
  }

  .process-container{
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
  }

  .process-title{
    font-size: 36px;
  }

  .accordion-body p{
    max-width: 100%;
  }
}


/* =========================
   MOBILE / TABLET STACK (<= 900px)
========================= */
@media (max-width: 900px){
  .process-section {
    padding: 30px;
  }

  .process-container{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-left{
    text-align: left;
  }

  .process-title{
    font-size: 34px;
  }

  /* timeline line position */
  .process-right::before{
    left: 22px;
  }

  .process-step-home{
    grid-template-columns: 50px minmax(0,1fr);
    gap: 20px;
  }

  .dot{
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}


/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px){
  .process-section {
    padding: 30px;
  }

  .process-title{
    font-size: 30px;
    line-height: 1.3;
  }

  .process-text{
    font-size: 15px;
  }

  .primary-btn{
    padding: 12px 20px;
    font-size: 14px;
  }

  .accordion-header-home{
    padding: 18px 18px;
    font-size: 15px;
  }

  .accordion-body p{
    font-size: 15px;
    line-height: 24px;
    padding-left: 6px;
  }
}


/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px){

  .process-section {
    padding: 30px;
  }

  .process-title{
    font-size: 26px;
  }

  .process-step-home{
    grid-template-columns: 44px minmax(0,1fr);
    gap: 16px;
  }

  .dot{
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .accordion-header-home{
    padding: 16px 16px;
  }

  .accordion-body{
    padding: 10px 16px 16px;
  }
}





/* SECTION */
.join-team{
  padding:100px 0;
  background:#57FEAB;
}

/* CONTAINER */
.join-container{
  max-width:80%;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:80px;
  align-items:center;
  padding:0 20px;
}

/* LEFT CONTENT */
.join-content h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:20px;
  color:#032E4A;
}

.join-content p{
  font-size:16px;
  line-height:1.7;
  color:#032E4A;
  margin-bottom:16px;
  max-width:520px;
}

.join-btn{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  background:#11b8b2;
  color:#032E4A;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition:all .3s ease;
}

.join-btn:hover{
  background:#0ea5a0;
  transform:translateY(-2px);
}

/* RIGHT IMAGE */
.join-image img{
  width:100%;
  height:auto;
  border-radius:10px;
  object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:900px){
  .join-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .join-content h2{
    font-size:30px;
  }
}




/* ================= BUTTON WRAPPER ================= */
.about-hero-btns{
    display:flex;
    gap:14px;
    margin-top:20px;
}

/* ========= BASE BUTTON =================== */

.about-btn-main,
.about-btn-outline{
    position:relative;
    display:inline-block;
    padding:11px 26px;
    border-radius:10px;
    font-size:15px;
    font-weight:500;
    color:#fff;
    text-decoration:none;
    overflow:visible;
    z-index:0;
}


/* ===================== PRIMARY BUTTON ============================ */

.about-btn-main{
    background:linear-gradient(to bottom,#35D993 0%,#11585C 55%,#084156 100%);
    border:1px solid rgba(255,255,255,.55);
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}


.about-btn-outline{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.6);
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}


/* ====================== OUTSIDE ROTATING BORDER ==================== */

.about-btn-main::after,
.about-btn-outline::after{
    content:"";
    position:absolute;
    inset:-4px;               
    border-radius:14px;
    padding:2px;

    background:conic-gradient(
        from 0deg,
        transparent 0deg 310deg,
        #00ffd5 330deg,
        #00ffd5 350deg,
        transparent 360deg
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;

    opacity:0;
    pointer-events:none;
}


/* animation trigger */
.about-btn-main:hover::after,
.about-btn-outline:hover::after{
    opacity:1;
    animation:spinBorder 2s linear infinite;
}

@keyframes spinBorder{
    to{ transform:rotate(360deg); }
}


/* ========== OUTSIDE GLOW ================ */

.about-btn-main:hover,
.about-btn-outline:hover{
    box-shadow:
        0 0 10px rgba(0,255,213,.35),
        0 0 25px rgba(0,255,213,.25),
        0 12px 30px rgba(0,255,213,.30);
}



/* SECTION */
.ux-services-section {
    background: #3BE79B;
    padding: 30px 0;
}

.ux-services-bg-section{
    background: #032E4A;
    padding: 60px 0;
}
/* CONTAINER */
.ux-services-container {
    width: 1100px;
    max-width: 95%;
    margin: auto;
}

/* HEADER */
.ux-services-header {
    text-align: center;
    margin-bottom: 100px;
}

.ux-services-header h2 {
    color: #39e29d;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
}

.ux-services-header span {
    color: #39e29d;
}
/* GRID */
.ux-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 35px;
}

/* CARD WRAPPER */
.ux-service-card{
  position:relative;
  z-index:1;
}

/* CARD CONTENT */
.ux-card-content{
  position:relative;
  border-radius:22px;
  padding:90px 28px 30px;
  text-align:center;
  min-height:320px;
  background:linear-gradient(181deg,#39d98a99 0%,#1c9d7c00 30%,#0b3f5600 30%,#0b3f5694 100%);
  border:2px solid rgba(255,255,255,.15);
  box-shadow:0 15px 35px rgba(0,0,0,.25);
  z-index:1;
  overflow:visible; 
}

.ux-card-content:hover{
  box-shadow:
    12px 18px 50px rgba(0,0,0,.35),
    12px 18px 25px rgba(57,217,138,.6),
    12px 18px 50px rgba(57,217,138,.35);
  border-color: rgba(57,217,138,.6);
}
/* White Cut Circle */
.ux-card-content::before{
    content: "";
    position: absolute;
    top: -26px;
    left: 10%;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    background: #062F43;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

/* ICON CIRCLE */
.ux-icon-circle{
    position: absolute;
    top: -21px;
    left: 10%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #0b3f56;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* IMAGE (icon) */
.ux-icon-circle img{
  width:55px;
  height:55px;
  display:block;
  position:relative;
  z-index:4;
}
/* TEXT */
.ux-card-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
}

.ux-card-content p {
    color: #c9e3ee;
    font-size: 14px;
    line-height: 1.7;
}
.ecws-bottom-arrow-circle{
    position:absolute;
    bottom:25px;
    right:25px;

    width:52px;
    height:52px;
    border-radius:50%;

    background:linear-gradient(145deg,#42e6a4,#27c98a);
    
    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    transition:all .3s ease;

    box-shadow:
        0 8px 20px rgba(0,0,0,.15),
        0 3px 8px rgba(0,0,0,.08);
}

/* Arrow icon */
.ecws-bottom-arrow-circle i{
    font-size:18px;
    color:#0f2d3a;
    transition:transform .3s ease;
}

/* Hover effect */
.ecws-bottom-arrow-circle:hover{
    transform:translateY(-4px);
    box-shadow:
        0 15px 30px rgba(0,0,0,.25),
        0 0 25px rgba(66,230,164,.6);
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .ux-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ux-icon-circle{
            left: 6%;
    }
    .ux-card-content::before{
        left: 6%;
    }
    .ux-services-bg-section {
        padding: 100px 18px;
    }
}

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












/* ========= ECWS SECTION WRAPPER ========= */
.ecws-section-wrapper{
    background:#E2FBF0;
    padding:90px 20px 100px;
    font-family:'Poppins', sans-serif;
    text-align:center;
}

.ecws-inner-container{
    max-width:1140px;
    margin:0 auto;
    width:100%;
}

/* ============= TITLE AREA =============== */
.ecws-small-heading{
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    color:#2a3f52;
    margin-bottom:12px;
}

.ecws-main-heading{
    font-size:38px;
    font-weight:700;
    color:#18364a;
    line-height:1.3;
    margin-bottom:20px;
}

.ecws-description-text{
    font-size:16px;
    color:#2a3f52;
    max-width:650px;
    margin:0 auto 60px;
}

/* ============= CARD GRID ========== */
.ecws-card-flex-wrapper{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.ecws-single-card-box{
    position:relative;
    background:#B9F6DD;
    flex:1 1 calc(33.33% - 30px);
    max-width:340px;
    padding:70px 30px 40px;
    border-radius:18px;
}

/* White cut circle */
.ecws-single-card-box::before{
    content:"";
    position:absolute;
    top:-52px;
    left:50%;
    transform:translateX(-50%);
    width:110px;
    height:110px;
    background:#E2FBF0;
    border-radius:50%;
}

/* Icon */
.ecws-floating-icon-circle{
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    width:90px;
    height:90px;
    background:#36d399;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ecws-floating-icon-circle img{
    width:45px;
}

/* Title */
.ecws-card-title-text{
    font-size:20px;
    font-weight:600;
    margin-bottom:18px;
    color:#18364a;
}

/* Description */
.ecws-card-description-text{
    font-size:15px;
    color:#2a3f52;
    line-height:1.6;
    margin-bottom:40px;
}

/* Arrow */
.ecws-bottom-arrow-circle{
    width:40px;
    height:40px;
    margin:0 auto;
    border-radius:50%;
    background:#36d399;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ecws-bottom-arrow-circle a{
    color:#0f2d3a;
}

.ecws-bottom-arrow-circle:hover{
    background:#2ac086;
}

/* Footer */
.ecws-footer-note-text{
    margin-top:60px;
    font-size:16px;
    color:#2a3f52;
}

/* ============= RESPONSIVE =========== */

/* Tablet */
@media (max-width:992px){

.ecws-single-card-box{
    margin-top: 50px;
}

.ecws-main-heading{
    font-size:32px;
}

.ecws-card-flex-wrapper{
    gap:25px;
}

.ecws-single-card-box{
    flex:1 1 calc(50% - 25px);
    max-width:none;
}

}

/* Mobile */
@media (max-width:768px){

.ecws-main-heading{
    font-size:28px;
}

.ecws-description-text{
    margin-bottom:40px;
}

.ecws-single-card-box{
    flex:1 1 100%;
    max-width:100%;
}

}

/* Small Mobile */
@media (max-width:480px){

.ecws-section-wrapper{
    padding:70px 15px;
}

.ecws-main-heading{
    font-size:24px;
}

.ecws-floating-icon-circle{
    width:70px;
    height:70px;
    top:-35px;
}

.ecws-floating-icon-circle img{
    width:35px;
}

}


@media (max-width:480px){
.ecws-single-card-box {
    margin-top: 30px;
}

.ecws-single-card-box::before{
    width:82px;
    height:93px;
}

.ecws-floating-icon-circle{
    width:65px;
    height:65px;
    top:-30px;
}

}


/* SECTION */
.rwk-section{
  padding:60px 0 50px;
  background:linear-gradient(
    to bottom,
    #eef6f3 0%,
    #ccefe0 30%,
    #7be0b4 65%,
    #34cc8c 100%
  );
  font-family:'Poppins',sans-serif;
  position:relative;
}

/* CONTAINER */
.rwk-container{
  width:90%;
  margin:auto;
}

/* HEADER */
.rwk-header{
  text-align:center;
  margin-bottom:60px;
}

.rwk-subtitle{
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
  color:#1c3d4f;
  margin-top: 20px;
}

.rwk-title{
  font-size:38px;
  font-weight:700;
  color:#0f2d3a;
  margin-top:15px;
  line-height:1.3;
}

/* SLIDER */
.rwk-slider-wrapper{
  position:relative;
  overflow:hidden;
}

.rwk-slider-track{
  display:flex;
  gap:35px;
  transition:transform .5s ease;
}

.rwk-card{
  flex:0 0 calc((100% - 105px) / 4);
  background:#57FAAC;
  border-radius:22px;
  backdrop-filter:blur(3px);
  text-align:center;
}

.rwk-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  margin-bottom:20px;
}

/* PILL */
.rwk-pill{
  display:inline-block;
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  font-size:14px;
  color:#0f2d3a;
  margin-bottom: 20px;
  transition: all .35s ease;
  cursor: pointer;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.85),
    rgba(255,255,255,.4)
  );
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.7),
    0 6px 12px rgba(0,0,0,.15);
}

.rwk-pill:hover{
    transform: translateY(-4px);

    background: linear-gradient(
        180deg,
        #e8fff4,
        #8be7bf
    );

    box-shadow:
        inset 0 2px 6px rgba(255,255,255,.7),
        0 8px 20px rgba(0,0,0,.2),
        0 0 20px rgba(52,204,140,.6),
        0 0 40px rgba(52,204,140,.35);

    color:#063544;
}

/* NAVIGATION */
.rwk-prev{ left:10px; }
.rwk-next{ right:10px; }

.rwk-nav{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.6);
  color:#0f2d3a;
  font-size:22px;
  cursor:pointer;
  backdrop-filter:blur(6px);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  z-index:10;
}

.rwk-nav:hover{
  background:rgba(255,255,255,.7);
  color:#0f2d3a;
}

/* CTA */
.rwk-cta-wrap{
  text-align:center;
  margin-top:70px;
}

.rwk-cta-btn{
  display:inline-block;
  padding:16px 50px;
  font-size:20px;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  color:#0f2d3a;
  background:linear-gradient(180deg,#e8fdf3,#8be7bf);
  box-shadow:
    inset 0 4px 10px rgba(255,255,255,.6),
    0 15px 30px rgba(0,0,0,.25);
  transition:.3s ease;
}

.rwk-cta-btn:hover{
  transform:translateY(-6px);
  box-shadow:
    inset 0 4px 10px rgba(255,255,255,.6),
    0 25px 45px rgba(0,0,0,.35);
}

/* ============ RESPONSIVE ============= */

/* Large laptop */
@media (max-width:1200px){

.rwk-card{
  flex:0 0 calc((100% - 70px) / 3);
}

}

/* Tablet */
@media (max-width:992px){

.rwk-card{
  flex:0 0 calc((100% - 35px) / 2);
}

.rwk-title{
  font-size:32px;
}

}

/* Mobile */
@media (max-width:768px){

.rwk-slider-track{
  gap:25px;
}

.rwk-card{
  flex:0 0 100%; /* 1 card */
}

.rwk-img{
  height:200px;
}

.rwk-nav{
  width:42px;
  height:42px;
  font-size:18px;
}

}

/* Small Mobile */
@media (max-width:480px){

.rwk-title{
  font-size:26px;
}

.rwk-img{
  height:180px;
}

.rwk-pill{
  font-size:13px;
  padding:8px 18px;
}

.rwk-cta-btn{
  padding:14px 35px;
  font-size:18px;
}

}



/* =========== PRICING AREA RESPONSIVE ============*/

/* Large Laptop / Desktop (1400px+) */
@media (min-width: 1400px) {
  .container-price{
    max-width:90%;
    margin:auto;
  }
}


/* Laptop (992px - 1399px) */
@media (max-width: 1199px){

  .section_title h1{
    font-size:34px;
    line-height:44px;
  }

  .pricing-single-items{
    padding:30px 22px;
  }

  .pricing-item-text .tk{
    font-size:40px;
  }

}


/* Tablet (768px - 991px) */
@media (max-width: 991px){

    section.pricing-area {
        padding: 54px 0 0px;
    }
  .pricing-area .section_title h4{
        margin-top: 0px;
  }
  .pricing-area{
    padding:60px 0;
  }

  .section_title{
    margin-bottom:40px;
  }

  .section_title h1{
    font-size:30px;
    line-height:40px;
  }

  .section_title p{
    width:100%;
  }

  .pricing-single-items{
    margin-bottom:30px;
  }

  .pricing-item-text{
    margin-top:10px;
  }

  .pricing-contact{
    margin-top:30px;
  }

}


/* Mobile (576px - 767px) */
@media (max-width: 767px){

  .pricing-area{
    padding:50px 0;
  }

  .section_title h4{
    font-size:14px;
  }

  .section_title h1{
    font-size:26px;
    line-height:36px;
  }

  .pricing-single-items{
    padding:25px 20px;
    margin-bottom: 120px;
  }

  .pricing-title h3{
    font-size:20px;
  }

  .pricing-feature ul li{
    font-size:14px;
  }

  .pricing-item-text .tk{
    font-size:34px;
  }

  .pricing-contact{
    padding:0px;
  }

}


/* Small Mobile (under 575px) */
@media (max-width: 575px){

  .section_title h1{
    font-size:22px;
    line-height:32px;
  }

  .pricing-single-items{
    padding:22px 18px;
  }

  .pricing_icon img{
    width:40px;
  }

  .pricing-title h3{
    font-size:18px;
  }

  .pricing-feature ul li{
    font-size:13px;
  }

  .pricing-item-text{
    font-size:20px;
  }

  .pricing-item-text .tk{
    font-size:30px;
  }

  .pricing-contact{
    display:block;
  }

  .pricing-contact-icon{
    margin-bottom:10px;
  }

}

/* =========== LARGE LAPTOP (1200px - 1400px) ==========*/

@media (max-width:1200px){

.faq_heading{
    font-size:26px;
}

.accordion li .accordion-faq-a{
    font-size:18px;
    padding:20px 25px;
}

}


/* ============== TABLET LANDSCAPE (992px - 1199px) ===========*/

@media (max-width:991px){

section.faq_area{
    padding:0px 0;
}

.faq_heading{
    text-align:center;
}

.accordion{
    margin-bottom:40px;
}

.accordion li .accordion-faq-a{
    font-size:18px;
    padding:18px 22px;
}

.accordion li p{
    padding:18px 22px;
}

}


/* ============= TABLET PORTRAIT (768px - 991px) ===========*/

@media (max-width:768px){

section.faq_area{
    padding:0px 0;
}

.section_title h1{
    font-size:26px;
}

.section_title h2{
    font-size:22px;
}

.faq_heading{
    font-size:22px;
}

.accordion li .accordion-faq-a{
    font-size:17px;
}

}


/* ============= MOBILE DEVICE (576px - 767px) ==============*/

@media (max-width:576px){

section.faq_area{
    padding:0px 15px;
}

.faq_heading{
    font-size:20px;
    margin-bottom:20px;
}

.accordion li{
    margin-bottom:15px;
}

.accordion li .accordion-faq-a{
    padding:16px 18px;
    font-size:16px;
}

.accordion li p{
    padding:16px 18px;
    font-size:14px;
    line-height:24px;
}

.accordion li a i{
    width:30px;
    height:30px;
    font-size:12px;
}

}


/* ============== SMALL MOBILE (below 400px) =============*/

@media (max-width:400px){

.section_title h1{
    font-size:22px;
}

.section_title h2{
    font-size:18px;
}

.faq_heading{
    font-size:18px;
}

.accordion li .accordion-faq-a{
    font-size:15px;
    padding:14px 16px;
}

.accordion li p{
    font-size:13px;
}

}


@media (max-width:1200px){

.breadcumb-content{
    margin-left: 50px;
}

.breadcumb-area{
    background-position:64% center;
    padding-top: 200px;
}

.breadcumb-title h4{
    font-size:42px;
}

.breadcumb-content p{
    font-size:15px;
}

}


@media (max-width:992px){
.about-hero-btns{
    margin-bottom: 50px;
}

.breadcumb-content {
    margin-left: 70px;
    width: 100%;
    margin-bottom: 50px;
}

.breadcumb-area{
    background-position:62% center;
    padding:120px 0;
}

.breadcumb-title h4{
    font-size:36px;
}

.breadcumb-content p{
    font-size:14px;
    margin-right: 130px;
}

.about-hero-btns{
    display:flex;
    gap:12px;
}

}

@media (max-width:768px){

.breadcumb-area{
    background-position:62% center;
    padding:100px 0;
}

.breadcumb-title h4{
    font-size:30px;
}

.breadcumb-content p{
    font-size:13px;
    line-height:1.6;
}

.about-hero-btns{
    flex-direction:column;
    align-items:flex-start;
}

.about-btn-main,
.about-btn-outline{
    margin-bottom:10px;
}

}

@media (max-width:480px){

.breadcumb-area{
    background-position:67% center;
    padding:80px 0;
}

.breadcumb-title h4{
    font-size:26px;
}

.breadcumb-content p{
    font-size:12px;
}

}



/* ===== PRICING HERO SECTION ===== */

.ws-price-hero{
    position:relative;
    padding:160px 0 120px;
    background:url("../images/price/img/breadcumb-area-price-bg.png") center center/cover no-repeat;
}


/* container */

.ws-price-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* content */

.ws-price-content{
    max-width:520px;
    color:#fff;
}

.ws-price-content h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:18px;
    color: #ffffff;
}

.ws-price-content p{
    font-size:16px;
    line-height:1.7;
    color:#d3dce6;
    margin-bottom:30px;
}

/* breadcrumb */

.ws-price-breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.ws-price-breadcrumb a{
    color:#ffffff;
    text-decoration:none;
}

.ws-price-breadcrumb a:hover{
    color:#2ee59d;
}

.ws-separator{
    opacity:.6;
}

/* Laptop */

@media (max-width:1200px){

.ws-price-content h1{
    font-size:46px;
}

}


/* Tablet */

@media (max-width:992px){

.ws-price-hero{
    padding:130px 0 90px;
}

.ws-price-content{
    max-width:100%;
}

.ws-price-content h1{
    font-size:38px;
}

}


/* Mobile */

@media (max-width:576px){

.ws-price-hero{
    padding:100px 0 70px;
}

.ws-price-content h1{
    font-size:30px;
}

.ws-price-content p{
    font-size:14px;
}

}

/* ======================================
WORKSPROUT PRICING SECTION
====================================== */

.wspr-price-section{
position:relative;
padding:70px 0;
background:
url("../images/price/img/price-bg.png") center/cover no-repeat;
}


/* container */

.wspr-price-container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* heading */

.wspr-price-heading{
text-align:center;
margin-bottom:150px;
}

.wspr-price-heading h2{
font-size:40px;
font-weight:700;
color:#071c26;
line-height:1.4;
}


/* grid */

.wspr-price-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
align-items:end;
}


/* card */

.wspr-card{
    padding:40px 35px;
    border-radius:22px;
    position:relative;
    transition:all .4s ease;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.wspr-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 35px 80px rgba(0,0,0,0.20),
        0 0 0 2px rgba(62,223,167,0.25),
        0 0 35px rgba(62,223,167,0.40);
}


/* card colors */

.wspr-card-light{
background:#e9fff4;
}

.wspr-card-green{
background:linear-gradient(180deg,#5ee6a7,#38c98e);
transform:translateY(-40px);
}

.wspr-card-dark{
background:#052f47;
color:#fff;
transform:translateY(-80px);
}


/* popular label */

.wspr-popular {
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
font-weight: 600;
color: #032E49;
font-size: 35px;
}


/* header */

.wspr-card-head{
display:flex;
gap:16px;
align-items:center;
margin-bottom:25px;
}

.wspr-card-head h3{
font-size:22px;
margin-bottom:3px;

}
.wspr-card-head .primium h3{
font-size:22px;
margin-bottom:3px;
color:#ffffff;
}

.wspr-card-head p{
font-size:14px;
opacity:1.7;
color: #000;
}
.wspr-card-head .primium p{
font-size:14px;
opacity:.7;
color:#ffffff;

}


/* icon */

.wspr-icon-circle1{
width:70px;
height:70px;
border-radius:30px;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
border: 2px solid #3FCF93;
}
.wspr-icon-circle1:hover{
    background: #032E49;
}
.wspr-icon-circle2{
width:70px;
height:70px;
border-radius:30px;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
border: 2px solid #000;
}
.wspr-icon-circle3{
width:70px;
height:70px;
border-radius:30px;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
border: 2px solid #ffffff;
}

.wspr-icon-circle1 img{
width:45px;
}
.wspr-icon-circle2 img{
width:40px;
}
.wspr-icon-circle3 img{
width:45px;
}

.wspr-icon-circle2.green{
background:#dfffee;
}
.wspr-icon-circle2.green:hover{
background:#032E49;
}

.wspr-icon-circle3.dark{
background:#052F47;
}
.wspr-icon-circle3.dark:hover{
background:#3ACB8F;
}


/* features */

.wspr-features{
list-style:none;
padding:0;
margin:25px 0;
}

.wspr-features li{
padding: 12px 0;
border-bottom: 1px dashed rgba(0, 0, 0, .25);
font-size: 16px;
color: #000;
font-weight: 500;
}

.wspr-features.dark li{
padding: 12px 0;
border-bottom: 1px dashed rgba(0, 0, 0, .25);
font-size: 16px;
color: #ffffff;
font-weight: 500;
}


.wspr-features.dark li{
border-bottom:1px dashed rgba(255,255,255,.3);
}


/* price */

.wspr-price{
margin-top:25px;
font-size:18px;
color: #000;
}

.wspr-price strong{
font-size:48px;
font-weight:700;
}

.wspr-price small{
font-size:15px;
margin-left:5px;
}

.wspr-price.dark{
color:#fff;
}


/* buttons */

.wspr-btn-dark{
display:inline-block;
margin-top:25px;
padding:12px 30px;
border-radius:30px;
background:#052f47;
color:#3FCF93;
text-decoration:none;
font-weight:700;
font-size: 25px;
}
.wspr-btn-dark:hover{
color:#ffffff;
background-color: #000;
}

.wspr-btn-outline{
display:inline-block;
margin-top:25px;
padding:12px 30px;
border-radius:30px;
border:2px solid #ffffff;
color:#3FCF93;
text-decoration:none;
font-weight:500;
font-size: 25px;
}
.wspr-btn-outline:hover{
color:#ffffff;
background-color: #000;
}


/* responsive */

@media(max-width:992px){

.wspr-price-grid{
grid-template-columns:1fr;
}

.wspr-card-green{
transform:none;
margin-top: 70px;
}

.wspr-price-heading h2{
font-size:30px;
}
.wspr-card-dark{
    margin-top: 100px;
}

}




/* Blog category search */

.blog-container{
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero{
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background:#032E4A;
}

/* right image */
.blog-hero::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:100%;
    height:100%;
    background: url("/static/assets/images/blog/img/blog-banner-img.png") no-repeat center;
    background-size: cover;
}


/* content */
.blog-hero-content{
    position:relative;
    z-index:2;
}

.blog-hero-title{
    color:#ffffff;
    font-size:45px;
    font-weight:700;
    line-height:1.5;
}

@media (max-width:992px){

    .blog-hero::after{
        display:none;
    }

    .blog-hero-title{
        font-size:36px;
        text-align:center;
    }

}

/* blog hero end */

.nx-blog-top-area{
background:#032E4A;
padding:50px 20px;
}

.nx-blog-top-container{
max-width:1300px;
margin:auto;

display:flex;
gap:40px;
align-items:flex-start;
}

.nx-category-card{
width:400px;
}

.nx-category-header{
display:flex;
justify-content:space-between;
align-items:center;
background:#1C435D;
color:#fff;
font-weight:600;
font-size: 30px;
border-radius: 30px;
}

.nx-cat-toggle {
    width: 100px;
    height: 65px;
    background: #8da5b4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0px 30px 30px 0px;
    position: relative;
    z-index: 2;
}

.nx-cat-toggle::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background: #6f8a99;
    border-radius: 50%;
    top: 11px;
    left: 28px;
    z-index: -1;
}

.nx-category-header span{
    padding: 20px;
}

.nx-category-list{
list-style: none;
padding: 10px;
margin-top: 20px;
background: #1C435D;
border-radius: 15px;
}

.nx-category-list li{
padding:10px 10px;
color:#c9d6df;
font-size:20px;
border-radius:8px;
transition:.3s;
}

.nx-category-list li:hover{
background:#204e6b;
color:#fff;
}

.nx-category-list li.has-arrow::after{
content:"›";
float:right;
}

/* default hide */
.nx-category-list{
    max-height: 500px;
    overflow: hidden;
    transition: 0.3s;
}

/* collapsed */
.nx-category-card.closed .nx-category-list{
    max-height: 0;
    padding: 0 10px;
}

/* rotate icon */
.nx-category-card.closed .nx-cat-toggle i{
    transform: rotate(180deg);
}


/* SEARCH PANEL */

.nx-search-box{
width:800px;
height:auto;
background:#f2f4f6;
padding: 30px 30px 10px 20px;
border-radius:30px;
position:relative;

}


/* SEARCH INPUT */

.nx-search-input{
position:relative;
background:#e9edf1;
border-radius:40px;
overflow:hidden;
margin-bottom:18px;
}

.nx-search-input input{
width:100%;
border:none;
padding:14px 20px;
background:transparent;
outline:none;
}

.nx-search-input input::placeholder{
    color:#9aa9b5;
}

.nx-search-btn{
position:absolute;
right:0;
top:0;
width:60px;
height:100%;
background:#072f4b;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
border-radius:0 40px 40px 0;
}


/* FILTER */

.nx-filter-row{
font-size: 20px;
margin-bottom: 10px;
color: #000;
font-weight: 700;
margin-top: 30px;
display:flex;
flex-wrap:wrap;
align-items:center;
gap:8px;
}


.nx-filter-row span{
margin-right:10px;
}

.nx-filter-row a{
padding:6px 14px;
background:#e4e8ec;
border-radius:20px;
margin-right:8px;
font-size:20px;
}

.nx-filter-row a.active{
background:#072f4b;
color:#fff;
}


/* TAGS */

.nx-tag-row{
font-size: 20px;
margin-bottom: 10px;
color: #000;
font-weight: 700;
margin-top: 30px;
display:flex;
flex-wrap:wrap;
align-items:center;
gap:8px;
}

.nx-tag-row span{
margin-right:10px;
}

.nx-tag-row a{
background:#e4e8ec;
padding:5px 12px;
border-radius:20px;
margin-right:8px;
font-size:20px;
}

/* POPULAR */

.nx-popular-area{
margin-top:40px;
}

.nx-popular-area p{
font-weight:600;
margin-bottom:15px;
color:#2d3b45;
}

/* LIST */

.nx-popular-area ul{
list-style:none;
padding:0;
margin:0;
background:#eef2f5;
border-radius:10px;
overflow:hidden;
}

/* ITEM */

.nx-popular-area li{
display:flex;
align-items:center;
gap:12px;
padding:14px 16px;
font-size:18px;
color:#243744;
cursor:pointer;
border-bottom:1px solid #d6dee5;
}

/* last border remove */

.nx-popular-area li:last-child{
border-bottom:none;
}

/* LEFT ICON */

.nx-popular-area li span{
color:#8a9aa6;
font-size:18px;
}

/* TEXT */

.nx-popular-area li{
flex-wrap:nowrap;
}

/* RIGHT ARROW */

.nx-popular-area li i.fa-chevron-right{
margin-left:auto;
font-size:18px;
color:#9aa9b5;
}

/* HOVER */

.nx-popular-area li:hover{
    background: #032E49;
    color: #ffffff;
}

.nx-popular-list li:hover i {
    color: #fff;
}

/* VIEW RESULT */

.nx-view-results{
text-align:center;
margin-top:14px;
font-weight:600;
font-size:14px;
color:#2c3e50;
cursor:pointer;
}

.nx-view-results{
text-align:center;
margin-top:25px;
font-weight:600;
cursor:pointer;
font-size: 20px;
}

/* initially hide */
.nx-filter-row,
.nx-tag-row,
.nx-popular-area{
    display: none;
}

/* show when active */
.nx-search-box.active .nx-filter-row,
.nx-search-box.active .nx-tag-row,
.nx-search-box.active .nx-popular-area{
    display: block;
}

.nx-cat-item{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
color:#c9d6df;
border-radius:6px;
}

.nx-cat-item:hover{
background:#1f4f6d;
color:#fff;
}

.nx-arrow{
font-size:20px;
}

/* subcategory */

.nx-subcategory{
list-style:none;
padding-left:15px;
max-height:0;
overflow:hidden;
transition:0.3s;
}

.nx-subcategory li{
padding:8px 0;
font-size:13px;
color:#a8c0ce;
}
.nx-subcategory li:hover{
padding: 8px 0;
font-size: 13px;
color: #ffffff;
background: #032E49;
margin-top: 10px;
padding-left: 15px;
}

.nx-has-sub.active .nx-subcategory{
max-height:200px;
}

.nx-has-sub.active .nx-arrow i{
transform:rotate(90deg);
}

.nx-filter-row a,
.nx-tag-row a{
    padding:6px 16px;
    background:#e4e8ec;
    border-radius:25px;
    margin-right:8px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
    color:#032E49 !important;
    text-decoration:none;

}

.nx-filter-row a:hover,
.nx-tag-row a:hover{
    background:#032E4A;
    color:#ffffff !important;
}

.nx-filter-row a.active,
.nx-tag-row a.active{
    background:#032E4A;
    color:#ffffff !important;
}

.nx-popular-list li{
display:none;
}

.nx-popular-list li:nth-child(-n+3){
display:flex;
}


.nx-popular-list.show-all li{
display:flex;
}

/* =========================
LARGE LAPTOP
========================= */

@media (max-width:1200px){

.nx-blog-top-container{
gap:30px;
}

.nx-category-card{
width:320px;
}

.nx-search-box{
width:100%;
}

}


/* =========================
TABLET
========================= */

@media (max-width:992px){

.nx-blog-top-container{
flex-direction:column;
}

.nx-category-card{
width:100%;
}

.nx-search-box{
width:100%;
}

}


/* =========================
MOBILE LARGE
========================= */

@media (max-width:768px){
    .nx-category-header{
    font-size:22px;
    }
    .nx-cat-toggle{
    width:70px;
    height:55px;
    }

    .nx-category-list li{
    font-size:16px;
    }

    .nx-filter-row{
    font-size:20px;
    }

    .nx-tag-row{
    font-size:20px;
    }

    .nx-filter-row a,
    .nx-tag-row a{
    font-size:14px;
    }

    .nx-popular-area li{
    font-size:15px;
    }

}


/* =========================
MOBILE SMALL
========================= */

@media (max-width:576px){

.nx-blog-top-area{
padding:40px 15px;
}

.nx-search-box{
padding:20px;
border-radius:20px;
}

.nx-search-input input{
padding:12px 16px;
}

.nx-search-btn{
width:50px;
}

.nx-filter-row a,
.nx-tag-row a{
font-size:13px;
padding:5px 10px;
}

.nx-popular-area li{
font-size:14px;
padding:12px 14px;
}

}



/* SECTION */

.nx-blog-hero{
background:#032E4A;
padding:120px 20px;
color:#fff;
}

/* CONTAINER */

.nx-blog-container{
max-width:1200px;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;
gap:60px;
}

/* LEFT */

.nx-blog-left{
max-width:650px;
}

.nx-blog-label{
display:inline-block;
background:#1C435D;
padding:8px 16px;
border-radius:8px;
font-size:14px;
letter-spacing:1px;
margin-bottom:20px;
}

.nx-blog-left h2{
font-size:48px;
line-height:1.3;
font-weight:700;
margin-bottom:20px;
color:#ffffff;
}

.nx-blog-left p{
font-size:18px;
color:#c6d3db;
max-width:500px;
}


/* NEWSLETTER CARD */

.nx-newsletter-card{
background:#1C435D;
padding:35px;
border-radius:16px;
width:420px;
}

.nx-newsletter-card h3{
font-size:26px;
margin-bottom:10px;
color: #ffffff;
}

.nx-newsletter-card p{
font-size:15px;
color:#d6e1e7;
margin-bottom:20px;
}

/* INPUT */

.nx-newsletter-input{
display:flex;
border-radius:40px;
overflow:hidden;
background: #617B8E !important;
}

.nx-newsletter-input input{
flex:1;
border:none;
padding:14px 18px;
outline:none;
font-size:15px;
background: #617B8E !important;
color: #ffffff;
}

.nx-newsletter-input button{
background:#e9edf1;
border:none;
padding:14px 24px;
font-weight:600;
cursor:pointer;
transition:0.3s ease;
}

.nx-newsletter-input button:hover{
background:#45e09a;
color:#032E4A;
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

.nx-newsletter-input input::placeholder{
color:#ffffff;
opacity:1; 
}

/* =========== Laptop ============= */

@media (max-width:1200px){

.nx-blog-container{
gap:40px;
}

.nx-blog-left h2{
font-size:40px;
}

.nx-newsletter-card{
width:380px;
}

}


/* ============ Tablet ========== */

@media (max-width:992px){

.nx-blog-container{
flex-direction:column;
align-items:stretch;
gap:40px;
}
.nx-blog-left{
max-width:100%;
}

.nx-newsletter-card{
width:100%;
max-width:500px;
}

}


/* ============ Mobile ========== */

@media (max-width:768px){

.nx-blog-hero{
padding:80px 20px;
}

.nx-blog-left h2{
font-size:32px;
line-height:1.4;
}

.nx-blog-left p{
font-size:16px;
}

.nx-newsletter-card{
padding:25px;
border-radius:14px;
}

.nx-newsletter-card h3{
font-size:22px;
}

}


/* =========== Small Mobile ============= */

@media (max-width:480px){

.nx-blog-left h2{
font-size:26px;
}

.nx-newsletter-input{
flex-direction:row;   
border-radius:40px;
}

.nx-newsletter-input input{
padding:12px 14px;
font-size:14px;
}

.nx-newsletter-input button{
padding:12px 18px;
font-size:14px;
}

}



/* Blog Pagination */
.pagination-wrap{
    margin-top:60px;
    display:flex;
    justify-content:center;
}

.custom-pagination{
    display:flex;
    padding:0;
    margin:0;
    list-style:none;
    border-radius:18px;
}

/* common style */
.custom-pagination li a{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    height:80px;
}

/* prev next */
.custom-pagination .nav-btn a{
    background:#45e09a;
    color:#032E4A;
    padding:0 35px;
    gap:10px;
}

/* number buttons */
.custom-pagination .number a{
    background:#032E4A;
    color:#ffffff;
    width:95px;
    border:1px solid rgba(255,255,255,0.3);
    border-right:none;
}

.custom-pagination .number:last-child a{
border-right:1px solid rgba(255,255,255,0.3);
}

/* border radius */
.custom-pagination .prev a{
    border-radius:20px 0 0 20px;
}

.custom-pagination .next a{
    border-radius:0 20px 20px 0;
}

.custom-pagination .number a:hover{
    background:#45e09a;
    color:#032E4A;
    transform:translateY(-3px);
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}


/* prev next hover */

.custom-pagination .nav-btn a:hover{
    background:#2fd68c;
    color:#032E4A;
    transform:translateY(-3px);
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}


/* ======== Tablet ========== */

@media (max-width:992px){

.custom-pagination li a{
font-size:18px;
height:60px;
}

.custom-pagination .number a{
width:70px;
}

.custom-pagination .nav-btn a{
padding:0 25px;
}

}


/* ========== Mobile ========== */

@media (max-width:768px){

.custom-pagination li a{
font-size:16px;
height:50px;
}

.custom-pagination .number a{
width:55px;
}

.custom-pagination .nav-btn a{
padding:0 18px;
gap:6px;
}

}

/* ============ Small Mobile =========== */


@media (max-width:460px){

.custom-pagination{
border:none;
}

.custom-pagination li a{
height:42px;
font-size:14px;
}

.custom-pagination .number a{
width:40px;
}

}


/* ================= SECTION ================= */
.service-faq-section {
    background: #032E4A;
    padding: 70px 0;
    margin-bottom: 20px;
}

/* ================= TITLE ================= */
.service-faq-title h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-faq-title h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* ================= ACCORDION ================= */
.service-faq-accordion {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

/* ================= ITEM ================= */
.service-faq-item {
    margin-bottom: 20px;
    position: relative;
}

/* ================= QUESTION ================= */
.service-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 18px;

    color: #ffffff;
    font-size: 20px;
    font-weight: 500;

    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

/* bottom glow */
.service-faq-question::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 45%;

    border-radius: 0 0 18px 18px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0.35)
    );

    opacity: .6;
}

/* hover */
.service-faq-question:hover {
    background: #002842f5;
}

/* ================= ICON ================= */
.service-faq-question i {
    font-size: 14px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    transition: 0.4s ease;
}

/* rotate icon */
.service-faq-item.active .service-faq-question i {
    transform: rotate(180deg);
}

/* ================= ACTIVE HEADER ================= */
.service-faq-item.active .service-faq-question {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #032E4A;
}

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

/* separator line */
.service-faq-item.active .service-faq-question::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -1px;

    height: 1px;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.05)
    );
}

/* ================= ANSWER ================= */
.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;

    border-left: 1px solid rgba(255,255,255,0.35);
    border-right: 1px solid rgba(255,255,255,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.35);

    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;

    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.3s ease;

    opacity: 0;
    position: relative;
}

/* active */
.service-faq-item.active .service-faq-answer {
    opacity: 1;
    padding: 22px 30px;
}

/* text */
.service-faq-answer p {
    color: #ffffffb5;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}

/* bottom glow */
.service-faq-answer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 70%;

    border-radius: 0 0 18px 18px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0.35)
    );

    opacity: .4;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .service-faq-question {
        font-size: 16px;
        padding: 18px;
    }

    .service-faq-answer {
        padding: 0 18px;
    }

    .service-faq-item.active .service-faq-answer {
        padding: 18px;
    }
}



/* ================= SECTION ================= */
.bdx2-section {
    background: linear-gradient(135deg, #072c3f, #0b3a46);
    padding: 100px 20px;
    color: #fff;
    font-family: "Segoe UI", sans-serif;
    margin-bottom: 40px;
}

/* ================= HERO ================= */
.bdx2-hero {
    text-align: center;
    margin-bottom: 60px;
}

.bdx2-hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5rem;
}

.bdx2-hero p {
    color: #ffffff;
    font-size: 14px;
}

/* ================= LAYOUT ================= */
.bdx2-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* ================= SIDEBAR ================= */
.bdx2-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.bdx2-card {
    background: #ffffff14;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.bdx2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(59, 231, 155, 0.6), 0 0 30px rgba(59, 231, 155, 0.4), 0 0 60px rgba(59, 231, 155, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 99;
}

/* TITLE */
.bdx2-card h3 {
    margin-bottom: 15px;
    color: #3edfa7;
    font-size: 18px;
}

/* LIST */
.bdx2-card ul li {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.4s ease;
}
.bdx2-card ul li:hover {
    background: #2E525F;
    color: #3edfa7;
    padding: 5px 5px 5px 10px;
    border-radius: 5px;
}

/* ================= RECENT ================= */
.bdx2-recent {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

.bdx2-recent img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

.bdx2-recent p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.bdx2-recent span {
    font-size: 12px;
    color: #ffffff99;
}

.bdx2-recent:hover {
    transform: translateX(5px);
}

.bdx2-recent:hover p {
    color: #3edfa7;
}

/* ================= TAG ================= */
.bdx2-tags span {
    border: 1px solid rgba(62,223,167,0.3);
    padding: 2px 10px;
    margin: 5px;
    display: inline-block;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.3s;
}

.bdx2-tags span:hover {
    transform: scale(1.1);
}

/* ================= CONTENT ================= */
.bdx2-content {
    background: #ffffff14;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* IMAGE */
.bdx2-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* AUTHOR */
.bdx2-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.bdx2-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.bdx2-author p {
    margin: 0;
    font-size: 14px;
}

.bdx2-author span {
    font-size: 12px;
    color: #ffffff;
}

/* META */
.bdx2-meta {
    margin: 15px 0;
    font-size: 13px;
    color: #9be8cf;
}

/* TITLE */
.bdx2-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

/* TEXT */
.bdx2-text {
    line-height: 1.9;
    color: #ffffff;
    font-size: 15px;
}

/* IMAGE GRID */
.bdx2-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

/* IMAGE STYLE */
.bdx2-img-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;

    transition: 0.4s ease;
}

/* HOVER EFFECT */
.bdx2-img-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


.bdx2-text h2,
.bdx2-text h3 {
    color: #ffffff;
    margin-top: 20px;
    font-size: 25px;
    margin-bottom: 20px;
}

.bdx2-text p{
    color: #ffffff85;
}

.bdx2-card input {
    width: 100%;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 30px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}
/* INLINE IMAGE + TEXT */
.bdx2-inline {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    align-items: center;
}

.bdx2-inline img {
    width: 220px;
    border-radius: 12px;
}

/* IMAGE ROW */
.bdx2-img-row {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.bdx2-img-row img {
    width: 50%;
    border-radius: 12px;
}

/* ================= HIGHLIGHT ================= */
.bdx2-highlight {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.08);
    border-left: 4px solid #3edfa7;
    font-style: italic;
    border-radius: 10px;
    color: #d1f7ec;
}

/* ================= BUTTON ================= */
.bdx2-btn {
    margin-top: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        #f3f7f6 0%,
        #c7f3dd 40%,
        #3edfa7 100%
    );

    color: #072c3f;
    font-weight: 600;
    font-size: 15px;

    /* SOFT SHADOW */
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.15),
        inset 0 2px 4px rgba(255,255,255,0.6);

    transition: all 0.3s ease;
}

.bdx2-btn:hover {
    background: #3edfa7;
}


/* ================= CTA ================= */
.bdx2-cta {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #3edfa7, #0b3a46);
    border-radius: 15px;
    text-align: center;
}

.bdx2-cta button {
    margin-top: 10px;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background: #fff;
    color: #072c3f;
    font-weight: 600;
}

/* ================= COMMENT ================= */
.bdx2-comment input,
.bdx2-comment textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.bdx2-comment button {
    background: linear-gradient(135deg, #3edfa7, #1a8fff);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: #fff;
}


/* SHARE */
.bdx2-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.bdx2-share-tags span {
    background: rgba(255,255,255,0.08);
    padding: 8px 12px;
    margin-right: 8px;
    border-radius: 8px;
    font-size: 12px;
}

.bdx2-share-icons i {
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.bdx2-share-icons i:hover {
    color: #3edfa7;
}

/* AUTHOR BOX */
.bdx2-author-box {
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    align-items: center;
}

.bdx2-author-box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.bdx2-author-box h4 {
    margin: 0;
    color: #ffffff;
}

.bdx2-author-box p {
    font-size: 14px;
    color: #d1f7ec;
}

/* COMMENTS */
.bdx2-comments h3 {
    margin-bottom: 20px;
    color: #ffffff;
}


/* COMMENT ITEM */
.bdx2-comment-item {
    margin-bottom: 25px;
}

/* MAIN COMMENT */
.bdx2-comment-main {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #294F5C;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* REPLY COMMENT */
.bdx2-comment-reply {
    display: flex;
    gap: 15px;
    margin-left: 65px; 
    margin-top: 15px;
    padding: 20px;
    background: #294F5C;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* IMAGE */
.bdx2-comment-main img,
.bdx2-comment-reply img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* BODY */
.bdx2-comment-body h5 {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}

.bdx2-comment-body span {
    font-size: 12px;
    color: #ffffffab;
}

.bdx2-comment-body p {
    margin: 8px 0;
    color: #ffffffab;
    line-height: 1.6;
}

/* REPLY BUTTON */
.bdx2-reply-btn {
    font-size: 13px;
    color: #3edfa7;
    text-decoration: none;
    transition: 0.3s;
}

.bdx2-reply-btn:hover {
    text-decoration: underline;
}

/* REPLY BUTTON */
.bdx2-reply-btn {
    font-size: 13px;
    color: #3edfa7;
    cursor: pointer;
}
.bdx2-comment-arra{
    background: #294F5C;
    border-radius: 10px;
}


/* FORM */
.bdx2-comment-form {
    margin-top: 40px;
}

.bdx2-comment-form textarea {
    width: 100%;
    height: 150px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
    background: #ffffffd6;
}

.bdx2-form-row {
    display: flex;
    gap: 10px;
}

.bdx2-form-row input {
    width: 50%;
    background: #ffffffd6;
}

.bdx2-comment-form input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
    background: #ffffffd6;
}

.bdx2-comment-form button {
    margin-top: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        #f3f7f6 0%,
        #c7f3dd 40%,
        #3edfa7 100%
    );

    color: #072c3f;
    font-weight: 600;
    font-size: 15px;

    /* SOFT SHADOW */
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.15),
        inset 0 2px 4px rgba(255,255,255,0.6);

    transition: all 0.3s ease;
}

.bdx2-comment-form button:hover{
    background: #3edfa7;
}

/* TAG CLOUD */
.bdx2-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bdx2-tag-cloud a {
    text-decoration: none;
    padding: 2px 14px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid rgba(62,223,167,0.3);
    color: #ffffff;
    transition: 0.3s;
}

/* HOVER EFFECT */
.bdx2-tag-cloud a:hover {
    transform: scale(1.1);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .bdx2-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bdx2-inline {
        flex-direction: column;
    }

    .bdx2-inline img {
        width: 100%;
    }

    .bdx2-img-row {
        flex-direction: column;
    }

    .bdx2-img-row img {
        width: 100%;
    }
}




/* SECTION */
.relblog-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #072c3f, #0b3a46);
    margin-bottom: 20px;
}

/* HEADER */
.relblog-header {
    text-align: center;
    margin-bottom: 50px;
}

.relblog-header h2 {
    font-size: 32px;
    color: #3edfa7;
}

.relblog-header p {
    color: #9be8cf;
    font-size: 14px;
}

/* GRID */
.relblog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.relblog-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.relblog-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.relblog-img {
    overflow: hidden;
}

.relblog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.relblog-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.relblog-content {
    padding: 20px;
}

.relblog-category {
    font-size: 12px;
    color: #3edfa7;
}

.relblog-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #fff;
}

.relblog-content p {
    font-size: 14px;
    color: #d1f7ec;
}

/* LINK */
.relblog-content a {
    display: inline-block;
    margin-top: 10px;
    color: #3edfa7;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.relblog-content a:hover {
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .relblog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .relblog-grid {
        grid-template-columns: 1fr;
    }
}



