body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   overflow-x: hidden !important;
   font-family: 'Inter', sans-serif !important;
   background: #fff;
   color: #000;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}
/* Nav bar  */
.fa-phone {
    transform: scaleX(-1);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(90deg, #000 0%, #000 40%, #0b59db 100%);
    padding: 10px;
    transition: background 0.3s ease;
}
.site-header.scrolled {
    background: #ffffff;
}
.top-header {
    position: relative;
    padding: 8px;
    font-size: 16px;
    background: #028fcd;
}
.brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-wrap span {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.whatsApp {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 10px;
    color: #179d0d;
}
.whatsApp a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.brand-wrap img {
    height: 40px;
    width: auto;
}
.header-contact a {
    text-decoration: none;
    color: #fff;
    margin-left: 18px;
    font-weight: 600;
}
.header-contact i {
    margin-right: 6px;
    font-size: 16px;
}
.main-navbar {
   position: relative;
    padding: 0px !important;
    font-size: 16px;
}
.main-navbar .nav-link {
    font-size: 16px;             
    font-weight: 700;
    color: #fff;
    padding: 10px;           
}
.navbar-nav {
    gap: 20px;  
}
.main-navbar .nav-link.active {
    font-weight: 700;
    border-bottom: 2px solid #fff;
    color: #fff;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff !important;
}
.offcanvas {
    height: 100vh;
}
.offcanvas-body {
    overflow-y: auto;
    padding-bottom: 30px;
    background: #028fcd;
}
.offcanvas-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid #e5e5e5;
}
.offcanvas .nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    color: #000;
}
.offcanvas .nav-link.active {
    font-weight: 700;
}
.mobile-submenu {
    max-height: 220px;
    overflow-y: auto;
    margin-top: 6px;
    padding-left: 12px;
    border-left: 3px solid #cfcfcf;
}
.mobile-submenu li a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: #000;
    text-decoration: none;
}
.offcanvas-body .nav-item {
    margin-bottom: 10px;
}
.mobile-social {
    border-top: 1px solid #e5e5e5;
    padding-top: 15px;
    margin-top: 15px;
}
.mobile-social .social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #000;
}
.header-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 260px;
    padding: 8px 0;
    z-index: 1050;
}
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    background: #fff;
}
.dropdown-item {
    font-size: 16px;
    padding: 8px 16px;
    color: #000;
    font-weight: 700;
}
.dropdown-item:hover,
.dropdown-item.active {
    background: #fff;
    font-weight: 700;
    font-size: 16px;
}
.offcanvas-body {
    overflow-y: auto;
}
.mobile-submenu {
    overflow-y: auto;
    padding-left: 10px;
    border-left: 3px solid #ccc;
    margin-top: 6px;
}
.mobile-submenu li a {
    display: block;
    padding: 6px 0;
    font-size: 16px;
    color: #000;
    text-decoration: none;
}
.mobile-submenu li a:hover {
    font-weight: 600;
}
.menu-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #028fcd !important;
    font-weight: 700;
    font-size: 16px;
}
.main-navbar .nav-link {
    color: #fff;
    transition: color 0.3s ease;
}
.main-navbar .nav-link:hover {
    color: #fff;
    transition: color 0.3s ease;
}
.menu-arrow {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: border-color 0.3s ease;
}
.site-header.scrolled .main-navbar .nav-link {
    color: #000;
}
.site-header.scrolled .main-navbar .nav-link.active {
    border-bottom: 2px solid #028fcd;
    color: #028fcd !important;
}
.site-header.scrolled .menu-arrow {
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}
a {
    text-decoration: none !important;
}
.logo-wrap {
    position: relative;
    height: 40px;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    transition: opacity 0.3s ease;
}

/* Default (dark background) */
.logo-white {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
}

/* When scrolled */
.site-header.scrolled .logo-white {
    opacity: 0;
}

.site-header.scrolled .logo-dark {
    opacity: 1;
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1620px !important;   
    }
}
/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
    background: url(../img/circle.png),
        linear-gradient(90deg, #000 0%, #000 40%, #0b59db 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-banner .container {
    position: relative;
    z-index: 2;
}
.hero-banner .sub-title {
    display: inline-block;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}
.hero-banner .sub-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #1e90ff;
    transform: translateY(-50%);
}
.newhero .sub-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #fff !important;
    transform: translateY(-50%);
}
.hero-banner .hero-title {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}
.paragraph {
    font-size: 18px;
    text-align: justify;
    color: #fff;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
}
.hero-banner .hero-title span {
    font-weight: 700;
}
.hero-banner .btn-group {
    display: flex;
    gap: 20px;
}
.hero-banner .th-btn {
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}
.hero-banner .style3 {
    background: #1e63ff;
    color: #fff;
}
.hero-banner .style3:hover {
    background: #1552d6;
}
.hero-banner .style2 {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}
.hero-banner .style2:hover {
    background: #fff;
    color: #000;
}
.hero-img {
    position: relative;
    text-align: right;
}
.hero-img img {
    max-width: 100%;
    position: relative;
    z-index: 2;
    margin-right: 15%;
}
.hero-img:before {
    content: "";
    position: absolute;
    width: 550px;
    height: 1100px;
    background: #fff;
    border-radius: 300px 300px 0 0;
    transform: rotate(-45deg);
    bottom: -510px;
    right: -70px;
    z-index: 1;
}
.hero-img:after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.15;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.hero-banner:after {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    z-index: 1;
}
.hero-banner .row {
    min-height: 700px;
    align-items: center;
}
.structure1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.structure ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.structure ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
}
.structure ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(to right, #e5e7eb 50%, #028fcd 50%);
}
/* Sec2 */
.sp1 {
    margin-top: 50px;
}
.img-box3 {
    position: relative;
}
.img-box3 .img1 img {
    width: 80%;
    height: auto;
}
.about-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 10px;
}
.about-item_img {
    width: 60px;
    height: 60px;
    background: #0b59db;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-item_img img {
    width: 28px;
    filter: brightness(0) invert(1);
}
.box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}
.about-item_text {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}
.th-btn.black-btn {
    background: #0f172a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.th-btn.black-btn:hover {
    background: #0b59db;
    color: #fff;
}
.about-area .sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    color: #000;
}
.about-area .sub-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #1e90ff;
    transform: translateY(-50%);
}
.about-area .hero-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}
.paragraph1 {
    font-size: 18px;
    text-align: justify;
    color: #000;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 20px;
}
/* Sec3 */
.counter-box { 
    position: relative; 
    padding: 10px; 
    border-radius: 18px; 
    transition: 0.3s; 
} 
.counter-box .inner-box { 
    background: #ffffff; 
    border-radius: 14px; 
    padding: 35px 20px; 
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15),  
    0 5px 10px rgba(0, 0, 0, 0.08),  
    -4px -4px 10px rgba(0, 0, 0, 0.04); 
    transition: all 0.3s ease; 
} 
.counter-box h5 { 
    font-size: 28px; 
    font-weight: 700; 
    margin: 10px 0 5px; 
    color: #000; 
} 
.counter-box p { 
    font-size: 20px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    margin: 0; 
} 
.counter-box .icon { 
    font-size: 24px; 
    margin-bottom: 8px; 
} 
.counter-box::after { 
    content: ""; 
    position: absolute; 
    bottom: -6px; 
    left: 25px; 
    width: 60px; 
    height: 6px; 
    border-radius: 4px; 
} 
.counter-box.orange { 
    border: 3px solid #ff8c1a; 
} 
.icon img {
    width: 100px;
    height: 100px;
} 
.counter-box.orange {
    border: 3px solid #ff7a18;
}
.counter-box.orange .icon,
.counter-box.orange p {
    color: #ff7a18;
}
.counter-box.orange::after {
    background: linear-gradient(90deg, #ff7a18, #ffb347);
}
.counter-box.cyan {
    border: 3px solid #00c6ff;
}
.counter-box.cyan .icon,
.counter-box.cyan p {
    color: #00c6ff;
}
.counter-box.cyan::after {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}
.counter-box.blue {
    border: 3px solid #007bff;
}
.counter-box.blue .icon,
.counter-box.blue p {
    color: #007bff;
}
.counter-box.blue::after {
    background: linear-gradient(90deg, #007bff, #00c6ff);
}
.counter-box.navy {
    border: 3px solid #0a2540;
}
.counter-box.navy .icon,
.counter-box.navy p {
    color: #0a2540;
}
.counter-box.navy::after {
    background: linear-gradient(90deg, #0a2540, #1e3c72);
}
.counter-box.green {
    border: 3px solid #00b894;
}
.counter-box.green .icon,
.counter-box.green p {
    color: #00b894;
}
.counter-box.green::after {
    background: linear-gradient(90deg, #00b894, #55efc4);
}
.counter-box.purple {
    border: 3px solid #8e44ad;
}
.counter-box.purple .icon,
.counter-box.purple p {
    color: #8e44ad;
}
.counter-box.purple::after {
    background: linear-gradient(90deg, #8e44ad, #c471ed);
} 
.counter-box:hover { 
    transform: translateY(-5px); 
} 
.cardgap { 
    gap: 20px; 
}
/* Sec4 */
.why-img-box2 img {
    width: 100%;
    border-radius: 20px;
    height: 550px;
    object-fit: cover;
}
.why-feature-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.why-feature-card2 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #f5f5f5;
  padding: 25px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.why-feature-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}
.why-feature-card2 .box-icon img {
  width: 45px;
  height: 45px;
  filter: brightness(0) saturate(100%) 
          invert(42%) sepia(86%) 
          saturate(744%) hue-rotate(165deg) 
          brightness(95%) contrast(92%);
}
.box-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.box-text {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    text-align: justify;
    font-weight: 500;
}
.btn-wrap .th-btn {
  background: #6c63ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.25);
}
.bold {
    font-weight: 800;
}
.btn-wrap .th-btn:hover {
  background: #574fd6;
  transform: translateY(-3px);
}
@media (max-width: 991px) {
  .hero-style14 .hero-title {
    font-size: 32px;
  }
  .paragraph1 {
    max-width: 100%;
  }
}
/* Sec5 */
.glass-section {
  background: linear-gradient(90deg, #01274c 0%, #000 40%, #028fcd 100%);
  padding: 50px 0;
}
.glass-section1 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.glass-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.glass-overlay {
  width: 85%;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-align: center;
  transition: 0.4s ease;
}
.glass-overlay h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.glass-overlay p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-align: justify;
}
.glass-card:hover .glass-overlay {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.22);
}
.glass-overlay .icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}
/* Sec7 */
.quick-stripe {
  background: url(../img/quickhighlights.jpg);
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}
.stripe-item {
  font-size: 40px;
  font-weight: 600;
  padding: 10px 0;
}
#quickStripeSlider .carousel-item {
  transition: transform 0.8s ease-in-out;
}
#quickStripeSlider .carousel-item-next,
#quickStripeSlider .active.carousel-item-end {
  transform: translateX(100%);
}
#quickStripeSlider .carousel-item-prev,
#quickStripeSlider .active.carousel-item-start {
  transform: translateX(-100%);
}
/* Sec8 */
.about-circle-wrap {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.about-circle {
    display: flex;
    align-items: center;
    gap: 20px;
}
.progressbar {
    width: 90px;
    height: 90px;
    position: relative;
}
.progressbar .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(#0B59DB calc(var(--percent) * 1%), #1c2e55 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.progressbar .circle::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: #071a3c;
    border-radius: 50%;
}
.circle-num {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
}
.media-body .box-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #e5ecff;
    max-width: 160px;
}
.img-box14 {
    position: relative;
    text-align: center;
}
.img-box14 .img1 img {
    width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .hero-style14 .hero-title {
        font-size: 32px;
    }
    .about-circle-wrap {
        gap: 25px;
    }
    .about-circle {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Sec9 */
.img-box15 .img1 img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.about-15-title-box {
    position: relative;
}
.about-feature-wrap {
    margin-top: 20px;
}
.about-feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-feature-list ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 28px;
    background: #01274c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.about-feature-icon img {
    width: 30px;
    height: auto;
}
.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0B59DB;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.th-btn:hover {
    background: #084bb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 89, 219, 0.25);
}
.shape-mockup img {
    opacity: 0.6;
    animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@media (max-width: 1199px) {
    .about-area {
        padding: 90px 0;
    }
    .sec-title {
        font-size: 34px;
    }
}
@media (max-width: 767px) {
    .about-area {
        padding: 70px 0;
    }

    .sec-title {
        font-size: 28px;
    }
    .img-box15 {
        margin-bottom: 30px;
    }
}
/* Sec10 */
.category-area {
    position: relative;
    overflow: hidden;
    background-image: url(../img/bestsecbg.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.categorySlider {
    overflow: visible !important;
    perspective: 1600px;
    padding: 60px 0;
}
.categorySlider .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}
.categorySlider .swiper-slide {
    width: 312px !important;
    height: auto;
    display: flex;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
    will-change: transform;
}
.categorySlider .category-card {
    width: 350px;
    height: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}
.categorySlider .category-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}
.categorySlider .box-img {
    height: auto;
    width: 300px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 20px;
}
.categorySlider .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s ease;
}
.categorySlider .category-card:hover .box-img img {
    transform: scale(1.05);
}
.categorySlider .box-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.categorySlider .box-title a {
    text-decoration: none;
    color: #111827;
    transition: color 0.3s ease;
}
.categorySlider .box-title a:hover {
    color: #0B59DB;
}
.categorySlider .sec-text {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.7;
}
.categorySlider .swiper-pagination,
.categorySlider .swiper-button-next,
.categorySlider .swiper-button-prev {
    display: none !important;
}
@media (max-width: 992px) {
    .categorySlider .swiper-slide {
        width: 260px !important;
    }
}
@media (max-width: 576px) {
    .categorySlider .swiper-slide {
        width: 220px !important;
    }
}
/* Sec11 */
.cta.about-area {
    position: relative;
}
.cta.about-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e6e9f2 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}
.cta.about-area .row {
    align-items: center;
    position: relative;
}
.about-area6 {
    background: #fff;
    padding: 70px;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 3;
    width: 100%;
    height: 700px;
}
@media (min-width: 1200px) {
    .about-area6 {
        transform: translateX(80px);
    }
}
.img-box5 {
    position: relative;
    z-index: 1;
}
.img-box5 .img1 img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}
.about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.about-item .icon {
    width: 55px;
    height: 55px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6cdf;
    font-size: 20px;
    flex-shrink: 0;
}
.box-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
}
.about-item_text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #01274c;
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.th-btn:hover {
    background: #1e4fbf;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 108, 223, 0.3);
}
.feelfree .about-feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feelfree .about-feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feelfree .about-feature-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #dbd9d9;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    text-align: left;
}
.feelfree .about-feature-list ul li:hover {
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}
.feelfree .about-feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 12px;
    background: linear-gradient(135deg, #01274c, #028fcd);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feelfree .about-feature-icon img {
    width: 26px;
}
.feelfree .bold {
    font-weight: 800;
    color: #000;
    margin-right: 6px;
    font-size: 16px;
}
.feelfree .about-feature-list ul li {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    align-items: center;
}
/* Sec12 */
.logo-marquee{
background: transparent;
}
.logo-slider{
position:relative;
width:100%;
overflow:hidden;
}
.logo-track{
display:flex;
align-items:center;
width:max-content;
animation: scrollLogo 25s linear infinite;
}
.logo-track img {
    height: auto;
    margin: 0 50px;
    opacity: 1;
    transition: all .3s ease;
    width: 100%;
}
@keyframes scrollLogo{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
/* Sec13 */
.faq-section {
     position: relative;
    overflow: hidden;
    background-image: url(../images/sec10bg.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.accordion-item{
border:none;
margin-bottom:10px;
border-radius:6px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}
.accordion-button{
font-weight:600;
font-size:18px !important;
padding:15px 18px;
color: #000 !important;
}
.accordion-button:not(.collapsed){
background:#0d6efd;
color:#fff;
}
.accordion-body {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-weight: 500;
    text-align: justify;
}
.accordion-button::after{
display:none;
}
.accordion-button{
position:relative;
padding-right:40px;
}
.accordion-button::before{
content:"-";
position:absolute;
right:18px;
font-size:22px;
font-weight:600;
color:#0d6efd;
}
.accordion-button.collapsed::before{
content:"+";
}
/* Sec14 */
.blogs-area {
    background: #ffffff;
}
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ebe9e8;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}
.blog-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #896b4c, #c2a574, #896b4c);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}
.blog-content {
    padding: 22px;
}
.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.blog-content p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.7;
    text-align: justify;
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}
.blog-date {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.read-more {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    background: #01274c;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.read-more:hover {
    background: #01274c;
    color: #fff;
}
p {
    font-weight: 500 !important;
}
.btn-dark  {
    background: #01274c !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #fff;
}
.hero-buttons .btn:hover {
    background: #01274c;
}
.btn-dark:hover {
    background:#01274c !important;
    color: #fff !important;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.blog-meta span{
margin:0 8px;
}
.meta-icon{
width:16px;
height:16px;
object-fit:contain;
margin-right:4px;
}
/* Footer */
.footer-layout10 {
    background: linear-gradient(90deg, #01274c 0%, #000 40%, #028fcd 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 50px 0 0 0;
}
.shadow-title{
position:absolute;
right:5%;
top:20px;
font-size:220px;
font-weight:800;
color:rgba(255,255,255,0.03);
pointer-events:none;
}
.about-logo img {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
}
.about-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #fff;
    text-align: justify;
    font-weight: 500;
}
.th-social{
display:flex;
gap:12px;
}
.th-social a{
width:40px;
height:40px;
border-radius:50%;
border:1px solid rgba(255,255,255,0.2);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:14px;
transition:0.3s;
}
.th-social a:hover{
background:#0b5ed7;
border-color:#0b5ed7;
}
.widget_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #fff;
    width: fit-content;
    padding-bottom: 5px;
}
.footer-widget ul{
padding:0;
margin:0;
list-style:none;
}
.footer-widget ul li{
margin-bottom:14px;
}
.footer-widget ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}
.footer-widget ul li a:hover{
color:#fff;
padding-left:6px;
}
.info-box_text{
display:flex;
gap:15px;
margin-bottom:20px;
align-items:flex-start;
}
.info-box_text .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.info-box_text .icon img{
width:20px;
height: 20px;
}
.info-box_text .details p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    text-align: justify;
    font-weight: 500;
}
.info-box_link{
color:#fff;
text-decoration:none;
}
.info-box_link:hover{
color:#fff;
}
.footer-newsletter-style3 h4{
font-size:22px;
margin-bottom:25px;
color:#fff;
}
.newsletter-title{
font-size:15px;
margin-bottom:10px;
color:#cfd6e4;
}
.footer-search-contact form{
position:relative;
}
.footer-search-contact input{
width:100%;
padding:15px 60px 15px 20px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.15);
background:rgba(255,255,255,0.05);
color:#fff;
outline:none;
}
.footer-search-contact input::placeholder{
color:#9aa6b2;
}
.icon-btn{
position:absolute;
right:6px;
top:6px;
width:44px;
height:44px;
border-radius:50%;
background:#0b5ed7;
border:none;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
transition:.3s;
}
.icon-btn:hover{
background:#0a4cb3;
}
.copyright-wrap{
border-top:1px solid rgba(255,255,255,0.08);
margin-top:50px;
padding:20px 0;
}
.copyright-text{
margin:0;
font-size:16px;
color:#fff;
font-weight: 500;
text-align: center;
}
.copyright-text a{
color:#fff;
text-decoration:none;
}
.footer-links ul{
display:flex;
gap:30px;
justify-content:flex-end;
padding:0;
margin:0;
list-style:none;
}
.footer-links ul li a{
font-size:14px;
color:#9aa6b2;
text-decoration:none;
transition:.3s;
}
.footer-links ul li a:hover{
color:#fff;
}
@media (max-width:991px){
.footer-links ul{
justify-content:center;
margin-top:10px;
}
.shadow-title{
display:none;
}
}
.footer-blog{
margin-top:15px;
}
.footer-blog-item{
display:flex;
align-items:center;
gap:12px;
margin-bottom:18px;
}
.footer-blog-img{
width:70px;
height:55px;
overflow:hidden;
border-radius:4px;
flex-shrink:0;
}
.footer-blog-img img{
width:100%;
height:100%;
object-fit:cover;
}
.footer-blog-content a {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    font-weight: 500;
}
.footer-blog-content a:hover{
color:#1ea4ff;
}
/* Subbanner */
.breadcumb-area{
    background-image: url(../img/subbanner.jpg);
}
.breadcumb-wrapper{
position:relative;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
padding:50px 0;
border-radius:20px;
overflow:hidden;
}
.breadcumb-wrapper::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(3,24,46,0.85);
z-index:1;
}
.breadcumb-content{
position:relative;
z-index:2;
text-align:center;
color:#fff;
}
.breadcumb-title{
font-size:36px;
font-weight:700;
margin-bottom:15px;
color:#fff;
}
.breadcumb-menu{
list-style:none;
padding:0;
margin:0;
display:flex;
justify-content:center;
align-items:center;
gap:10px;
font-size:18px;
}
.breadcumb-menu li {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.breadcumb-menu li a{
color:#fff;
text-decoration:none;
transition:0.3s;
}
.breadcumb-menu li a:hover{
color:#0ea5e9;
}
.breadcumb-menu li + li::before{
content:"»";
margin-right:10px;
color:#fff;
}
/* Portfolio Sec1 */
.portfolio-search input {
    height: 50px;
    border-radius: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.portfolio-card {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #fff;
    padding: 20px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.portfolio-card img{
width:100%;
height:auto;
object-fit:cover;
border-radius:6px;
}
.portfolio-content h5{
font-size:18px;
font-weight:600;
margin-bottom:5px;
}
.portfolio-content p {
    font-size: 16px;
    color: #000;
    margin: 0;
    line-height: 1.7;
    text-align: justify;
}
.portfolio-sidebar{
background:#fff;
padding:25px;
border-radius:8px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
position: sticky;
top:120px;   /* distance from top when scrolling */
}
.portfolio-sidebar a {
    text-decoration: none;
    color: #0d6efd;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 500;
}
.portfolio-sidebar ul{
list-style:none;
padding:0;
margin:0;
}
.portfolio-sidebar li{
margin-bottom:10px;
}
.portfolio-sidebar a{
text-decoration:none;
color:#0d6efd;
font-size:15px;
transition:0.3s;
}
.portfolio-sidebar a:hover{
padding-left:6px;
color:#000;
}
.portfolio-sidebar a.active{
color:#000;
font-weight:700;
padding-left:6px;
}
#categoryFilter a.active{
font-weight:600;
color:#0d6efd;
}
.portfolio-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: auto;
    padding-left: 20px;
    gap: 15px;
    margin-top: 10px;
}
.search-box{
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input{
    width: 100%;
    height: 50px;
    border-radius: 30px;
    padding: 0 50px 0 20px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.search-box button{
    position: absolute;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
}

.portfolio-card{
    display: block;
    padding: 0;
    overflow: hidden;
}

.portfolio-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content{
    padding: 15px;
}

#portfolioContainer{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

@media(max-width:768px){
    #portfolioContainer{
        grid-template-columns: 1fr;
    }
}
@media(max-width:768px){
.portfolio-card{
flex-direction:column;
align-items:flex-start;
}
.portfolio-card img{
width:100%;
height:auto;
}
}
/* About sec1 */
.about-area{
position:relative;
overflow:hidden;
}
.title-area .sub-title{
display:inline-block;
font-size:14px;
font-weight:600;
color:#2563eb;
margin-bottom:10px;
}
.sec-title{
font-size:48px;
font-weight:700;
line-height:1.2;
color:#111827;
max-width:520px;
}
.sec-text{
font-size:16px;
line-height:1.8;
color:#6b7280;
max-width:520px;
}
.img-box8{
position:relative;
}
.img-box8 .img1,
.img-box8 .img2{
border-radius:25px;
overflow:hidden;
}
.img-box8 img{
width:100%;
display:block;
border-radius:25px;
}
.img-box8 .img3{
border-radius:30px;
overflow:hidden;
margin-bottom:40px;
}
.img-box8 .img3 img {
    width: 100%;
    border-radius: 30px;
    height: 400px;
    object-fit: cover;
}
.about-item-wrap{
margin-top:20px;
}
.about-item{
display:flex;
gap:20px;
align-items:flex-start;
margin-bottom:25px;
}
.about-item_img{
width:55px;
height:55px;
min-width:55px;
background:#2563eb;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}
.about-item_img img{
width:20px;
filter:brightness(0) invert(1);
}
.box-title{
font-size:20px;
font-weight:600;
color:#111827;
margin-bottom:5px;
}
.about-item_text{
font-size:15px;
color:#6b7280;
line-height:1.6;
max-width:380px;
}
@media (max-width:1200px){
.sec-title{
font-size:40px;
}
}
@media (max-width:992px){
.about-area{
padding:70px 0;
}
.img-box8 .img3{
margin-top:30px;
}
.sec-title{
font-size:34px;
}
}
@media (max-width:576px){
.sec-title{
font-size:28px;
}
.sec-text{
font-size:14px;
}
.about-item{
flex-direction:column;
align-items:flex-start;
}
.about-item_img{
margin-bottom:10px;
}
}
/* Sec2 */
.process-section {
     position: relative;
    overflow: hidden;
    background-image: url(../img/goalsbg.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.process-section .container {
    max-width: 1200px !important;
    height: auto;
}
.process-title{
    text-align:center;
    margin-bottom:70px;
}
.process-title span{
    color:#5d5df6;
    font-weight:600;
}
.process-title h2{
    font-size:40px;
    margin-top:10px;
}
.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}
.process-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 220px 220px 220px 220px;
    padding: 120px 40px 10px;
    text-align: center;
    position: relative;
    width: 300px;
    height: 580px;
    margin: auto;
}
.process-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px; 
    background: linear-gradient(90deg, #01274c 0%, #000 40%, #028fcd 100%);
}
.process-image img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}
.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #000;
    margin-top: 100px;
    font-weight: 700;
}
.process-card p{
    font-size:16px;
    line-height:1.7;
    color:#000;
    text-align: justify;
}
@media(max-width:1200px){
    .process-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
@media(max-width:900px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .process-grid{
        grid-template-columns:1fr;
    }
}
/* Sec4 */
.ml-section{
background:#fff;
}
.ml-card{
background:
linear-gradient(
135deg,
rgba(1,39,76,1) 0%,
rgba(1,112,163,0.8) 50%,
rgba(2,143,205,0.6) 100%
),
url("../images/cardbgmist.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
padding:45px 40px;
border-radius:30px;
position:relative;
height:450px;
width:450px;
transition:0.3s;
clip-path: polygon(
0% 0%,
85% 0%,
100% 15%,
100% 100%,
15% 100%,
0% 85%
);
display:flex;
flex-direction:column;
}
.ml-card:hover{
transform:translateY(-6px);
}
.read-more1{
font-weight:600;
color:#000;
background: #fff;
text-decoration:none;
font-size:16px;
margin-top:auto;
align-self:flex-end;
}
.read-more1 span{
margin-left:6px;
}
.ml-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 30px;
}
.ml-icon img {
    width: 40px;
    height: auto;
}
.ml-card h3{
font-size:24px;
font-weight:700;
color:#fff;
margin-bottom:15px;
}
.ml-card p{
font-size:16px;
line-height:1.7;
color:#fff;
margin-bottom:15px;
font-weight: 500;
text-align: justify;
}
/* Web services Sec1 */
.webpageimg img{
    border-radius: 30px;
}
/* Web development Sec2 */
.process-box-img-wrap{
position:relative;
width:100%;
height:auto;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
margin: 50% 30% 0 -25%;
}
.process-box-img{
position:absolute;
top:50%;
left:50%;
width:600px;
height:500px;
transform-origin:center;
transition:all .6s cubic-bezier(.25,.8,.25,1);
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}
.box-img{
width:100%;
height:100%;
object-fit:cover;
}
.process-box-img:nth-child(1) {
    transform: translate(-10%,0%) rotate(0deg);
    z-index: 5;
}
.process-box-img:nth-child(2) {
    transform: translate(-17%,-10%) rotate(-5deg);
    z-index: 4;
}
.process-box-img:nth-child(3) {
    transform: translate(-23%,-22%) rotate(-10deg);
    z-index: 3;
}
.process-box-img:nth-child(4) {
    transform: translate(-33%,-37%) rotate(-15deg);
    z-index: 2;
}
.process-box-img:nth-child(5) {
    transform: translate(-41%,-50%) rotate(-15deg);
    z-index: 1;
}
.process-box-img.active-img{
transform: translate(-10%,0%) rotate(0deg);
z-index:10;
box-shadow:0 30px 60px rgba(0,0,0,0.25);
}
.process-card4{
display:flex;
justify-content:space-between;
align-items:center;
padding:28px 30px;
margin-bottom:20px;
border-radius:10px;
background:#fff;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
cursor:pointer;
transition:all .3s ease;
}
.process-card4:hover{
background:#01274c;
color:#fff;
transform:translateX(8px);
}
.process-card4:hover .box-number{
color:#028fcd;
}
.box-title1{
font-size:20px;
font-weight:700;
margin-bottom:8px;
color: #000;
}
.box-text1 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-align: justify;
    width: 80%;
}
.process-card4:hover .box-text1, .process-card4:hover .box-title1 {
    color: #fff;
} 
.box-number {
    font-size: 80px;
    font-weight: 700;
    color: #d1d5db;
}
/* Sec3 */
.project-box-wrapper .project-card-items h4 {
    position: absolute;
    top: 55px;
    left: 55px;
    font-size: 36px;
    font-weight: 700;
    color: #d1d5db;
}
.project-box-wrapper .project-card-items .project-content h3 a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.project-box-wrapper .project-card-items .project-content h3 a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}
.project-box-wrapper .project-card-items .project-content p {
    max-width: 601px;
    margin-bottom: 25px;
      text-align: justify;
}
.theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    padding: 16px 40px 14px;
    transition: 0.5s ease-in-out;
    text-transform: capitalize;
    overflow: hidden;
    gap: 10px;
    text-align: center;
    background-color: #fff;
    z-index: 1;
    border-radius: 100px;
    border: 1px solid #000;
}
.theme-btn:hover {
  color: #000 !important;
}
.project-box-wrapper .project-card-items .project-content .list li a {
    border: 1px solid rgba(2, 6, 10, 0.1);
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    margin: 0 2px;
}
.project-box-wrapper .project-card-items .project-thumb img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px;
}
a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: #000;
    transition: all 0.4s ease-in-out;
}
.fix {
    overflow: hidden;
}
.project-box-wrapper {
    margin-top: 8px;
}
.section-title {
    position: relative;
    margin-bottom: 30px;
}
.project-box-wrapper .project-card-items {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 100px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}
.project-box-wrapper .project-card-items .project-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #01274c;
    margin-bottom: 20px;
    width: 601px;
}
/* Sec4 */
.faq-section1 {
     position: relative;
    overflow: hidden;
    background-image: url(../img/webdevebg.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.faq-section1 .hero-title {
    color: #fff;
}
/* Webservices Sec1 */
.course-card {
    position: relative;
    border-radius: 26px;
    padding: 30px;
    height: 250px;
    overflow: hidden;
    transition: 0.3s;
}
.course-card:hover{
transform:translateY(-6px);
}
.bg-green{ background:#01274c; }
.bg-orange{ background:#028fcd; }
.bg-blue{ background:#01274c; }
.course-content {
    position: absolute;
    bottom: 0px;
    left: 30px;
    z-index: 2;
    max-width: 55%;
}
.badge-level{
display:inline-block;
font-size:12px;
border:1px solid #000;
border-radius:20px;
padding:3px 12px;
margin-bottom:10px;
}
.course-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.course-card p{
color: #fff
}
.course-img {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 180px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}
.course-img img{
width:100%;
height:100%;
object-fit:cover;
}
.arrow-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 20px;
    font-weight: 800;
}
.layout-middle .course-content{
top:30px;
bottom:auto;
}
.layout-middle .course-img{
top:auto;
bottom:25px;
right:25px;
}
.layout-middle .arrow-btn{
top:auto;
bottom:25px;
}
/* Webdeveleopment sec1 */
.service-card{
background:url("../img/cardbg2.jpg");
border-radius:14px;
padding:40px 25px;
color:#fff;
position:relative;
overflow:hidden;
width: 100%;
height: auto;
display:flex;
flex-direction:column;
justify-content:center;
}
.service-card *{
position:relative;
z-index:2;
}
.service-icon {
    margin-bottom: 20px;
}
.service-icon img{
width:100px;
}
.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.service-buttons a {
    color: #000;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border-radius: 30px;
}
.service-buttons a:hover {
    color: #000;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    border-radius: 30px;
}
.service-buttons{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}
.btn-explore{
background:#1e90ff;
color:#fff;
padding:8px 20px;
border-radius:30px;
font-size:14px;
}
.btn-portfolio{
background:#0b6ccf;
color:#fff;
padding:8px 20px;
border-radius:30px;
font-size:14px;
}
/* Services-details page 3 */
.detailsimg img{
    border-radius: 30px;
}
/* Services page 2 */
.location-grid {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 15px;
    background: linear-gradient(135deg, #01274c 0%, #0170a3 50%, #028fcd 100%);
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
}
.location-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    animation: shineMove 2.5s linear infinite;
}
@keyframes shineMove {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
/* Sec2 */
.cta-strip{
width: 100%;
height: auto;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding: 20px 0;
position:relative;
background: url(../images/ctabtn.jpg);
}
.cta-strip .container{
position:relative;
z-index:2;
}
.cta-text{
color:#fff;
font-size:28px;
font-weight:600;
margin:0;
}
.cta-btn{
background:#39b54a;
color:#fff;
padding:10px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
display:inline-flex;
align-items:center;
gap:8px;
font-size:16px;
}
.cta-btn i{
font-size:20px;
}
.cta-btn:hover{
background:#2da63d;
color:#fff;
}
/* Sec1 */
.image-card {
    padding: 12px;
}
.image-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.info-card.wide {
    background: #ffffff;
}
.bg-light .info-card h5 {
    font-weight: 800;
    color: #1d4e77;
    margin-bottom: 8px;
    font-size: 20px;
}
.info-card p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0;
}
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    line-height: 1.7;
}
.feature-list li::before {
    content: "⚽";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 600;
}
.bg-light {
    background-color: #15304b !important;
    padding: 50px 0;
}
/* Sec2 */
.testimonial-section{
position:relative;
padding:50px 0;
background-image:url("../img/e-commain2.jpg");
background-size:cover;
background-position:center;
}
.testimonial-section .testi-card{
background:#061a33;
border-radius:30px;
padding:30px;
display:flex;
align-items:center;
gap:50px;
color:#fff;
}
.testimonial-section .testi-content{
max-width:520px;
}
.testimonial-section .box-text{
color:#fff;
margin-bottom:15px;
}
.testimonial-section .box-profile{
display:flex;
align-items:center;
gap:15px;
}
.testimonial-section .box-avater img{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}
.testimonial-section .box-title{
font-size:20px;
margin-bottom:3px;
}
.testimonial-section .box-desig{
font-size:14px;
color:#4da3ff;
}
.testimonial-section .testi-image{
position:relative;
}
.testimonial-section .testi-image img{
width:260px;
height:320px;
object-fit:cover;
border-radius:18px;
display:block;
}
.testimonial-section .consult-btn{
position:absolute;
bottom:15px;
left:50%;
transform:translateX(-50%);
background:#0d6efd;
color:#fff;
padding:10px 22px;
font-size:14px;
border-radius:25px;
text-decoration:none;
font-weight:500;
transition:0.3s;
white-space:nowrap;
}
.testimonial-section .consult-btn:hover{
background:#084298;
color:#fff;
}
@media (max-width:992px){
.testimonial-section .testi-card{
flex-direction:column;
text-align:center;
}
.testimonial-section .testi-image img{
width:100%;
height:auto;
}
}
/* Sec3 */
.optimizated{
position:relative;
overflow:hidden;
}
.squre-shape{
display:inline-block;
width:8px;
height:8px;
background:#0B59DB;
}
.about-wrap13{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:20px;
align-items:center;
margin-top:10px;
}
.about-wrap-counter{
display:flex;
flex-direction:column;
gap:30px;
}
.about-circle2{
background:#071a34;
color:#fff;
border-radius:18px;
padding:35px 25px;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}
.about-circle2 .box-title{
font-size:16px;
margin-top:15px;
line-height:1.5;
color:#fff;
}
.img-box13-2 img{
width:100%;
border-radius:14px;
}
.about-wrapp-content{
max-width:520px;
}
.sec-text{
color:#6c7380;
line-height:1.7;
font-size:15px;
}
.about-item-wrap {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.about-item{
display:flex;
gap:18px;
align-items:flex-start;
}
.about-item_img{
background:#eef1f7;
width:60px;
height:60px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
}
.about-item_img img{
width:28px;
}
.about-item_centent .box-title{
font-size:20px;
font-weight:600;
color:#1c2430;
margin-bottom:4px;
}
.about-item_text{
font-size:14px;
color:#6c7380;
line-height:1.6;
}
.th-btn{
background:#0b1a33;
color:#fff;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
display:inline-flex;
align-items:center;
gap:10px;
font-size:15px;
}
.th-btn:hover{
background:#0B59DB;
color:#fff;
}
.img-box13-1{
position:relative;
}
.img-box13-1 img{
width:100%;
border-radius:18px;
}
.about-wrap-counter.style2{
position:absolute;
bottom:-40px;
right:-40px;
background:#1e5bd8;
border-radius:18px;
padding:25px;
color:#fff;
width:200px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}
.about-wrap-counter.style2 .box-title{
font-size:15px;
margin-top:10px;
color:#fff;
}
.discount-tag{
position:absolute;
top:-40px;
right:40px;
text-align:center;
}
.discount-tag .icon img{
width:60px;
}
.discount-wrapp{
margin-top:10px;
font-size:12px;
letter-spacing:2px;
color:#333;
}
@media (max-width:1200px){
.about-wrap13{
grid-template-columns:1fr;
gap:40px;
}
.about-wrap-counter.style2{
position:relative;
bottom:auto;
right:auto;
margin-top:20px;
}
.discount-tag{
display:none;
}
}
/* Sec4 */
.card-section{
background: #028fcd;
padding:50px 0;
}
.card-section .process-card {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    position: relative;
    clip-path: polygon(0 0,80% 0,100% 18%,100% 100%,20% 100%,0 82%);
    transition: 0.3s;
    height: auto;
    display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
.card-section .process-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.card-section .step-badge{
position:absolute;
top:18px;
left:18px;
background:#565a6b;
color:#fff;
padding:6px 18px;
border-radius:20px;
font-size:14px;
font-weight:500;
}
.card-section .icon-box {
    width: 100px;
    height: 100px;
    background: #eef1f6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}
.card-section .icon-box img{
width: 60px;
height: 60px;
}
.card-section .process-card h4{
font-size:20px;
font-weight:600;
margin-bottom:15px;
color: #01274c;
}
.card-section .process-card p{
font-size:15px;
color:#6b7280;
line-height:1.7;
margin:0;
}
.read-more2{
font-weight:600;
color:#fff;
background: #01274c;
text-decoration:none;
font-size:16px;
display:inline-flex;
align-self:flex-end;
}
.read-more2 span{
margin-left:6px;
}
/* Sec5 */
.choose__img-three {
    margin-left: 35px;
    clip-path: polygon(22.689% 0%, 22.689% 0%, 23.219% 0.054%, 23.732% 0.213%, 24.224% 0.471%, 24.69% 0.823%, 25.126% 1.263%, 25.527% 1.787%, 25.889% 2.387%, 26.205% 3.059%, 26.472% 3.798%, 26.685% 4.598%, 27.342% 7.551%, 27.342% 7.551%, 27.555% 8.351%, 27.822% 9.09%, 28.138% 9.762%, 28.499% 10.363%, 28.9% 10.886%, 29.336% 11.326%, 29.803% 11.678%, 30.295% 11.936%, 30.808% 12.095%, 31.337% 12.15%, 95.745% 12.15%, 95.745% 12.15%, 96.435% 12.241%, 97.09% 12.507%, 97.7% 12.932%, 98.258% 13.502%, 98.754% 14.203%, 99.179% 15.019%, 99.525% 15.938%, 99.783% 16.943%, 99.944% 18.022%, 100% 19.159%, 100% 92.991%, 100% 92.991%, 99.944% 94.128%, 99.783% 95.206%, 99.525% 96.212%, 99.179% 97.13%, 98.754% 97.947%, 98.258% 98.648%, 97.7% 99.218%, 97.09% 99.643%, 96.435% 99.908%, 95.745% 100%, 4.255% 100%, 4.255% 100%, 3.565% 99.908%, 2.91% 99.643%, 2.3% 99.218%, 1.742% 98.648%, 1.246% 97.947%, 0.821% 97.13%, 0.475% 96.212%, 0.217% 95.206%, 0.056% 94.128%, 0% 92.991%, 0% 7.009%, 0% 7.009%, 0.056% 5.872%, 0.217% 4.794%, 0.475% 3.788%, 0.821% 2.87%, 1.246% 2.053%, 1.742% 1.352%, 2.3% 0.782%, 2.91% 0.357%, 3.565% 0.092%, 4.255% 0%, 22.689% 0%);
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* Sec6 */
.faq-section2 {
     position: relative;
    overflow: hidden;
    background-image: unset;
    width: 100%;
    padding: unset;
}
/* E-Tech Sec1 */
.img-box3 .img2 img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 30px;
}
/* Sec2 */
.about-company-section{
background: #01274c;
padding: 50px 0 0;
position: relative;
}
.arch-img{
overflow:hidden;
border-radius:350px 350px 0px 0px;
background:#ddd;
padding: 0;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.arch-img img{
width:100%;
height:100%;
object-fit:cover;
}
.about-images .center img {
    height: 500px;
}
.about-images .left img, .about-images .right img {
    height: 400px;
}
.about-images{
position:relative;
}
.about-images .col-md-4 {
    padding: 0 0 0 1px;
}
@media(max-width:768px){
.arch-img{
height:220px;
}
.arch-img.center{
height:240px;
}
}
/* Sec3 */
.e-tech .icon_box_all {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #01274c;
    padding: 30px 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1); /* even shadow on all sides */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.e-tech .icon_box_all:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.15); /* stronger even shadow on hover */
}
.e-tech .icon_box_all .icon_content .icon {
    width: 60px;
    height: 60px;
    background-color: #01274c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.e-tech .icon_box_all .icon_content .icon img {
   width: 40px;
   height: 40px;
}
.e-tech .icon_box_all {
    position: relative; /* ensure absolute small positions relative to this box */
}
.e-tech .icon_box_all .icon_content small {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #c5d1f3; /* Light blue number */
    position: absolute;
    top: 20px;  /* consistent spacing from top */
    right: 20px; /* consistent spacing from right */
}
.e-tech .icon_box_all .icon_content .text_box h2,
.e-tech .icon_box_all .icon_content .text_box p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    font-weight: 500;
}
.font-20 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    color: #000;
}
.e-tech .icon_box_all .icon_content .text_box h2 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
}
.e-tech ul.newlist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.e-tech ul.newlist li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.e-tech ul.newlist li span {
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-weight: 700;
}
/* Sec4 */
.hex-design {
     display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.page-wrap {
     display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.infographic-svg1 { 
    width: 100%; 
    height: auto; 
    display: block; 
    overflow: visible; 
}
.mobile-svg {
    display: none;
}
/* Sec5 */
.card-design {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.infographic-svg {
    width: 100%;
    height: auto;
}
/* Sec6 */
.illustrator{
position:relative;
z-index:1;
}

/* background illustration */

.illustrator::before{
content:"";
position:absolute;
left:-150px;
top:-180px;
width:1000px;
height:1000px;
background-image:url("../images/illuimg1.webp"); /* your illustrator image */
background-repeat:no-repeat;
background-size:contain;
background-position:left center;
opacity:0.15;
z-index:-1;
}
/* E-Cloud Sec1 */
.illustrator1{
position:relative;
z-index:1;
}
.illustrator1::after{
content:"";
position:absolute;
right:-180px;
bottom:-40px;
width:380px;
height:380px;
background-image:url("../images/illuimg1.webp"); /* right illustrator image */
background-repeat:no-repeat;
background-size:contain;
background-position:right center;
opacity:0.12;
z-index:-1;
}
/* Sec2 */
.cloud-zigzag-section{
padding:50px 0;
background:linear-gradient(135deg,#01274c 0%,#0170a3 50%,#028fcd 100%);
}
.zigzag-sub{
text-align:center;
margin:auto;
margin-bottom:20px;
color:#fff;
font-size:16px;
font-weight:500;
}
.zigzag-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(5,1fr);
align-items:center;
gap:40px;
}
.zigzag-item:nth-child(even){
margin-top:120px;
}
.zigzag-content{
width:220px;
height:220px;
background:white;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
transform:rotate(45deg);
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
margin:auto;
}
.diamond-inner{
transform:rotate(-45deg);
text-align:center;
padding:10px;
}
.diamond-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color: white;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.diamond-inner h4{
font-size:20px;
margin-bottom:6px;
font-weight:700;
}
.zigzag-footer{
margin-top:70px;
background:white;
padding:30px;
border-radius:12px;
text-align:center;
max-width:750px;
margin-left:auto;
margin-right:auto;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}
/* Sec3 */
.dashboard-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
grid-template-rows:repeat(5,120px);
gap:15px;
margin:auto;
}
.dashboard-card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border: 3px solid #01274c;
    transition: .35s;
    height: 100px;
}
.dashboard-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}
.dashboard-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.7;
}
.dashboard-card.hero{
grid-column:1;
grid-row:1 / span 4;
padding:0;
border:none;
height: auto;
}
.dashboard-card.hero img{
width:100%;
height:100%;
object-fit:cover;
border-radius:14px;
}
.dashboard-card.wide:first-of-type{
grid-column:1;
grid-row:5;
}
.dashboard-card.wide:last-of-type{
grid-column:2 / span 2;
grid-row:5;
}
.dashboard-footer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: #000;
    line-height: 1.7;
}
.wide {
    height: 80px;
}
/* Sec4 */
.bg-dark-cloud{
background:#01274c;
padding:50px 40px;
border-radius:30px;
align-items:center;
}
.bg-dark-cloud > div[class*="col-"]{
flex:0 0 33.333%;
max-width:33.333%;
text-align:center;
}
.cta-img3-1 img,
.cta-img3-2 img{
width:100%;
border-radius:12px;
}
.cta-img3-1 .img{
transform:skewX(-8deg);
overflow:hidden;
}
.cta-img3-2 .img{
transform:skewX(8deg);
overflow:hidden;
}
.cta-img3-1 img,
.cta-img3-2 img{
transform:skewX(8deg);
}
.structure2{
display:inline-block;
text-align:left;
margin:20px auto 0;
padding-left:20px;
}
.structure2 li{
margin-bottom:10px;
font-size:16px;
color: #fff !important;
font-weight: 500;
}
/* Sec6 */
.why-mist .process-item{
max-width:180px;
}
.why-mist .process-row{
margin-top:50px;
}
.why-mist .process-circle{
width:110px;
height:110px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
margin:auto;
position:relative;
}
.why-mist .process-circle img{
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}
.why-mist .fw-bold{
line-height:1.5;
}
.why-mist .teal{background:#1bb3a9;}
.why-mist .yellow{background:#d9d637;}
.why-mist .green{background:#7ac943;}
.why-mist .blue{background:#5c7ea3;}
.why-mist .orange{background:#f6a623;}
.why-mist .process-circle::after{
content:"";
position:absolute;
width:110px;
height:60px;
background-size:contain;
background-repeat:no-repeat;
z-index:1;
}
.why-mist .teal::after {
    background-image: url("../images/arrowup.png");
    right: -116px;
    top: 85px;
    transform: rotate(30deg);
}
.why-mist .yellow::after {
    background-image: url("../images/arrowdown.png");
    right: -131px;
    top: 75px;
    transform: rotate(9deg);
}
.why-mist .green::after {
    background-image: url("../images/arrowup.png");
    right: -116px;
    top: -35px;
    transform: rotate(0deg);
}
.why-mist .blue::after {
    background-image: url("../images/arrowdown.png");
    right: -120px;
    top: -40px;
    transform: rotate(-36deg);
}
.why-mist .orange::after{
display:none;
}
/* E-Secure Sec2 */
.payment .feat-grid {
    width: 100%;
    max-width: 1000px;
    height: auto;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
.payment .feat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 175px 58px 175px;
    position: relative;
  }
.payment .feat-grid::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 3%;
    top: calc(175px + 29px);
    transform: translateY(-50%);
    height: 1.5px;
    background: linear-gradient(135deg, #01274c 0%, #0170a3 50%, #028fcd 100%);
    z-index: 0;
    width: 80%;
}
.payment .ct { 
    grid-row: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-end; 
}
.payment .cm { 
    grid-row: 2; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    z-index: 2; 
}
.payment .cb { 
    grid-row: 3; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; 
}
.payment .lbl {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-align: center;
    line-height: 1.5;
}
.payment .lbl-above { 
    margin-bottom: 14px; 
}
.payment .lbl-below { 
    margin-top: 14px; 
}
.payment .num {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    background: transparent;
    position: relative;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #01274c 0%, #0170a3 50%, #028fcd 100%);;
}
.payment .house {
    width: 90px;
    height: 88px;
    background: linear-gradient(135deg, #01274c 0%, #0170a3 50%, #028fcd 100%);;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 22px rgba(24, 185, 140, 0.38);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.payment .house:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(24, 185, 140, 0.5);
}
.payment .house-up {
    clip-path: polygon(50% 0%, 100% 32%, 100% 100%, 0% 100%, 0% 32%);
}
.payment .house-dn {
    clip-path: polygon(0% 0%, 100% 0%, 100% 68%, 50% 100%, 0% 68%);
}
.payment .house i {
    color: #fff;
    font-size: 50px;
    position: relative;
    z-index: 1;
}
.payment .house-up i { 
    margin-top: 8px; 
}
.payment .house-dn i { 
    margin-bottom: 8px; 
} 
/* Sec4 */
.gateway-premium-section{
padding:50px 0;
background:#01274c;
color:#fff;
position:relative;
overflow:hidden;
}
.gateway-premium-title{
font-size:40px;
font-weight:700;
margin-bottom:15px;
}
.gateway-premium-sub{
color:#d6d6d6;
max-width:700px;
margin:auto;
margin-bottom:60px;
}
.gateway-premium-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 20px 20px;
    position: relative;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.15);
    height: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
.gateway-premium-card h5{
font-weight:600;
margin-bottom:10px;
}
.gateway-premium-card:hover{
transform:translateY(-10px) scale(1.03);
background:rgba(255,255,255,0.15);
box-shadow:0 15px 40px rgba(0,0,0,0.4);
opacity: 1;
}
.gateway-badge{
position:absolute;
top:15px;
right:15px;
font-size:12px;
padding:5px 10px;
border-radius:20px;
background:linear-gradient(45deg,#00c6ff,#0072ff);
color:#fff;
font-weight:500;
}
.paragraph3 {
    font-size: 20px;
    text-align: justify;
    color: #000;
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 20px;
}
/* Sec4 */
.payment-features-section .payment-row{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}
.payment-features-section .feature-box{
text-align:center;
flex:1;
padding:20px;
}
.payment-features-section .feature-icon{
width:150px;
margin-bottom:15px;
transition:0.3s;
}
.payment-features-section .feature-box:hover .feature-icon{
transform:translateY(-8px) scale(1.08);
}
.payment-features-section .feature-box h6 {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}
@media(max-width:991px){
.payment-features-section .feature-box{
flex:0 0 33.33%;
margin-bottom:30px;
}
}
@media(max-width:576px){
.payment-features-section .feature-box{
flex:0 0 50%;
}
}
/* Sec6 */
.payment-process-section .pest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, 52px);
  align-items: center;
  gap: 0px;
  position: relative;
   width: 900px;
    height: auto;
    justify-content: center;
    margin: auto;
}
.payment-process-section .left-hex {
      display: flex;
      align-items: center;
      height: 90px;
      position: relative;
}
.payment-process-section .left-hex-body {
      width: 100%;
      height: 90px;
      display: flex;
      align-items: center;
      padding: 0 48px 0 28px;
      clip-path: polygon(0 18px, 18px 0, calc(100% - 32px) 0, 100% 50%, 
        calc(100% - 32px) 100%, 18px 100%, 0 calc(100% - 18px));
      position: relative;
}
 
.payment-process-section .left-hex-text .lh-title {
    font-weight: 700;
    font-size: 24px;
    color: #c0405a;
    letter-spacing: 0.3px;
    display: block;
}
.payment-process-section .left-hex-text .lh-desc {
      font-size: 16px;
      color: #b06070;
      line-height: 1.5;
      display: block;
}
.payment-process-section .icon-box {
      width: 58px;
      height: 58px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      position: relative;
      z-index: 4;
      justify-self: center;
      box-shadow: 0 4px 18px rgba(0,0,0,0.22);
      transition: transform 0.2s;
}
.payment-process-section .icon-box:hover { 
    transform: scale(1.08);
}
.payment-process-section .right-hex {
      display: flex;
      align-items: center;
      height: 90px;
      position: relative;
}
 
.payment-process-section .right-hex-body {
      width: 100%;
      height: 90px;
      display: flex;
      align-items: center;
      padding: 0 28px 0 48px;
      clip-path: polygon(32px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 32px 100%, 0 50%);
}
 
.payment-process-section .right-hex-text .rh-title {
      font-weight: 700;
      font-size: 24px;
      color: #fff;
      display: block;
}
 
.payment-process-section .right-hex-text .rh-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
      display: block;
}
.l-row-1 { grid-column: 1; grid-row: 1 / 3; }
.l-row-2 { grid-column: 1; grid-row: 3 / 5; }
.l-row-3 { grid-column: 1; grid-row: 5 / 7; }
.r-row-1 { grid-column: 2; grid-row: 2 / 4; }
.r-row-2 { grid-column: 2; grid-row: 4 / 6; }
.r-row-3 { grid-column: 2; grid-row: 6 / 8; }
.pest-grid {
      grid-template-rows: repeat(8, 46px);
}
.l-row-1 .left-hex-body { background: #f5c5ce; }
.l-row-2 .left-hex-body { background: #edb8c8; }
.l-row-3 .left-hex-body { background: #ddb0cc; }
.l-row-2 .lh-title { color: #b03060; }
.l-row-3 .lh-title { color: #8040a0; }
.l-row-2 .lh-desc  { color: #a06080; }
.l-row-3 .lh-desc  { color: #9060a0; }
.ic-1 .icon-box { background: linear-gradient(135deg, #d04060, #a02060); }
.ic-2 .icon-box { background: linear-gradient(135deg, #9040a0, #6030c0); }
.ic-3 .icon-box { background: linear-gradient(135deg, #6050b8, #4040a0); }
.r-row-1 .right-hex-body { background: linear-gradient(135deg, #8878c8, #6060b8); }
.r-row-2 .right-hex-body { background: linear-gradient(135deg, #7070c0, #5050b0); }
.r-row-3 .right-hex-body { background: linear-gradient(135deg, #4868b8, #3055a8); }
/* E-inventory Sec2 */
.hiring-section {
      padding: 60px 20px 70px;
      background: #fff;
}
.circles-row-wrapper {
      position: relative;
}
.connector-line {
      position: absolute;
      top: 72px; /* vertically centered on circles */
      left: calc(6.25% + 36px);
      right: calc(6.25% + 36px);
      height: 3px;
      background: #1a3a8c;
      z-index: 0;
}
.circle-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1;
} 
.circle-outer {
      width: 144px;
      height: 144px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #1a3a8c;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 6px 24px rgba(26,58,140,0.13);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
} 
.circle-outer:hover {
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 14px 36px rgba(26,58,140,0.22);
} 
.circle-inner {
      width: 108px;
      height: 108px;
      border-radius: 50%;
      background: #1a3a8c;
      display: flex;
      align-items: center;
      justify-content: center;
} 
.circle-inner svg {
      width: 44px;
      height: 44px;
      fill: none;
      stroke: #fff;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
}
.circle-tag {
    margin-top: -2px;
    background: #1a3a8c;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px 6px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    line-height: 1.4;
    text-align: center;
    min-width: 90px;
} 
.circle-label {
      margin-top: 14px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #1a2c5b;
      text-align: center;
      line-height: 1.3;
      min-height: 2.4em;
} 
.circle-desc {
    margin-top: 8px;
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.5;
    max-width: 120px;
    font-weight: 500;
}
.circle-card.up   { 
    padding-top: 0;   
    padding-bottom: 0; 
}
.circle-card.down { 
    padding-top: 0;   
    padding-bottom: 0; 
}
.circles-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
} 
.circle-card.up   { 
    margin-top: 0; 
}
.circle-card.down { 
    margin-top: 60px; 
}
@media (max-width: 991px) {
.circles-row {
        flex-wrap: wrap;
        gap: 28px;
        justify-content: center;
}
.connector-line { 
    display: none; 
}
.circle-card.down { 
    margin-top: 0; 
}
}
/* Sec3 */
.inventory-bento-premium{
padding:50px 0;
background:#000;
position:relative;
overflow:hidden;
color:#fff;
}
.inventory-bento-premium::before{
content:"";
position:absolute;
width:700px;
height:700px;
background:radial-gradient(circle,#4f46e5,transparent 70%);
top:-200px;
left:-200px;
opacity:.25;
}
.inventory-bento-premium::after{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#4f46e5,transparent 70%);
bottom:-200px;
right:-200px;
opacity:.25;
}
.inventory-bento-premium .bento-subtitle{
color:#bfc7d5;
margin-top:10px;
}
.inventory-bento-premium .premium-bento-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
grid-auto-rows:170px;
gap:28px;
position:relative;
z-index:2;
}
.inventory-bento-premium .premium-card{
background:linear-gradient(145deg,#151a2b,#0f1320);
border-radius:22px;
padding:28px;
box-shadow:
0 20px 50px rgba(0,0,0,0.6),
inset 0 1px 0 rgba(255,255,255,0.05);
transition:all .4s ease;
position:relative;
overflow:hidden;
display:flex;
flex-direction:column;
justify-content:center;
}
.inventory-bento-premium .premium-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,rgba(79,70,229,0.3),transparent);
    top: -60px;
    right: -60px;
    border-radius: 120px;
}
.inventory-bento-premium .premium-card:hover{
transform:translateY(-12px) scale(1.02);
box-shadow:
0 30px 70px rgba(0,0,0,0.7),
0 0 30px rgba(79,70,229,0.4);
}
.inventory-bento-premium .card-large{
grid-column:span 2;
grid-row:span 2;
background:linear-gradient(145deg, #151a2b, #0f1320);
}
.inventory-bento-premium .card-tall{
grid-row:span 2;
background:linear-gradient(145deg, #151a2b, #0f1320);
}
.inventory-bento-premium .premium-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.5;
}
.inventory-bento-premium .premium-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.5;
}
.inventory-bento-premium .premium-card p{
font-size:16px;
line-height:1.6;
color:#fff;
margin:0;
text-align: justify;
}
@media(max-width:992px){
.inventory-bento-premium .premium-bento-grid{
grid-template-columns:repeat(2,1fr);
}
.inventory-bento-premium .card-large{
grid-column:span 2;
}
}
@media(max-width:576px){
.inventory-bento-premium .premium-bento-grid{
grid-template-columns:1fr;
}
.inventory-bento-premium .card-large{
grid-column:span 1;
}
}
/* Sec4 */
.separate-online .card-wrap {
      flex-direction: column;
      display: flex;
} 
.separate-online .card-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #222;
      text-align: center;
      margin-bottom: 38px;
}
.separate-online .body-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 150px;
}
.separate-online .labels-left {
    display: flex;
    flex-direction: column;
    gap: 90px;
    width: 300px;
    flex-shrink: 0;
    margin-bottom: 0px;
}
.separate-online .labels-right {
    width: 300px;
    margin-top: 60px;
    flex-shrink: 0;
} 
.separate-online .lbl-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}
.separate-online .lbl-desc {
      font-size: 16px;
      color: #000;
      line-height: 1.7;
      font-weight: 500;
} 
.separate-online .labels-left .lbl-item { 
    text-align: right; 
}
.separate-online .labels-right .lbl-item { 
    text-align: left; 
}
.separate-online .hex-cluster {
      position: relative;
      width: 245px;
      height: 350px;
      flex-shrink: 0;
} 
.separate-online .hex {
    width: 200px;
    height: 180px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease;
}
.separate-online .hex:hover { 
    transform: scale(1.04);
}
.separate-online .hex-1 { 
    background: #f5adb0; 
    top: 0;   
    left: 0;     
    z-index: 1; 
}
.separate-online .hex-2 {
    background: #c1304d;
    top: 90px;
    left: 150px;
    z-index: 2;
}
.separate-online .hex-3 {
    background: #e0737f;
    top: 180px;
    left: 0px;
    z-index: 3;
} 
.separate-online .hex svg {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: rgba(255,255,255,0.92);
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
}
/* Sec5 */
.e-inventory .zigzag-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
align-items:center;
gap:40px;
}
/* Sec6 */
.e-benefits .steps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin: 0 auto;
}
.e-benefits .step-card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 6px 28px rgba(0,0,0,0.13);
      display: flex;
      align-items: stretch;
      position: relative;
      min-height: 130px;
      overflow: visible;
}
.e-benefits .step-left {
      width: 90px;
      flex-shrink: 0;
      border-radius: 14px 0 0 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
}
.e-benefits .step-left::after {
      content: '';
      position: absolute;
      right: -22px;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 80px;
      border-radius: 50%;
      z-index: 3;
}
.e-benefits .step-label {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    writing-mode: horizontal-tb;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 4;
}
.e-benefits .step-right-tab {
      width: 90px;
      flex-shrink: 0;
      border-radius: 0 14px 14px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
}
.e-benefits .step-right-tab::before {
      content: '';
      position: absolute;
      left: -22px;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 80px;
      border-radius: 50%;
      z-index: 3;
}
.e-benefits .step-content {
      flex: 1;
      padding: 18px 16px 16px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
}
.e-benefits .step-content.right-pad {
      padding: 18px 20px 16px 16px;
} 
.e-benefits .step-headline {
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 7px;
      display: flex;
      align-items: center;
      gap: 8px;
}
.e-benefits .step-body {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
}
.e-benefits .theme-red .step-left        { background: linear-gradient(135deg, #e53935, #b71c1c); }
.e-benefits .theme-red .step-headline    { color: #e53935; }
.e-benefits .theme-orange .step-right-tab        { background: linear-gradient(135deg, #fb8c00, #e65100); }
.e-benefits .theme-orange .step-headline         { color: #fb8c00; }
.e-benefits .theme-green .step-left        { background: linear-gradient(135deg, #43a047, #1b5e20); }
.e-benefits .theme-green .step-headline    { color: #43a047; }
.e-benefits .theme-purple .step-right-tab        { background: linear-gradient(135deg, #8e24aa, #4a148c); }
.e-benefits .theme-purple .step-headline         { color: #8e24aa; }
.e-benefits .theme-magenta .step-left        { background: linear-gradient(135deg, #e91e8c, #880e4f); }
.e-benefits .theme-magenta .step-headline    { color: #e91e8c; }
.e-benefits .theme-cyan .step-right-tab        { background: linear-gradient(135deg, #00acc1, #006064); }
.e-benefits .theme-cyan .step-headline         { color: #00acc1; }
.e-benefits .left-tab-card {
      border-left: none;
}
.e-benefits .right-tab-card {
      border-right: none;
}
.e-benefits .step-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      box-shadow: inset 0 2px 6px rgba(255,255,255,0.6), inset 0 -2px 6px rgba(0,0,0,0.06);
      pointer-events: none;
      z-index: 10;
}
.e-benefits .divider-line {
      height: 1px;
      background: #eee;
      margin: 8px 0;
} 
@media (max-width: 640px) {
    .steps-grid { 
        grid-template-columns: 1fr; 
    }
}
/* Sec7 */
.why-inventory .cta-sec6{
    background:#0b59db;
    border-radius:40px;
    position:relative;
    overflow:hidden;
    opacity: 1;
}
.why-inventory .cta-area6 {
    padding: 80px 30px;
    position: relative;
    z-index: 2;
}
.why-inventory .cta6-shape {
    position: absolute;
    top: 0;
    right: 5%;
    height: auto;
    width: auto;
    z-index: 3;
}
.why-inventory .cta6-shape img{
    height:100%;
    width:100%;
    object-fit:cover;
}
.why-inventory .inventory-mockup{
    position:absolute;
    right:0;
    top:0;
    width:55%;
    height:100%;
}
.why-inventory .inventory-mockup img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.why-inventory .discount-text{
    display:block;
    font-size:20px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:12px;
    opacity:.9;
}
.why-inventory .cta-area6 p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
    width: 90%;
}
.why-inventory .th-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    background:#0c1524;
    color:#fff;
    text-decoration:none;
    font-weight:500;
    border-radius:40px;
    transition:.3s;
}
.why-inventory .th-btn i{
    font-size:14px;
}
.why-inventory .th-btn:hover{
    background:#000;
}
/* E-Seo Sec2 */
.e-seo .wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width:640px;
margin:auto;
}
.e-seo .canvas { 
position: absolute; 
top: 0; 
left: 0; 
pointer-events: none;
width: 800px; 
height: auto;
}
.e-seo .info {
     position: absolute;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    width: 160px;
    font-weight: 500;
}
.e-seo .ico {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.e-seo .ico svg { 
    width: 100%; 
    height: 100%; 
}
.e-seo .vector-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    white-space: nowrap;
}
.e-seo .info1 {
    top: 305px;
    left: 55px;
    text-align: right;
}
.e-seo .info2 {
    top: 380px;
    left: 240px;
    text-align: center;
}
.e-seo .info3 {
    top: 300px;
    left: 370px;
    text-align: center;
}
.e-seo .info4 {
    top: 200px;
    right: 105px;
}
.e-seo .info5 {
    top: 85px;
    right: 230px;
}
.e-seo .info6 {
    top: 190px;
    right: 360px;
}
/* Sec3 */
.seo-bento{
background:#01274c;
padding:50px 0;
}
.seo-bento .bento-card{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
height:100%;
transition:all .35s ease;
}
.seo-bento .bento-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 45px rgba(0,0,0,0.12);
}
.seo-bento .bento-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}
.seo-bento  .bento-card p{
font-size:16px;
line-height:1.7;
color:#000;
text-align: justify;
margin-bottom: 0;
}
.seo-bento .bento-card.large{
padding:45px;
}
.seo-bento .bento-card.wide{
padding:40px;
}
.seo-bento .bento-card.highlight {
    background: #fff;
    color: #000;
}
.seo-bento .bento-card.highlight p{
color:#000;
}
.seo-bento .gradient-card{
background:linear-gradient(135deg,#f8f9ff,#eef2ff);
}
.seo-bento .seo-list{
margin:0;
padding-left:18px;
}
.seo-bento .seo-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
/* Sec5 */
.why-mist-glass{
background-image:url("../img/e-seo3.jpg"); /* your background */
background-size:cover;
background-position:center;
background-repeat:no-repeat;
position:relative;
padding:50px 0;
width:100%;
}
.why-mist-glass::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}
.why-mist-glass .glass-box{
position:relative;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
border-radius:20px;
padding:50px 60px;
border:1px solid rgba(255,255,255,0.3);
box-shadow:0 20px 50px rgba(0,0,0,0.25);
color:#fff;
}
.why-mist-glass .glass-box h2{
font-size:36px;
font-weight:700;
margin-bottom:20px;
color:#fff;
}
.why-mist-glass .glass-box p{
font-size:16px;
line-height:1.8;
color:#f1f1f1;
margin-bottom:15px;
}
/* E-Support Sec2 */
.zigzag-process .process-wrapper{
max-width:600px;
margin:auto;
}
.zigzag-process .setter {
    width: 60%;
    height: auto;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}
.zigzag-process .step{
display:flex;
align-items:center;
width:420px;
border-radius:50px;
padding:10px 18px;
margin:14px 0;
color:#fff;
box-shadow:0 8px 18px rgba(0,0,0,0.08);
}
.zigzag-process .step.left{
margin-right:auto;
}
.zigzag-process .step.right{
margin-left:auto;
}
.zigzag-process .content{
font-size:16px;
line-height:1.5;
font-weight: 500;
padding: 0 10px;
text-align: center;
}
.zigzag-process .content p{
    margin-bottom: 0;
}
.zigzag-process .num {
    width: 46px;
    height: 46px;
    background: #fff;
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.zigzag-process .yellow{background:linear-gradient(90deg,#ffc400,#f39c12);}
.zigzag-process .red{background:linear-gradient(90deg,#ff5252,#d81b60);}
.zigzag-process .purple{background:linear-gradient(90deg,#c2185b,#8e24aa);}
.zigzag-process .blue{background:linear-gradient(90deg,#2f80ed,#1565c0);}
.zigzag-process .cyan{background:linear-gradient(90deg,#26c6da,#00838f);}
.zigzag-process .green{background:linear-gradient(90deg,#2ecc71,#16a085);}
@media(max-width:768px){
.zigzag-process .step{
width:100%;
margin-left:0!important;
margin-right:0!important;
}
}
/* Sec3 */
.maintenance-section {
padding:50px 0;
background-image: url(../img/e-support2.jpg);
background-size: cover;         
background-position: center;    
background-repeat: no-repeat; 
background-attachment: fixed;
width:100%;
position:relative;
}
.maintenance-section .maintenance-text{
font-size:16px;
color:#666;
margin-bottom:20px;
line-height:1.7;
}
.maintenance-section .maintenance-note{
font-weight:500;
color:#444;
}
.maintenance-section .service-item {
    background: #f8f9ff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    transition: 0.3s;
    border: 1px solid #eef0ff;
}
.maintenance-section .service-item:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
background:#ffffff;
}
/* Sec4 */
.ecom-support-section .support-card{
position:relative;
margin-top:60px;
text-align:center;
}
.ecom-support-section .pill-bg{
width:200px;
height:60px;
background:linear-gradient(135deg,#7b8cff,#4f5bd5);
border-radius:50px;
transform:rotate(-30deg);
margin:auto;
}
.ecom-support-section .support-img {
    width: 100px;
    height: auto;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.ecom-support-section .support-role {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 46px;
}
/* Sec5 */
.software-support-section {
    background: #f5f5f5;
    padding: 50px 0;
}
.software-support-section .section-small{
font-size:12px;
letter-spacing:2px;
color:#6c757d;
font-weight:600;
margin-bottom:10px;
}
.software-support-section .section-title{
font-size:36px;
font-weight:700;
margin-bottom:15px;
}
.software-support-section .section-desc{
color:#666;
max-width:450px;
}
.software-support-section .graphic-box{
position:relative;
width:100%;
height:320px;
display:flex;
justify-content:flex-end;
align-items:flex-start;
}
.software-support-section .graphic-img {
    position: relative;
    width: 90%;
    height: 420px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 2;
    object-fit: cover;
}
.software-support-section .shape1 {
    position: absolute;
    right: -60px;
    top: 10px;
    width: 100%;
    height: 100%;
    background: #2f6dfc;
    transform: skew(-20deg);
    border-radius: 10px;
    z-index: 1;
}
.software-support-section .shape2 {
    position: absolute;
    right: -60px;
    top: 90px;
    width: 100%;
    height: 100%;
    background: #6ea2ff;
    transform: skew(-20deg);
    border-radius: 10px;
    z-index: 9;
    opacity: 0.5;
}
.software-support-section .feature-box{
background:#fff;
padding:30px 25px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}
.software-support-section .feature-box:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}
.software-support-section .feature-icon{
font-size:28px;
margin-bottom:12px;
}
.software-support-section .feature-box p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
    text-align: justify;
}
.software-support-section .hero-title{
    color: #000;
}
@media (max-width:991px){
.software-support-section .graphic-box{
justify-content:center;
margin-top:30px;
}
.software-support-section .graphic-img{
width:70%;
}
}
/* Sec6 */ 
.cyber-section .hero-title {
    color: #000;
}   
.cyber-section  .service-card {
text-align: left;
background:url("../images/cardbg2.jpg");
border-radius:14px;
padding:10px;
color:#fff;
position:relative;
overflow:hidden;
width: 100%;
height: auto;
display:flex;
flex-direction:column;
justify-content:center;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
} 
.cyber-section .circle-img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 15px;
    background: #e9ecef;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cyber-section .service-card.active .circle-img-wrap {
      border: 4px solid #1a56f0;
      box-shadow: 0 0 0 3px rgba(26, 86, 240, 0.15);
}
.cyber-section .circle-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
}
.cyber-section .circle-img-wrap .img-placeholder {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(135deg, #dde3ec 0%, #c8d0dc 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8a96a8;
      font-size: 0.75rem;
      font-weight: 600;
      text-align: center;
      padding: 10px;
      letter-spacing: 0.03em;
}
.cyber-section .service-card.active .circle-img-wrap .img-placeholder {
      background: linear-gradient(135deg, #dbe6ff 0%, #bcd0ff 100%);
      color: #1a56f0;
    }
.cyber-section .service-card .card-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.cyber-section .service-card .card-desc {
      font-size: 0.875rem;
      color: #6b7280;
      line-height: 1.6;
      font-weight: 400;
}
 @media (max-width: 768px) {
.cyber-section .section-title {
        font-size: 1.8rem;
      }
.cyber-section .circle-img-wrap {
        width: 150px;
        height: 150px;
}
.cyber-section .service-card {
        text-align: center;
        margin-bottom: 30px;
}
}
/* Sec7 */
.collab-section .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 24px;
} 
.collab-section .section-heading {
      font-size: 2.4rem;
      font-weight: 800;
      color: #4f46e5;
      letter-spacing: -0.5px;
      line-height: 1.1;
} 
.collab-section  .partnership-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: #7c7c99;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-align: right;
      margin-top: 6px;
}
.collab-section .collab-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
}
.collab-section  .collab-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
}
.collab-section .card-image-full {
      height: 260px;
      position: relative;
} 
.collab-section .card-image-full .img-slot {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: #c8c8d8;
}
.collab-section .card-text {
      padding: 28px 28px 28px 32px;
      border-left: 5px solid #4f46e5;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: center;
}
.collab-section .card-text .card-label {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 14px;
}
.collab-section .card-text .card-body-text {
      font-size: 0.78rem;
      color: #5a5a72;
      line-height: 1.75;
      font-weight: 400;
}
.collab-section .card-bottom-left {
    background: #fff;
    border-radius: 10px;
    padding: 24px 26px;
    border-left: 5px solid #4f46e5;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
} 
.collab-section  .card-bottom-left .card-label {
      font-size: 1rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 12px;
} 
.collab-section .card-bottom-left .card-body-text {
      font-size: 0.76rem;
      color: #5a5a72;
      line-height: 1.75;
} 
.collab-section .card-bottom-right {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
} 
.collab-section .card-bottom-right .img-slot {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #c8c8d8;
}
@media (max-width: 768px) {
.collab-section { padding: 24px 20px 32px; }
.collab-section .collab-grid { grid-template-columns: 1fr; }
.collab-section .section-heading { font-size: 1.8rem; }
.card-image-full { height: 200px; }
}
/* Web-Redesign Sec1 */
.researchers-section .researcher-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 10px;
      margin-top: 20px;
}
.researchers-section .hex-wrap {
      position: relative;
      width: 200px;
      height: 220px;
      margin: 0 auto 24px;
}
.researchers-section .hex-shape{
width:200px;
height:220px;
clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
background:#e8f0fe;
overflow:hidden;
position:relative;
z-index:2;
}
.researchers-section .hex-shape img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}
.researchers-section .hex-bg {
    position: absolute;
    width: 200px;
    height: 220px;
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    background: #1a56f0;
    top: -5px;
    left: 20px;
    z-index: 0;
}
.researchers-section .hex-accent {
      position: absolute;
      width: 52px;
      height: 58px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: #1a56f0;
      bottom: -4px;
      left: -10px;
      z-index: 2;
}
.researchers-section .hex-accent::after {
      content: '';
      position: absolute;
      width: 28px;
      height: 32px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: #fff;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
}
.researchers-section .researcher-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: #0d1b2a;
      margin-bottom: 4px;
}
.researchers-section .researcher-role {
      font-size: 0.78rem;
      font-weight: 500;
      color: #1a56f0;
      margin-bottom: 12px;
}
.researchers-section .researcher-desc {
      font-size: 16px;
      color: #000;
      line-height: 1.7;
      margin: 0 auto;
}
.researchers-section .col-divider {
      border-right: 1px solid #e5e8ef;
}
@media (max-width: 768px) {
.researchers-section .col-divider { border-right: none; }
.researchers-section .researcher-card { margin-bottom: 40px; }
}
/* Sec3 */
.web-bento-section{
background:linear-gradient(135deg, #01274c 0%, #0170a3 50%, #028fcd 100%);
padding: 50px 0;
}
.web-bento-section .bento-card{
background:#ffffff;
border-radius:14px;
padding:35px 30px;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:all .3s ease;
}
.web-bento-section .bento-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}
.web-bento-section .bento-card h4 {
    font-size: 20px;
    font-weight: 700;
}
.web-bento-section .bento-card p{
font-size:16px;
color:#000;
font-weight: 500;
line-height:1.7;
}
.web-bento-section .bento-icon{
width:70px;
height:70px;
margin:0 auto 20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#0170a3,#028fcd);
color:#fff;
font-size:28px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
.web-bento-section .bento-icon img {
    width: 50px;
    height: 50px;
}
.web-bento-section .bento-card{
text-align:center;
}
.web-bento-section .bento-large{
min-height:240px;
}
.web-bento-section .bento-wide{
min-height:180px;
}
@media (max-width:991px){
.web-bento-section .bento-large,
.web-bento-section .bento-wide{
min-height:auto;
}
}
/* Sec4 */
.timeline-work{
  position: relative;
  padding: 30px 0px;
}
.timeline-work .sec-title h2{
  line-height: 30px;
  margin-bottom: 30px;
}
.timeline-work .inner-content .single-item{
  position: relative;
  float: left;
  width: 20%;
  text-align: center;
}
.timeline-work .inner-content .single-item:first-child,
.timeline-work .inner-content .single-item:nth-child(3),
.timeline-work .inner-content .single-item:last-child{
  padding-top: 51px;
}
.timeline-work .inner-content .single-item .year{
  position: relative;
  display: inline-block;
  width: 180px;
  height: 180px;
  line-height: 100px;
  background: #fff;
  border-radius: 50%;
  border: 43px solid #0071dc;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-top: 115px;
  box-shadow: inset 0 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 1500ms ease;
}
.timeline-work .inner-content .single-item:hover .year{
  transform: rotate(360deg);
}
.timeline-work .inner-content .single-item:nth-child(2) .year,
.timeline-work .inner-content .single-item:nth-child(4) .year{
  margin-bottom: 56px;
  margin-top: 62px !important;
}
.timeline-work .inner-content .single-item:nth-child(2) .year{
  border-color: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(4) .year{
  border-color: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(3) .year{
  border-color: #0071dc;
}
.timeline-work .inner-content .single-item:last-child .year{
  border-color: #0071dc;
}
.timeline-work .inner-content .single-item .year:before{
  position: absolute;
  content: '';
  background: #0071dc;
  width: 50px;
  height: 50px;
  left: 50%;
  margin-left: -25px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}
.timeline-work .inner-content .single-item:first-child .year:before,
.timeline-work .inner-content .single-item:nth-child(3) .year:before,
.timeline-work .inner-content .single-item:last-child .year:before{
  bottom: -70px;
  transform: rotate(180deg);
}
.timeline-work .inner-content .single-item:nth-child(3) .year:before{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:last-child .year:before{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(4) .year:before{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(2) .year:before,
.timeline-work .inner-content .single-item:nth-child(4) .year:before{
  top: -70px;
}
.timeline-work .inner-content .single-item:nth-child(2) .year:before{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:first-child:after,
.timeline-work .inner-content .single-item:nth-child(3):after, 
.timeline-work .inner-content .single-item:last-child:after{
  top: 177px;
}
.timeline-work .inner-content .single-item .text {
    position: relative;
    font-size: 16px;
    line-height:1.7;
    margin-top: 74px;
    font-weight: 500;
    color: #000;
}
.timeline-work .inner-content .single-item:nth-child(2) .text,
.timeline-work .inner-content .single-item:nth-child(4) .text{
margin-top: 165px;
}
.timeline-work .inner-content .single-item .month{
  position: relative;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  color: #0071dc;
}
.timeline-work .inner-content .single-item .month:before{
  position: absolute;
  content: '';
  background: #d0d2db;
  width: 1px;
  height: 55px;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-work .inner-content .single-item:first-child .month:before,
.timeline-work .inner-content .single-item:nth-child(3) .month:before,
.timeline-work .inner-content .single-item:last-child .month:before{
  
  bottom: -86px;
}
.timeline-work .inner-content .single-item:nth-child(2) .month:before,
.timeline-work .inner-content .single-item:nth-child(4) .month:before{
  top: -94px;
}
.timeline-work .inner-content .single-item .month:after{
  position: absolute;
  content: '';
  background: #0071dc;
  width: 20px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.timeline-work .inner-content .single-item:first-child .month:after,
.timeline-work .inner-content .single-item:nth-child(3) .month:after,
.timeline-work .inner-content .single-item:last-child .month:after{
  bottom: -30px;
}
.timeline-work .inner-content .single-item:nth-child(2) .month:after,
.timeline-work .inner-content .single-item:nth-child(4) .month:after{
  top: -40px;
}
.timeline-work .inner-content .single-item:nth-child(2) .month:after{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(4) .month:after{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(3) .month:after{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:last-child .month:after{
  background: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(2) .month,
.timeline-work .inner-content .single-item:nth-child(4) .month{
  margin-top: 70px;
 /* padding-bottom: 52px;*/
}
.timeline-work .inner-content .single-item:nth-child(2) .month{
  color: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(4) .month{
  color: #0071dc;
}
.timeline-work .inner-content .single-item:nth-child(3) .month{
  color: #0071dc;
}
.timeline-work .inner-content .single-item:last-child .month{
  color: #0071dc;
}
.timeline-work .inner-content .single-item:after{
  position: absolute;
  content: '';
  background: url(../images/pattern-30.png);
  width: 238px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
}
.timeline-work .inner-content .single-item:nth-child(2):after,
.timeline-work .inner-content .single-item:nth-child(4):after{
  background: url(../images/pattern-30.png);
  transform: rotate(181deg) translateX(49%) translateY(10px);
  height: 66px;
  background-repeat: no-repeat;
}
.timeline-work .inner-content .single-item:nth-child(2):after{
  bottom: 129px;
}
.timeline-work .inner-content .single-item:nth-child(4):after{
  bottom: 126px;
}
.mar-0-a{
    margin: 0 auto;
}
.year img {
    width: 50px;
    height: 50px;
}
.paragraph4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
/* Sec5 */
.web-research-section{
background:#0d6efd;
padding:50px 0 40px;
}
.web-research-section .research-top{
margin-bottom:30px;
}
.web-research-section .research-img {
    border-radius: 20px;
    height: 400px;
    object-fit: cover;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.web-research-section .research-bottom{
background:#fff;
border-radius:20px;
padding:30px;
margin-top:-60px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.web-research-section .small-text{
color:#888;
font-size:14px;
margin-bottom:10px;
}
.web-research-section .research-title{
font-weight:700;
color:#1e3a5f;
font-size:26px;
}
.web-research-section .circle-box{
padding:10px;
}
.web-research-section .circle{
width:70px;
height:70px;
border-radius:50%;
border:6px solid #0d6efd;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
font-weight:700;
color:#0d6efd;
background:#fff;
}
.web-research-section .circle-text{
font-size:13px;
margin-top:10px;
color:#666;
}
/* Sec6 */
.web-redesign-faq {
    background: #01274c;
    padding: 50px 0;
}
.web-faq-img img{
width:100%;
border-radius:20px;
margin-top:20px;
}
.faq-contact-box{
background:#e9ecf2;
padding:30px;
border-radius:20px;
margin-top:40px;
}
.faq-contact-box h4{
font-weight:600;
margin-bottom:20px;
}
.faq-contact-box input,
.faq-contact-box textarea{
width:100%;
border:none;
padding:15px;
border-radius:12px;
margin-bottom:15px;
}
.faq-contact-box button{
background:#2563eb;
border:none;
padding:14px;
width:100%;
color:#fff;
border-radius:12px;
font-weight:500;
}
@media (max-width:991px){
.web-redesign-faq .sec-title{
font-size:36px;
}
#faqAccordion .accordion-button{
font-size:16px;
padding:16px 22px;
}
}
/* Seo last */
.aeo-faq {
    position: relative;
    overflow: hidden;
    background-image: url(../img/aeofaq.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
/* Aeo Main Sec2 */
:root {
  --dark-teal:#028fcd;
  --card-bg: #fff;
}
.aeo-sec2 .bg-dark-teal { 
    background-color: var(--dark-teal); 
    border-radius: 20px;
     padding: 40px; 
}
.aeo-sec2 .custom-card {
  background: var(--card-bg);
  padding: 30px;
  position: relative;
  min-height: 300px;
}
.aeo-sec2 .custom-card h4 {
    font-size: 26px;
    color: #028fcd;
    font-weight: 600;
}
.aeo-sec2 .card-left {
  border-radius: 30px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 65% 100%, 60% 85%, 40% 85%, 35% 100%, 0% 100%);
}
.aeo-sec2 .card-right {
  border-radius: 30px;
  clip-path: polygon(0% 0%, 75% 0%, 80% 15%, 100% 15%, 100% 100%, 65% 100%, 60% 85%, 40% 85%, 35% 100%, 0% 100%);
}
.aeo-sec2 .label-tag {
  background: #ccc;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.aeo-sec2 .btn-next {
  background: #e0f2f2;
  border: none;
  padding: 8px 40px;
  border-radius: 20px;
  font-weight: bold;
  color: var(--dark-teal);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.aeo-sec2 .footer-link {
  color: #065a5a;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-top: 20px;
}
.aeo-sec2 .card-img-top {
  width: 70px;
  height: 70px;
  padding: 12px;
  background: #e6f7fb;
  border-radius: 50%;
}
.aeo-sec2 .card-img-top {
  transform: translateY(-10px);
}
/* Sec3 */
.aeo-sec3 {
    position: relative;
    width: 100%;
    padding-top: 40px;
    display: flex;
    justify-content: center;
}
.aeo-sec3 .info-section {
    width: 100%;
    max-width: 1000px;   
    height: 800px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
.aeo-sec3 .container {
    position: relative;
}
.aeo-sec3 .left-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 310px;
    height: 100%;
    z-index: 2;
}
.aeo-sec3 .triangle-gray {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 360px solid transparent;
  border-bottom: 360px solid transparent;
  border-left: 400px solid #d4d8e0; /* 🔥 increased width */
}
.aeo-sec3 .triangle-blue {
  position: absolute;
  top: 50%;
  left: 110px; /* 🔥 push forward to match new size */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 360px solid transparent;
  border-bottom: 360px solid transparent;
  border-left: 320px solid #1a4db8; /* 🔥 increased width */
}
.aeo-sec3 .left-text {
    position: absolute;
    bottom: 35%;
    left: 14px;
    z-index: 10;
}
.aeo-sec3 .main-title {
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
}
.aeo-sec3 .sub-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 5px 0 10px;
}
.aeo-sec3 .body-text {
    font-size: 11px;
    color: #777;
    line-height: 1.6;
}
.aeo-sec3 .steps-area {
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    width: 600px;
    height: 100%;
}
.aeo-sec3 .step-card {
    position: absolute;
    width: 600px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 4px 6px 22px rgba(0,0,0,0.14);
    padding: 20px;
}
.aeo-sec3 .step-badge {
    position: absolute;
    width: 72px;
    height: 72px;
    top: -24px;
    right: -24px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.aeo-sec3 .step-badge-content {
    transform: rotate(-45deg);
    text-align: center;
}
.aeo-sec3 .badge-step-label {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}
.aeo-sec3 .badge-step-num {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}
.aeo-sec3 .card-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.aeo-sec3 .card-body-txt {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 0;
}
.aeo-sec3 .b1 { background: linear-gradient(145deg, #f6c800, #e09000); }
.aeo-sec3 .b2 { background: linear-gradient(145deg, #e84020, #b81800); }
.aeo-sec3 .b3 { background: linear-gradient(145deg, #00c5de, #008fa8); }
.aeo-sec3 .b4 { background: linear-gradient(145deg, #1e54cc, #0c2e90); }
.aeo-sec3 .h1 { color: #c89000; }
.aeo-sec3 .h2 { color: #cc2010; }
.aeo-sec3 .h3 { color: #008fa8; }
.aeo-sec3 .h4 { color: #1e54cc; }
.aeo-sec3 .c1 {
    top: 0px;
    left: 0px;
}
.aeo-sec3 .c2 {
    top: 195px;
    left: 120px;
}
.aeo-sec3 .c3 {
    top: 385px;
    left: 230px;
}
.aeo-sec3 .c4 {
    top: 600px;
    left: 0px;
}
.aeo-sec3 .left-diamond-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e54cc, #0c2e90);
    transform: rotate(45deg);
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}
.aeo-sec3 .left-diamond-icon-inner {
    position: absolute;
    inset: 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.aeo-sec3 .ldi-label {
    font-size: 8px;
    color: rgba(255,255,255,0.8);
}
.aeo-sec3 .ldi-num {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}
@media (max-width: 992px) {
.aeo-sec3 .info-section {
        height: auto;
        padding: 40px 20px;
}
.aeo-sec3 .left-area {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
}
.aeo-sec3 .steps-area {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
}
.aeo-sec3 .step-card {
        position: relative;
        margin: 20px auto;
        left: auto !important;
        top: auto !important;
}
}
/* Sec4 */
.aeo-sec4 .circle-card {
  position: relative;
  width: 230px;
  height: 230px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aeo-sec4 .circle-inner {
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}
.aeo-sec4 .circle-inner p {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
    font-weight: 500;
}
.aeo-sec4 .circle-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
}
.aeo-sec4 .circle-card.green::before {
  background: conic-gradient(
    #01274c 0deg 300deg,
    transparent 300deg 360deg
  );
}
.circle-card.purple::before {
  background: conic-gradient(
   #0275a8 0deg 300deg,
    transparent 300deg 360deg
  );
}
.aeo-sec4 .circle-card.teal::before {
  background: conic-gradient(
    #014f7a 0deg 300deg,
    transparent 300deg 360deg
  );
}
.aeo-sec4 .circle-card.orange::before {
  background: conic-gradient(
    #028fcd 0deg 300deg,
    transparent 300deg 360deg
  );
}
.aeo-sec4 .circle-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: #f4f4f4;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 992px) {
.aeo-sec4 .circle-card {
    width: 200px;
    height: 200px;
}
.aeo-sec4 .circle-inner {
    width: 150px;
    height: 150px;
}
}
/* Sec5 */
.aeo-sec5 .why-tag {
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
color: #f14a45;
display: block;
margin-bottom: 8px;
}
.aeo-sec5 .why-title {
font-size: 38px;
font-weight: 700;
color: #ffffff;
margin-bottom: 8px;
}
.aeo-sec5 .why-title span {
color: #f14a45;
}
.aeo-sec5 .why-divider {
width: 70px;
height: 3px;
border-radius: 999px;
background: #f14a45;
margin: 10px auto 0;
}
.aeo-sec5 .why-image-wrap {
    width: 100%;
    margin: 0 auto;
}
.aeo-sec5 .why-image-wrap img {
    display: block;
    width: 100%;
    height: 680px;
    border-radius: 10px;
    object-fit: cover;
}
.aeo-sec5 .why-list {
max-width: 320px;
}
.aeo-sec5 .why-list-left {
margin-left: auto;
text-align: left;
}
.aeo-sec5 .why-list-right {
margin-right: auto;
text-align: left;
}
.aeo-sec5 .why-item {
margin-bottom: 35px;
}
.aeo-sec5 .why-icon img{
width: 50px;
height: 50px;
margin-bottom: 10px;
}
.aeo-sec5 .why-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.aeo-sec5 .why-text {
font-size: 16px;
line-height: 1.7;
color: #000;
font-weight: 500;
text-align: justify;
}
@media (max-width: 991.98px) {
.aeo-sec5 .why-list,
.aeo-sec5 .why-list-left,
.aeo-sec5 .why-list-right {
margin: 0 auto;
text-align: center;
}
.aeo-sec5 .why-item {
margin-bottom: 0px !important;
}
}
@media (max-width: 575.98px) {
.aeo-sec5 .why-title {
font-size: 30px;
}
}
/* Sec6 */
.wander-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wander-section .container {
    background: linear-gradient(90deg, #01274c 0%, #000 40%, #028fcd 100%); 
    padding: 50px;   
    border-radius: 30px;
}
.wander-section .carousel-3d-wrapper {
      position: relative;
      width: 100%;
      height: 450px;
      perspective: 1200px;
      display: flex;
      align-items: center;
      justify-content: center;
}
.wander-section .carousel-3d-track {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
}
.wander-section .c-card {
      position: absolute;
      width: 420px;
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
      cursor: pointer;
      top: 50%;
      left: 50%;
      transform-origin: center center;
} 
.wander-section .c-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      transition: filter 0.4s;
}
.wander-section .c-card:hover img { filter: brightness(1); }
.wander-section .c-card-label {
      background: #fff;
      padding: 14px 20px 16px;
      border-radius: 0 0 18px 18px;
}
.wander-section .c-card-label h3 {
      font-size: 16px;
      color: #000;
      font-weight: 500;
}
.wander-section .c-card[data-pos="center"] {
      transform: translate(-50%, -50%) translateZ(0) scale(1);
      z-index: 5;
      opacity: 1;
}
.wander-section .c-card[data-pos="left1"] {
      transform: translate(calc(-50% - 280px), -50%) translateZ(-120px) scale(0.82) rotateY(16deg);
      z-index: 3;
      opacity: 0.75;
}
.wander-section .c-card[data-pos="left2"] {
      transform: translate(calc(-50% - 430px), -50%) translateZ(-260px) scale(0.65) rotateY(24deg);
      z-index: 2;
      opacity: 0.45;
}
.wander-section .c-card[data-pos="right1"] {
      transform: translate(calc(-50% + 280px), -50%) translateZ(-120px) scale(0.82) rotateY(-16deg);
      z-index: 3;
      opacity: 0.75;
}
.wander-section .c-card[data-pos="right2"] {
      transform: translate(calc(-50% + 430px), -50%) translateZ(-260px) scale(0.65) rotateY(-24deg);
      z-index: 2;
      opacity: 0.45;
}
.wander-section .c-card[data-pos="hidden"] {
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, -50%) translateZ(-400px) scale(0.5);
      z-index: 0;
}
.wander-section .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
}
.wander-section .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #fff;
      opacity: 1;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
}
.wander-section .dot.active {
      background: #01274c;
      opacity: 1;
      transform: scale(1.3);
}
.wander-section .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s;
      font-size: 1.1rem;
}
.wander-section .carousel-arrow:hover { background: rgba(74,158,255,0.25); }
.wander-section .carousel-arrow.prev { left: -10px; }
.wander-section .carousel-arrow.next { right: -10px; }
.wander-section .img-italy    { background: linear-gradient(135deg,#1a3a5c 0%,#2d6a9f 50%,#3d8abd 100%); }
.wander-section .img-nepal    { background: linear-gradient(135deg,#1f3a1f 0%,#2d6a4f 50%,#3daa7d 100%); }
.wander-section .img-slovenia { background: linear-gradient(135deg,#2a1a3a 0%,#5a2d8f 50%,#7a3dbd 100%); }
.wander-section .img-japan    { background: linear-gradient(135deg,#3a1a1a 0%,#9f2d3d 50%,#c43d5a 100%); }
.wander-section .img-morocco  { background: linear-gradient(135deg,#3a2a1a 0%,#9f6b2d 50%,#c4943d 100%); }
/* Sec7 */
.aeo-sec7 .gallery-img-container img {
    display: block;
    object-fit: cover; 
}
@media (min-width: 992px) {
.aeo-sec7 .col-lg-4 .gallery-img-container:first-child {
        height: 350px;
}
.aeo-sec7 .col-lg-4 .gallery-img-container:last-child {
        height: 250px;
}
}
/* GEO Sec1 */
.business-template {
    min-height: 500px;
    background-color: #fff;
}

/* Base style for all shapes */
.bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Light Blue Diagonal (Top Left) */
.shape-light-blue {
    background-color: #a2c2d8;
    clip-path: polygon(0 0, 45% 0, 0 45%);
}

/* Solid Blue Vertical Strip */
.shape-dark-blue {
    background-color: #2b6cb0;
    clip-path: polygon(25% 0, 60% 0, 35% 100%, 0 100%);
}

.shape-gradient {
    /* 1. Add your center image here */
    background: linear-gradient(rgba(26, 54, 93, 0.5), rgba(26, 54, 93, 0.5)), 
                url('../images/cardbg2.jpg'); 
    
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    /* 2. This creates the diagonal 'cut' from the reference */
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%);
}


/* Positioning the center text box */
.center-text-box {
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 250px;
    z-index: 2;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .bg-shape { opacity: 0.2; } /* Fade shapes on mobile to keep text readable */
    .center-text-box { display: none; }
}
/* Blogs Details */
.vn-blog-container {
    background: #ffffff;
    border-radius: 20px;
}
.vn-blog-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}
.vn-blog-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 14px;
    height: 500px;
    object-fit: cover;
}
.vn-blog-date {
    font-size: 16px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 500;
    margin-left: 20px;
}
.vn-author-badge {
    display: inline-block;
    background: #01274c;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 500;
}
.vn-blog-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 14px;
    text-align: justify;
    font-weight: 500;
}
.vn-sidebar-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
}
.vn-related-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    width: 80%;
    height: auto;
}
.vn-related-image {
    position: relative;
}
.vn-related-image img {
    width: 100%;
    border-radius: 12px;
}
.vn-date-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #01274c;
    color: #fff;
    font-size: 17px;
    padding: 7px 10px;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    width: 60px;
    height: 60px;
}
.vn-related-author {
    background: #01274c;
    color: #ffffff;
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px 0 6px;
    font-weight: 500;
}
.vn-related-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
}
/* Contact Sec1 */
.info-card {
  background: #01274c;
  padding: 25px 30px;
  gap: 20px;
  height: 100%;
  transition: 0.3s;
  border-radius: 30px;
    clip-path: polygon(0% 8%, 10% 0%, 20% 8%, 30% 0%, 40% 8%, 50% 0%, 60% 8%, 70% 0%, 80% 8%, 90% 0%, 100% 8%, 100% 100%, 0% 100%);
}
.info-card:hover {
  transform: translateY(-5px);
}
.icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box img {
    width: 35px;
}
.info-text h5 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}
.info-text p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}
@media (max-width: 768px) {
  .info-card {
    padding: 20px;
  }
  .icon-box {
    width: 60px;
    height: 60px;
  }
}
/* Sec2 */
.enquiry-section{
        display:flex;
        align-items:center;
        justify-content:center;
}
.enquiry-box{
        background:#fff;
        border-radius:18px;
        overflow:hidden;
        box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.form-control {
    display: block;
    width: 100%;
    padding: 15px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.5;
    color: #000 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.left-image{
        background:url('../img/contact.png') center center/cover no-repeat;
        min-height:100%;
}
.form-side {
    padding: 40px !important;
}
.form-title{
        font-size:30px;
        font-weight:700;
        margin-bottom:25px;
}
.form-label {
    margin-bottom: .5rem;
    font-size: 16px;
    font-weight: 600;
}
.btn-submit{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    margin: 20px auto 0;
    background-color: #01274c;
    border: none;
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 8px 18px rgba(13,110,253,0.25);
    cursor: pointer;
}
.btn-submit:hover{
    background: linear-gradient(90deg, #01274c 0%, #000 40%, #028fcd 100%);
}
.form-select{
    width: 100%;
    padding: 15px 45px 15px 15px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #212529 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 6px;
    background-color: #fff !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
    position: relative;
}
select.form-select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 14px !important;
}
@media(max-width:768px){
.left-image{
    height:250px;
}
.form-side{
    padding:25px;
    }
}
/* Seo last */
.seo-faq {
    position: relative;
    overflow: hidden;
    background-image: url(../img/seofaq.jpg);
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
/* Seo Sec2 */
.seo-growth-section{
    overflow:hidden;
    position:relative;
}
.seo-growth-section .mini-label{
    display:inline-block;
    background:rgba(2,143,205,0.10);
    color:#028FCD;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.4px;
}
.seo-growth-section .rounded-pill {
    border-radius: var(--bs-border-radius-pill)!important;
    border: 1px solid #fff !important;
}
.seo-growth-section .feature-list{
    position:relative;
}
.seo-growth-section .feature-list::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 15px;
    width: 2px;
    background: linear-gradient(to bottom,#028FCD,#cbd5e1);
}
.seo-growth-section .feature-item{
    display:flex;
    gap:20px;
    margin-bottom:28px;
    position:relative;
}
.seo-growth-section .line-icon{
    min-width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#028FCD,#01274C);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:14px;
    box-shadow:0 12px 25px rgba(2,143,205,0.22);
    z-index:2;
}
.seo-growth-section .feature-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}
.seo-growth-section .feature-item p {
    margin: 0;
    color: #000;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
}
.seo-growth-section .seo-visual{
    background:linear-gradient(135deg,#01274C,#0b1e36);
    border-radius:32px;
    padding:55px 38px;
    color:#fff;
    box-shadow:0 30px 80px rgba(1,39,76,0.20);
    position:relative;
    overflow:hidden;
}
.seo-growth-section .seo-visual::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(2,143,205,0.08);
    border-radius:50%;
    top:-60px;
    right:-60px;
}
.seo-growth-section .floating-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#028FCD;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(2,143,205,.25);
}
.seo-growth-section .rank-box{
    text-align:center;
}
.seo-growth-section .rank-box small{
    color:#cbd5e1;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}
.seo-growth-section .rank-box h1{
    font-size:86px;
    font-weight:800;
    margin:10px 0;
    color:#028FCD;
    line-height:1;
}
.seo-growth-section .rank-box p {
    color: #fff;
    margin: 0;
    font-size: 18px;
    text-align: center;
    font-weight: 600 !important;
}
.seo-growth-section .graph-area{
    display:flex;
    align-items:flex-end;
    gap:12px;
    height:190px;
}
.seo-growth-section .bar{
    flex:1;
    border-radius:14px 14px 0 0;
    background:rgba(255,255,255,0.10);
    transition:0.4s ease;
}
.seo-growth-section .bar:hover{
    transform:translateY(-8px);
}
.seo-growth-section .bar1{height:35%;}
.seo-growth-section .bar2{height:50%;}
.seo-growth-section .bar3{height:65%;}
.seo-growth-section .bar4{height:82%;}
.seo-growth-section .bar5{height:100%;}
.seo-growth-section .active{
    background:linear-gradient(to top,#01274C,#028FCD);
    box-shadow:0 0 22px rgba(2,143,205,.35);
}
.seo-growth-section .growth-text {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.seo-growth-section .growth-text strong{
    color:#028FCD;
    font-size:30px;
    font-weight:800;
}
.seo-growth-section .stats-row{
    display:flex;
    gap:14px;
}
.seo-growth-section .mini-stat{
    flex:1;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    text-align:center;
    padding:16px;
}
.seo-growth-section .mini-stat h6{
    font-size:24px;
    color:#028FCD;
    margin:0;
    font-weight:800;
}
.seo-growth-section .mini-stat span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
}
.seo-growth-section .seo-btn{
    width:100%;
    font-weight:700;
    letter-spacing:.4px;
    padding:14px 20px;
    background:linear-gradient(135deg,#028FCD,#01274C);
    border:none;
    color:#fff;
    transition:0.4s ease;
}
.seo-growth-section .seo-btn:hover{
    background:linear-gradient(135deg,#01274C,#028FCD);
    transform:translateY(-3px);
}
.seo-growth-section .heading {
    font-size: 20px;
    font-weight: 600 !important;
    color: #000;
    margin-bottom: 10px;
}
@media(max-width:991px){
.seo-growth-section .main-title{
        font-size:46px;
}
.seo-growth-section .seo-visual{
        margin-bottom:20px;
}
}

@media(max-width:768px){
.seo-growth-section .main-title{
        font-size:38px;
}
.seo-growth-section .main-desc{
        font-size:16px;
}
.seo-growth-section .seo-visual{
        padding:35px 22px;
}
.seo-growth-section .rank-box h1{
        font-size:62px;
}
.seo-growth-section .graph-area{
        height:145px;
        gap:8px;
}
.seo-growth-section .stats-row{
        flex-direction:column;
}
.seo-growth-section .feature-item{
        gap:14px;
}
.seo-growth-section .line-icon{
        min-width:42px;
        height:42px;
        font-size:12px;
}
.seo-growth-section .feature-item h5{
        font-size:18px;
}
}
/* Sec3 */
.heading {
    font-size: 18px;
    font-weight: 600 !important;
    color: #000;
}
/* Sec4 */
.seo-ultra {
  position: relative;
  overflow: hidden;
}
.ultra-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
    transition: 0.4s ease;
    height: 480px;
}
.ultra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(120deg, #3b82f6, #06b6d4);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.ultra-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}
.badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 15px;
}
.badge-icon img {
    width: 40px;
    height: 40px;
}
.ultra-card h5 {
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}
.ultra-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}
.ultra-card ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
}
.ultra-card p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.ultra-card.large {
  padding: 40px;
}
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
}
/* Sec5 */
.seo-orbit-section {
    background: linear-gradient(135deg, #06111f, #0c2038);
    overflow: hidden;
    padding: 50px 0;
}
.seo-orbit-section .orbit-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
    margin: auto;
}
.seo-orbit-section .center-core {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg,#00d9ff,#0d6efd);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.seo-orbit-section .center-core p {
    margin: 0;
    font-size: 30px;
    font-weight: 600 !important;
}
.seo-orbit-section .orbit-box {
    position: absolute;
    width: 240px;
    padding: 22px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: #fff;
    z-index: 4;
}
.seo-orbit-section .orbit-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
.seo-orbit-section .orbit-box p {
    font-size: 16px;
    color: #fff;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
}
.seo-orbit-section .box1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.seo-orbit-section .box2 {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}
.seo-orbit-section .box3 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.seo-orbit-section .box4 {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}
.seo-orbit-section .ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.seo-orbit-section .ring-one {
    width: 420px;
    height: 420px;
    border: 2px dashed rgba(0, 217, 255, 0.45);
    animation: rotateClockwise 18s linear infinite;
}
.seo-orbit-section .ring-two {
    width: 620px;
    height: 620px;
    border: 2px dashed rgba(255,255,255,0.18);
    animation: rotateAntiClockwise 28s linear infinite;
}
@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes rotateAntiClockwise {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}
@media (max-width: 991px) {
.seo-orbit-section .orbit-wrapper {
        width: 100%;
        height: auto;
        display: grid;
        gap: 20px;
}
.seo-orbit-section .center-core,
.seo-orbit-section .orbit-box,
.seo-orbit-section .ring {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: auto;
}
.seo-orbit-section .ring {
        display: none;
}
}

@media (max-width: 767px) {
.seo-orbit-section .orbit-box,
.seo-orbit-section .center-core {
        width: 100%;
        max-width: 340px;
}
.seo-orbit-section .center-core {
        height: 180px;
    }
}
/* Sec6 */
.ecommerce-network-section{
    background: transparent;
    overflow: hidden;
}
.ecommerce-network-section .network-map{
    position: relative;
    width: 1100px;
    height: 850px;
    margin: auto;
}
.ecommerce-network-section .main-hub{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 260px;
    height: 260px;
    border-radius: 28px;
    background: linear-gradient(135deg,#00d9ff,#0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}
.ecommerce-network-section .main-hub h3{
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.ecommerce-network-section .network-lines{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.ecommerce-network-section .network-lines line{
    stroke: #0d6efd;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 10 8;
    animation: dashMove 5s linear infinite;
}
@keyframes dashMove{
    from{
        stroke-dashoffset: 0;
    }
    to{
        stroke-dashoffset: -180;
    }
}
.ecommerce-network-section .node{
    position: absolute;
    width: 210px;
    min-height: 110px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
    text-align: center;
    z-index: 3;
    transition: .35s ease;
}
.ecommerce-network-section .node span{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00d9ff,#0d6efd);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.ecommerce-network-section .node h4{
    color: #111;
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
    font-weight: 500;
}
.ecommerce-network-section .n1  { top: 0; left: 50%; transform: translateX(-50%); }
.ecommerce-network-section .n2 {
    top: 70px;
    right: 130px;
}
.ecommerce-network-section .n3 {
    top: 235px;
    right: -25px;
}
.ecommerce-network-section .n4 {
    top: 450px;
    right: -36px;
}
.ecommerce-network-section .n8 {
    top: 430px;
    left: -30px;
}
.ecommerce-network-section .n5 {
    bottom: 30px;
    right: 100px;
}
.ecommerce-network-section .n6  { bottom: 0; left: 50%; transform: translateX(-50%); }
.ecommerce-network-section .n7 {
    bottom: 50px;
    left: 85px;
}
.ecommerce-network-section .n9 {
    top: 229px;
    left: 10px;
}
.ecommerce-network-section .n10 {
    top: 60px;
    left: 130px;
}
@media(max-width:991px){
.ecommerce-network-section .network-map{
        width: 100%;
        height: auto;
        display: grid;
        gap: 20px;
}
.ecommerce-network-section .main-hub,
.ecommerce-network-section .node,
.ecommerce-network-section .network-lines{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: auto;
}
.ecommerce-network-section .network-lines{
        display: none;
}
.ecommerce-network-section .main-hub{
        width: 220px;
        height: 220px;
}
.ecommerce-network-section .main-hub h3{
        font-size: 30px;
}
}

@media(max-width:767px){
.ecommerce-network-section .main-hub,
.ecommerce-network-section .node{
        width: 100%;
        max-width: 360px;
}
.ecommerce-network-section .main-hub{
        height: 180px;
}
.ecommerce-network-section .main-hub h3{
        font-size: 26px;
}
.ecommerce-network-section .node h4{
        font-size: 15px;
}
}
/* GEO Sec2 */
.geo-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.geo-section .geo-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.geo-section .geo-title span {
  color: #38bdf8;
}
.geo-section .geo-desc {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 15px;
  line-height: 1.7;
}
.geo-section .geo-features {
  margin-top: 25px;
}
.geo-section .feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.geo-section .feature-item span {
  color: #22c55e;
  margin-right: 10px;
  font-weight: bold;
}
.geo-section .feature-item:hover {
  background: rgba(56, 189, 248, 0.15);
  transform: translateX(5px);
}
.geo-section .geo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.geo-section .geo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.geo-section .geo-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
}
.geo-section .geo-card p {
  font-size: 15px;
  color: #cbd5f5;
}
.geo-section .glow-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #38bdf8, transparent);
  top: -40px;
  right: -40px;
  opacity: 0.5;
  filter: blur(40px);
}
@media (max-width: 991px) {
.geo-section .geo-title {
    font-size: 28px;
}
.geo-section .geo-card {
    margin-top: 30px;
  }
}
/* Sec3 */
.team-section{
  position:relative;
  width:100%;
  display:block;
  padding: 60px 0 20px 0;
}
.team-section .row{
  align-items:center;
}
.team-section .deco-shape{
  position:absolute;
  border-radius:12px;
  border:3px solid rgba(0,200,200,0.25);
  background:transparent;
  animation:floatFly 6s ease-in-out infinite;
}
.team-section .deco-shape.s1{
  width:40px;height:40px;top:12%;left:8%;
  animation-delay:0s;
}
.team-section .deco-shape.s2{
  width:28px;height:28px;bottom:20%;left:14%;
  animation-delay:1s;
}
.team-section .deco-shape.s3{
  width:22px;height:22px;top:55%;left:4%;
  animation-delay:2s;
}
.team-section .deco-shape.s4{
  width:35px;height:35px;bottom:10%;right:6%;
  animation-delay:3s;
}
@keyframes floatFly{
  0%{
    transform:translate(0,0) rotate(15deg);
  }
  25%{
    transform:translate(10px,-20px) rotate(25deg);
  }
  50%{
    transform:translate(-10px,-35px) rotate(35deg);
  }
  75%{
    transform:translate(-5px,-15px) rotate(20deg);
  }
  100%{
    transform:translate(0,0) rotate(15deg);
  }
}
.s5{width:18px;height:18px; top:18%; right:12%; animation-delay:1s;}
.s6{width:26px;height:26px; bottom:28%; right:18%; animation-delay:2s;}
.s7{width:14px;height:14px; top:65%; left:18%; animation-delay:3s;}
.s8{width:22px;height:22px; top:35%; right:6%; animation-delay:4s;}
.s9{width:30px;height:30px; bottom:12%; left:25%; animation-delay:1.5s;}
.s10{width:16px;height:16px; top:50%; right:25%; animation-delay:2.5s;}
.s11{width:20px;height:20px; top:8%; right:30%; animation-delay:3.5s;}
.s12{width:24px;height:24px; bottom:40%; left:10%; animation-delay:4.5s;}
.s6, .s10{
  border-color:rgba(2,143,205,0.35);
}
.s7, .s11{
  border-color:rgba(0,255,200,0.25);
}
@keyframes floatMain{
  0%{
    transform:translate(0,0) rotate(10deg);
  }
  25%{
    transform:translate(15px,-25px) rotate(25deg);
  }
  50%{
    transform:translate(-10px,-35px) rotate(40deg);
  }
  75%{
    transform:translate(-5px,-15px) rotate(20deg);
  }
  100%{
    transform:translate(0,0) rotate(10deg);
  }
}
.s5, .s8, .s12{
  animation-name:floatAlt;
}
@keyframes floatAlt{
  0%{
    transform:translate(0,0) scale(1);
  }
  50%{
    transform:translate(10px,-20px) scale(1.2);
  }
  100%{
    transform:translate(0,0) scale(1);
  }
}
.team-section .phone-card {
    position: relative;
    width: 350px;
    background: linear-gradient(90deg, #01274c 0%, #000 40%, #028fcd 100%);
    border-radius: 50px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0,180,216,.35);
    margin: auto;
    z-index: 2;
}
.team-section .avatar-placeholder {
    width: 100%;
    height: 150px;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,.5);
}
.team-section .avatar-placeholder img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.team-section .phone-outer-frame{
  position:relative;
}
.team-section .phone-outer-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid rgb(2 112 160);
    border-radius: 60px;
}
.team-section .members-info{
  display:flex;
  flex-direction:column;
  gap:10px;
  justify-content:center;
  height:100%;
  z-index:2;
  position:relative;
}
.team-section .member-name {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
@media(max-width:991px){
.team-section{
    padding:60px 0;
    text-align:center;
}
.team-section .members-info{
    align-items:center;
}
}
@media(max-width:576px){
.team-section .hero-title{
    font-size:1.6rem;
}
.team-section .phone-card{
    width:170px;
  }
}
/* Sec5 */
.geo-flow .flow-card{
  position:relative;
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  overflow:hidden;
}
.geo-flow .flow-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:12px;
  border-radius:12px 0 0 12px;
}
.geo-flow .flow-card::after{
  content:"";
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);
  border-left:20px solid;
  border-top:20px solid transparent;
  border-bottom:20px solid transparent;
}
.geo-flow .flow-left{
  text-align:center;
  margin-right:20px;
  min-width:60px;
}
.geo-flow .flow-left h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: #012345;
}
.geo-flow .flow-left span{
  font-size:12px;
  color:#888;
}
.geo-flow .flow-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}
.geo-flow .flow-content p {
    font-size: 16px;
    color: #000;
    margin: 0;
    text-align: justify;
    font-weight: 500;
    padding: 12px 10px 0 10px;
    width: 90%;
}
.geo-flow .flow-icon{
  margin-left:auto;
  opacity:1;
}
.geo-flow .flow-icon img {
    width: 200px;
    height: 200px;
}
.geo-flow .yellow::before {
    background: #0cb4ff;
}
.geo-flow .yellow::before {
    background: #0cb4ff;
}
.geo-flow .orange::before {
    background: #0cb4ff;
}
.geo-flow .orange::before {
    background: #0cb4ff;
}
.geo-flow .green::before {
    background: #0cb4ff;
}
.geo-flow .green::before {
    background: #0cb4ff;
}
.geo-flow .blue::before {
    background: #0cb4ff;
}
.geo-flow .blue::before {
    background: #0cb4ff;
}
.geo-flow .pink::before {
    background: #0cb4ff;
}
.geo-flow .pink::before {
    background: #0cb4ff;
}
.geo-flow .flow-card:hover{
  transform:translateY(-5px);
  transition:.3s ease;
}
/* Sec5 */
.stripe-item1 {
    font-size: 36px;
}
/* Sec7 */
.geo-gallery-section{
  position:relative;
}
.geo-gallery-section .gallery-card{
  background:#fff;
  border-radius:18px;
  padding:10px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.4s ease;
  text-align:left;
  height:100%;
}
.geo-gallery-section .gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}
.geo-gallery-section .gallery-card.large img{
  height:200px;
}
.geo-gallery-section .gallery-caption {
    font-size: 16px;
    margin-top: 8px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.geo-gallery-section .gallery-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}
/* Sec8 */
.geo-industries {
    position: relative;
    background: #028fcd9e;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.geo-img{
  overflow:hidden;
}
.geo-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    
}
.geocurve1 {
    border-bottom-left-radius: 300px;
    border-bottom-right-radius: 300px;
}
.geocurve2 {
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
}
.geo-img.circle {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 6px;
    border: 5px solid #1e1b6b;
}

.geo-img.circle img{
  border-radius:50%;
  height:100%;
}

.geo-content h5 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.geo-content p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    text-align: justify;
    font-weight: 500;
}

/* Responsive */
@media(max-width:991px){
  .geo-box{
    text-align:center;
  }

  .geo-img.circle{
    margin-top:20px;
  }
}

@media(max-width:576px){
  .geo-img img{
    height:180px;
  }

  .geo-img.circle{
    width:180px;
    height:180px;
  }
}
.text-center{
    text-align: center !important;
}


.marqueeinfinite {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
    color: #fff;
    overflow: hidden;
    background: #048fcc;
    white-space: nowrap;
}
.infinite-mar{
 color: #fff !important;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}
.marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 25s linear infinite;
  &:hover {
    animation-play-state: paused;
    color: #fff;
  }
}
.marqueeinfinite span {
  float: left;
  width: 50%;
  overflow: hidden;
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
/* SMM Sec1 alagu */
.img-box3 .bordernew img {
    border-radius: 30px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: unset;
}
/* Sec2 */
.smm-section{
  background:#0b1220;
  color:#fff;
  overflow:hidden;
  padding: 50px 0;
}
.smm-section .smm-tag{
  font-size:13px;
  letter-spacing:2px;
  color:#38bdf8;
  font-weight:700;
}
.smm-section .smm-title{
  font-size:42px;
  font-weight:900;
  margin:10px 0 15px;
}
.smm-section .smm-sub{
  margin-top:20px;
  font-size:20px;
  font-weight:700;
}
.smm-section .smm-desc{
  color:#9ca3af;
  font-size:15px;
  line-height:1.7;
}
.smm-section .smm-platforms{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.smm-section .platform-box{
  padding:10px 16px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  font-size:16px;
  transition:.3s;
}
.smm-section .platform-box:hover{
  background:#38bdf8;
  color:#000;
}
.smm-section .smm-visual-new{
  position:relative;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.smm-section .phone-mockup {
    width: 100%;
    height: auto;
    border-radius: 30px;
    padding: 10px;
    background: linear-gradient(145deg,#1f2937,#111827);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
}
.smm-section .phone-mockup img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}
.smm-section .social-card{
  position:absolute;
  padding:10px 16px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  font-size:13px;
  color:#fff;
  backdrop-filter:blur(6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  transition:.3s;
}
.smm-section .sc1{ top:30px; left:30px; }
.smm-section .sc2{ top:80px; right:30px; }
.smm-section .sc3{ bottom:80px; left:40px; }
.smm-section .sc4{ bottom:30px; right:40px; }
.smm-section .social-card:hover{
  background:#38bdf8;
  color:#000;
  transform:translateY(-5px);
}
@media(max-width:991px){
.smm-section .smm-visual-new{
    height:320px;
    margin-top:40px;
}
.smm-section .phone-mockup{
    width:180px;
    height:300px;
}
.smm-section .social-card{
    font-size:11px;
    padding:8px 12px;
}
}
/* Sec3 */
.smm-video-section{
  background:#0b1220;
  color:#fff;
  overflow:hidden;
}
.smm-video-section .video-stage{
  position:relative;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.smm-video-section .video-frame{
  position:relative;
  width:320px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.6);
}
.smm-video-section .video-frame img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}
.smm-video-section .play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(255,255,255,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}
.smm-video-section .play-btn span{
  width:0;
  height:0;
  border-left:18px solid #0b1220;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}
.smm-video-section .video-tag{
  position:absolute;
  padding:8px 14px;
  font-size:12px;
  border-radius:20px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(6px);
}
.smm-video-section .vt1{ top:20px; left:20px; }
.smm-video-section .vt2{ top:80px; right:30px; }
.smm-video-section .vt3{ bottom:80px; left:40px; }
.smm-video-section .vt4{ bottom:20px; right:20px; }
.smm-video-section .video-tagline{
  font-size:13px;
  letter-spacing:2px;
  color:#38bdf8;
  font-weight:700;
}
.smm-video-section .video-title{
  font-size:40px;
  font-weight:900;
  margin:10px 0 15px;
}
.smm-video-section .video-desc{
  color:#9ca3af;
  font-size:15px;
  line-height:1.7;
}
.smm-video-section .video-features{
  margin-top:25px;
  border-left:2px solid rgba(56,189,248,0.3);
  padding-left:20px;
}
.smm-video-section .video-item{
  display:flex;
  gap:15px;
  margin-bottom:18px;
}
.smm-video-section .video-item h5{
  font-size:16px;
  margin:0 0 3px;
}
.smm-video-section .video-item p{
  font-size:13px;
  color:#9ca3af;
  margin:0;
}
.smm-video-section .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#38bdf8;
  margin-top:6px;
  box-shadow:0 0 10px #38bdf8;
}
.smm-video-section .video-note{
  margin-top:20px;
  font-size:14px;
  color:#cbd5f5;
}
@media(max-width:991px){
.smm-video-section .video-stage{
    height:320px;
    margin-bottom:30px;
}
.smm-video-section .video-frame{
    width:240px;
}
.smm-video-section .video-frame img{
    height:320px;
}
.smm-video-section .video-title{
    font-size:28px;
}
}
/* Sec6 */
.pricing-section {
  text-align: center;
}
.pricing-section .pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 100%;
}
.pricing-section .pricing-card:hover {
  transform: translateY(-8px);
}
.pricing-section .package-title {
  font-weight: 600;
  font-size: 22px;
}
.pricing-section .package-subtitle {
  font-size: 14px;
  color: #6c757d;
}
.pricing-section .pricing-card.active .package-subtitle {
  color: rgba(255,255,255,0.8);
}
.pricing-section .price {
  font-size: 40px;
  font-weight: 700;
  color: #1d5cc6;
  margin: 20px 0;
}
.pricing-section .price span {
  font-size: 14px;
  font-weight: 400;
}
.pricing-section .features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}
.pricing-section .features li {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 500;
}
.pricing-section .features li::before {
  content: "✔";
  color: #1d5cc6;
  margin-right: 10px;
}
.pricing-section .pricing-card.active .features li::before {
  color: #fff;
}
.pricing-section .btn-custom {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  background: #0b1b2b;
  color: #fff;
  border: none;
}
.pricing-section .pricing-card.active .btn-custom {
  background: #fff;
  color: #1d5cc6;
}
.pricing-section .pricing-card {
    position: relative;
    background: #eef1f6;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    z-index: 1;
}
.pricing-section .pricing-card::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160%;
    height: 160%;
    background: linear-gradient(135deg, #ffffff 40%, #0081ff24 40%);
    transform: rotate(0deg);
    z-index: -1;
}
.pricing-section .pricing-card:hover {
    transform: translateY(-8px);
}
.pricing-section .pricing-card h4,
.pricing-section .pricing-card li {
    position: relative;
    z-index: 2;
}
/* WhatsApp Integration */

.whatsapp-name {
font-size: 16px;
font-weight: 600;
padding-bottom: 0;
margin-bottom: 0;
line-height: 0.5;
color: #fff;
}
#whatsapp-chat {
box-sizing: border-box !important;
outline: none !important;
position: fixed;
width: 350px;
border-radius: 10px;
box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
bottom: 230px;
right: 32px;
overflow: hidden;
z-index: 99;
animation-name: showchat;
animation-duration: 1s;
transform: scale(1);
}
a.blantershow-chat {
background: none !important;
color: #404040;
position: fixed;
display: flex;
font-weight: 400;
justify-content: space-between;
z-index: 1002;
bottom: 180px;
right: 20px;
font-size: 18px;
height: 45px;
width: 45px;
padding: 4px;
border-radius: 30px;
/box-shadow: 0 1px 15px rgb(32 33 36 / 61%);/
}
a.blantershow-chat svg {
transform: scale(1.2);
}
.header-chat {
    background: #028fcd;
    color: #fff;
    padding: 20px;
}
.header-chat h3 {
margin: 0 0 10px;
}
.header-chat p {
font-size: 14px;
line-height: 1.7;
margin: 0;
}
.info-avatar {
position: relative;
}
.info-avatar img {
    width: 80px;
    float: left;
    margin: -15px 10px 0 0;
    opacity: 1;
    filter: brightness(0) invert(1);
}
a.informasi {
padding: 20px;
display: block;
overflow: hidden;
animation-name: showhide;
animation-duration: 0.5s;
}
a.informasi:hover {
background: #f1f1f1;
}
.info-chat span {
display: block;
}
#get-label,
span.chat-label {
font-size: 12px;
color: #888;
}
#get-nama,
span.chat-nama {
margin: 5px 0 0;
font-size: 15px;
font-weight: 700;
color: #222;
}
#get-label,
#get-nama {
color: #fff;
}
span.my-number {
display: none;
}
textarea#chat-input {
border: none;
width: 100%;
height: 46px;
outline: none;
resize: none;
padding: 9px;
font-size: 14px;
border-radius: 0px;
min-height: 50px;
}
a#send-it {
font-weight: 700;
padding: 10px 10px 0;
background: #eee;
}
a#send-it svg {
fill: #a6a6a6;
height: 24px;
width: 24px;
}
.first-msg {
background: transparent;
padding: 30px;
text-align: center;
}
.first-msg span {
background: #e2e2e2;
color: #333;
font-size: 14.2px;
line-height: 1.7;
border-radius: 10px;
padding: 15px 20px;
display: inline-block;
}
.start-chat .blanter-msg {
display: flex;
}
#get-number {
display: none;
}
a.close-chat {
position: absolute;
top: 5px;
right: 15px;
color: #fff;
font-size: 30px;
}
@keyframes ZpjSY {
0% {
background-color: #b6b5ba;
}
15% {
background-color: #111111;
}
25% {
background-color: #b6b5ba;
}
}
@keyframes hPhMsj {
15% {
background-color: #b6b5ba;
}
25% {
background-color: #111111;
}
35% {
background-color: #b6b5ba;
}
}
@keyframes iUMejp {
25% {
background-color: #b6b5ba;
}
35% {
background-color: #111111;
}
45% {
background-color: #b6b5ba;
}
}
@keyframes showhide {
from {
transform: scale(0.5);
opacity: 0;
}
}
@keyframes showchat {
from {
transform: scale(0);
opacity: 0;
}
}
@media screen and (max-width: 480px) {
#whatsapp-chat {
width: auto;
left: 5%;
right: 5%;
font-size: 80%;
}
}
@media screen and (max-width: 1200px) {
.index-page.show{
display: none !important;
}
}
#whatsapp-chat.hide {
display: none;
animation-name: showhide;
animation-duration: 0.5s;
transform: scale(1);
opacity: 1;
}
#whatsapp-chat.show {
display: block;
animation-name: showhide;
animation-duration: 0.5s;
transform: scale(1);
opacity: 1;
}
.whatsapp-message-container {
display: flex;
z-index: 1;
}
.whatsapp-message {
padding: 7px 14px 6px;
background-color: white;
border-radius: 0px 8px 8px;
position: relative;
transition: all 0.3s ease 0s;
opacity: 0;
transform-origin: center top 0px;
z-index: 2;
box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
margin-top: 4px;
margin-left: -54px;
max-width: calc(100% - 66px);
}
.whatsapp-chat-body {
padding: 4px 0px 0px 2px;
background-color: #e6ddd4;
position: relative;
}.whatsapp-chat-body::before {
display: block;
position: absolute;
content: "";
left: 0px;
top: 0px;
height: 100%;
width: 100%;
z-index: 0;
opacity: 0.08;
background-image: url("../../senthaa/image-senthaa/whatsapp-bg.webp");
}
.dAbFpq {
display: flex;
z-index: 1;
}
.eJJEeC {
background-color: white;
width: 52.5px;
height: 32px;
border-radius: 16px;
display: flex;
-moz-box-pack: center;
justify-content: center;
-moz-box-align: center;
align-items: center;
margin-left: 10px;
opacity: 0;
transition: all 0.1s ease 0s;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
.hFENyl {
position: relative;
display: flex;
}
.ixsrax {
height: 5px;
width: 5px;
margin: 0px 2px;
border-radius: 50%;
display: inline-block;
position: relative;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
top: 0px;
background-color: #9e9da2;
animation-name: ZpjSY;
}
.dRvxoz {
height: 5px;
width: 5px;
margin: 0px 2px;
background-color: #b6b5ba;
border-radius: 50%;
display: inline-block;
position: relative;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
top: 0px;
animation-name: hPhMsj;
}
.kAZgZq {
/*  padding: 7px 14px 6px;*/
/* background-color: white;
border-radius: 0px 8px 8px;*/
position: relative;
transition: all 0.3s ease 0s;
opacity: 0;
transform-origin: center top 0px;
z-index: 2;
/*  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;*/
margin-top: 4px;
margin-left: -54px;
max-width: calc(100% - 66px);
}
/*.kAZgZq::before {
position: absolute;
background-image: url("../../solar-image/images/whatsapp/side-extend.webp");
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: contain;
content: "";
top: 0px;
left: -12px;
width: 12px;
height: 19px;
}*/
.bMIBDo {
font-size: 13px;
font-weight: 700;
line-height: 18px;
color: #000;
}
.iSpIQi {
font-size: 14px;
line-height: 19px;
margin-top: 4px;
color: #111111;
}
.iSpIQi {
font-size: 14px;
line-height: 19px;
margin-top: 4px;
color: #111111;
}
.cqCDVm {
text-align: right;
margin-top: 4px;
font-size: 12px;
line-height: 16px;
color: rgba(17, 17, 17, 0.5);
margin-right: -8px;
margin-bottom: -4px;
}
.phone .phon1 {
position: fixed;
bottom: 135px;
right: 44px;
z-index: 9;
width: 35px;
}

.call-phone {
height: 40px;
z-index: 1003;
position: fixed;
right: 24px;
bottom: 120px;
border: 3px solid #fff;   /* White border */
border-radius: 50%;       /* Make it a circle */
}
/* scroll to top */
.scroll-to-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 55px;
    right: 25px;
    z-index: 9999;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

/* Image styling */
.scroll-to-top img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Optional hover effect */
.scroll-to-top:hover {
    transform: scale(1.1);
    transition: 0.3s;
}
/* Default (before scroll) */
.navbar-toggler {
    border: 1px solid #fff !important;
    padding: 5px;
    border-radius: 4px;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-image: url("../img/hamburger-white.png") !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* After scroll */
.site-header.scrolled .navbar-toggler {
    border: 1px solid #000 !important;
}

.site-header.scrolled .navbar-toggler-icon {
    background-image: url("../img/hamburger.png") !important;
}

.main-navbar .container {
    display: flex;
    align-items: center;
}

/* Ensure logo doesn't stretch */
.brand-wrap {
    display: flex;
    align-items: center;
}
/* Sujith anna 04.05.26 */
.img-box1 img{
width: 100%;
}
.text-justify{
text-align: justify;
}
.details-title-text{
    font-size: 20px;
    font-weight: 600;
}
.text-left {
text-align: left;
}
/* Media Query */
@media (max-width: 991.98px) {
     .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none !important;
    }
    .brand-wrap img {
        height: 30px !important;
    }
    .navbar-nav {
        gap: 5px;
    }
    .hero-img:before, .hero-img:after {
    display: none;
}
.hero-banner .sub-title {
    font-size: 16px;
    text-align: center;
}
.hero-style14 .hero-title {
    font-size: 20px;
    text-align: justify;
    line-height: 28px;
}
.hero-banner .hero-style14 {
    padding-top: 30px;
}
.paragraph {
    font-size: 16px;
}
.hero-banner .btn-group {
    display: flex;
    gap: 20px;
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.about-area {
    padding: 0px;
}
.navbar .dropdown:hover .dropdown-menu {
    display: none;
}
.offcanvas .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        margin: 0;
        padding-left: 15px;
    }

    .offcanvas .dropdown-menu li {
        margin-bottom: 5px;
    }

.offcanvas .dropdown-item {
    color: #000;
    padding: 6px 0;
    font-size: 16px;
    font-weight: 500;
}
    .offcanvas .dropdown-menu {
        display: none;
    }

.offcanvas .dropdown-menu.show {
    display: block;
    color: #000;
    background: #fff;
}
    .offcanvas .nav-item {
        padding: 0;
    }

    .offcanvas .dropdown-toggle::after {
        float: right;
        margin-top: 6px;
    }
    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    .sp1 {
        margin-top: 30px;   
    }
    .structure ul li {
        font-size: 16px;
    }
    .img-box3 .img1 img {
    width: 100%;
    height: auto;
}
.img1.reveal {
        transform: none !important;
        translate: none !important;
    }
    .counter-section .row {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .counter-section .row > div {
        width: 100%;
    }
    .why-img-box2 img {
        height: auto;
        margin-bottom: 20px;
    }
    .box-title {
    font-size: 18px;
}
.glass-section {
    padding: 30px 0;
}
.glass-overlay h4 {
    font-size: 18px;
}
.glass-card {
    width: 100%;
    height: auto;
}
.glass-overlay {
    padding: 10px;
    width: 100%;
    height: auto;
}
.about-item {
    margin-bottom: 20px;
}
.counter-box .inner-box {
    padding: 20px 10px;
}
.why-dubai h5 {
    font-size: 16px;
}
.why-dubai .img-box1 .img1 img {
    width: 100%;
    height: auto;
}
.quick-stripe {
    padding: 30px 0;
}
.hero-style14 .hero-title {
    text-align: center;
}
.stripe-item {
    font-size: 22px;
}
.paragraph1 {
    font-size: 16px;
}
.img-box15 {
    margin-bottom: 0;
}
.category-area {
    padding: 30px 0;
}
.categorySlider .swiper-slide {
        width: 85% !important;   /* responsive slide width */
}
.categorySlider .category-card {
        width: 100%;             /* fill slide */
        padding: 16px;
}
.categorySlider .box-img {
        width: 100%;
}
.categorySlider .box-img img {
        width: 100%;
        height: auto;
}
.categorySlider .sec-text {
        font-size: 16px;
}
.about-area6 {
    padding: 10px;
    height: auto;
    width: 100%;
}
.feelfree .about-feature-list ul li {
        flex-direction: column;
    }
.faq-section {
    padding: 30px 0;
}
.blog-footer {
    flex-direction: column;
}
.read-more {
    margin-top: 20px;
}
.th-social {
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.copyright-wrap {
    margin-top: 10px;
}
.widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-box_text {
    align-items: center;
    justify-content: center;
}
.footer-widget ul {
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: auto;
}
.breadcumb-wrapper {
    padding: 30px 0;
}
.hidden {
    display: none !important;
}
.img-box8 .img3 img {
    width: 100%;
    height: auto;
}
.img-box8 .img3 {
    margin: 0 !important;
}
.process-section {
    padding: 30px 0;
}
.about-area .sub-title {
    text-align: left;
}
.mbl-width {
    width: 100%;
    height: auto;
}
.ml-card {
    width: 100%;
    height: auto;
    padding: 20px;
    align-items: center;
}
.course-card {
    width: 100%;
    height: 350px;
}
.service-card {
    padding: 20px;
}
.process-box-img-wrap {
        margin: 20px 0;
        justify-content: center;
    }

    /* Show only active image */
    .process-box-img {
        position: relative;
        width: 100%;
        height: auto;
        transform: none !important;
        top: auto;
        left: auto;
        display: none;
    }

    .process-box-img.active-img {
        display: block;
    }

    .process-box-img img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Cards spacing */
    .process-card4 {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .box-number {
        font-size: 40px;
        margin-top: 10px;
    }

    .box-text1 {
        width: 100%;
        font-size: 14px;
    }

    .box-title1 {
        font-size: 18px;
    }
    .project-box-wrapper .project-card-items {
        flex-direction: column;
        padding: 20px;
        text-align: left;
    }

    /* Reset number position */
    .project-box-wrapper .project-card-items h4 {
        position: relative;
        top: auto;
        left: auto;
        font-size: 24px;
        margin-bottom: 10px;
    }

    /* Content full width */
    .project-box-wrapper .project-card-items .project-content h3 {
        width: 100%;
        font-size: 22px;
    }

    .project-box-wrapper .project-card-items .project-content p {
        max-width: 100%;
        font-size: 14px;
    }

    /* Image full width */
    .project-box-wrapper .project-card-items .project-thumb {
        width: 100%;
        margin-top: 15px;
    }

    .project-box-wrapper .project-card-items .project-thumb img {
        width: 100% !important;
        height: auto !important;
    }

    /* Fix spacing */
    .contentwidth {
        width: 100%;
    }
    .breadcumb-title {
        font-size: 22px;
    }
    .breadcumb-menu li {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.testimonial-section {
    padding: 30px 0;
}
.choose__img-three {
    margin-left: 0;
    width: 100%;
    height: auto;
}
.faq-section2 {
    padding: 0 !important;
}
.accordion-button {
    font-size: 16px !important;
}
.img-box3 .img2 img {
    width: 100%;
    height: auto;
}
.about-company-section {
    padding: 30px 0 0 0;
}
.about-images .left,
    .about-images .right {
        display: none;
    }

    /* Center single image */
    .about-images {
        justify-content: center;
    }

    .about-images .center {
        margin: 0 auto;
        text-align: center;
    }

    .about-images .center img {
        width: 100%;
        border-radius: 20px;
        height: auto;
    }

    /* Make center column full width */
    .about-images .col-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .e-tech ul.newlist li {
        text-align: left;
    }
    .e-tech .icon_content {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .e-tech .icon_box_all {
        padding: 20px;
    }
    .illustrator::before {
        display: none;
    }
    .desktop-svg {
        display: none;
    }
    .mobile-svg {
        display: block;
    }
}
