
body {
    font-family: 'Jost', sans-serif !important;
}
h1, h2, h3 {
    font-family: 'Funnel Display', sans-serif;
}

p {
    font-family: 'Noto Sans', sans-serif;
}


.urban.services-section {
    padding: 60px 20px;
    text-align: center;
    background:#42c493d6;
}

.urban .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

/* Grid */
.urban .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Single Box */
.urban .service-box {
    background: #f7f7f7;
    padding: 40px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 2px solid #d9d5d5;
}

.urban .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.urban .service-icon img {
   width: 80%;
  margin-bottom: 20px;
  border-radius: 20px;
}

.urban .service-box h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

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

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

    .urban .section-title {
        font-size: 24px;
    }
}


/*========================================*/
 .section-title { font-weight: 700; font-size: 28px; text-align: center; margin-bottom: 40px; }
        .feature-img { width: 100%; height:auto; }
        .cta-btn { padding: 10px 25px; font-weight: 600; margin-top:15px; }
        .card-block { padding: 30px 15px; border-radius: 15px; background: white; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
        

/**/

.swiper-1{
     background:#130628;       
        }
 .slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .slider-track {
    display: flex;
    animation: scroll 18s linear infinite;
  }

  .slider-item {
    min-width: 33.33%; /* 3 items */
    padding: 10px;
  }

  .slider-item img {
    width: 100%;
    height: 240px;      
    object-fit: cover;   
    border-radius: 10px;
  }

  /* Tablet */
  @media (max-width: 768px) {
    .slider-item {
      min-width: 50%;
    }
    .slider-item img {
      height: 200px; 
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .slider-item {
      min-width: 100%;
    }
    .slider-item img {
      height: 180px;
    }
  }

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


/* Section Wrapper */
.urban.testimonial-section {
    padding: 60px 20px;
    background: #242323;
}

.urban .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Grid */
.urban .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Box */
.urban .testimonial-box {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.07);
    transition: 0.3s;
    border: 2px solid #d2d2d2;
}

.urban .testimonial-box:hover {
    transform: translateY(-4px);
}

/* User Icon */
.urban .t-img img {
    width: 80px;
    height: 80px;
}

/* Stars */
.urban .t-stars {
    margin: 15px 0;
    font-size: 20px;
    color: #ffbb33;
}

/* Text */
.urban .t-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Name */
.urban .t-name {
    font-weight: 700;
    font-size: 16px;
}



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

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    .urban .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .urban .testimonial-box {
        padding: 30px 20px;
    }
}

/* Very Small Mobile – 320px Ready */
@media (max-width: 360px) {
    .urban .t-img img {
        width: 65px;
        height: 65px;
    }

    .urban .t-text {
        font-size: 14px;
    }

    .urban .t-name {
        font-size: 15px;
    }
}


/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-image: url('../../public/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    padding: 120px 5% 60px 5%;  
}

/* Dark Overlay */
.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    background-size:cover;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* -----------------------------
   LEFT TEXT CONTENT
----------------------------- */
.left-content {
    width: 50%;
    color: #fff;
}

.left-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 90%;
    line-height: 1.5;
}

/*.hero-btn {*/
/*    display: inline-block;*/
/*    padding: 12px 28px;*/
/*    background: #ff6600;*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    transition: 0.3s;*/
/*}*/

/*.hero-btn:hover {*/
/*    background: #e85d00;*/
/*}*/
.hero-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background:#FF3C00;
    box-shadow: 0 6px 18px rgba(255, 115, 0, 0.4);
    transition: 0.3s ease-in-out;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ffd75a, #ff8c1a);
    box-shadow: 0 8px 22px rgba(255, 140, 26, 0.55);
    transform: translateY(-3px);
}
.sapn-1{
    color:#FF3C00;
}

/* -----------------------------
   RIGHT IMAGE CONTENT
----------------------------- */
.right-content {
    width: 45%;
    display: flex;
    justify-content: center;
}

.right-content img {
    width: 100%;
    /*max-width: 420px;*/
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
}

/* ----------------------------------------------------
   RESPONSIVE: TABLETS
---------------------------------------------------- */
@media (max-width: 991px) {
    .about-hero {
        padding-top: 140px; /* avoid header overlap on tablets */
        padding-bottom: 60px;
        background-position: center;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .right-content {
        margin-top: 35px;
    }

    .left-content h1 {
        font-size: 45px;
    }

    .left-content p {
        font-size: 18px;
    }
    .latest-img-box .second-img{
        order:1;
    }
}

/* ----------------------------------------------------
   RESPONSIVE: MOBILE
---------------------------------------------------- */
@media (max-width: 480px) {
    .about-hero {
        padding-top: 150px; /* FIX: heading hidden issue */
        padding-bottom: 50px;
    }

    .left-content h1 {
        font-size: 35px;
    }

    .left-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 16px;
    }

    .right-content img {
        max-width: 300px;
    }
}

/* ----------------------------------------------------
   EXTRA SMALL DEVICES (≤ 320px)
---------------------------------------------------- */
@media (max-width: 320px) {
    .about-hero {
        padding-top: 160px;
    }

    .left-content h1 {
        font-size: 28px;
    }
}



/*footer start*/
/* MAIN FOOTER */
.fish-footer {
    background: #1c486b;
    padding: 50px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
    margin-top: -7px;
}

/* TOP AREA LAYOUT */
.fish-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* LEFT AREA */
.fish-footer-left {
    min-width: 220px;
}

.fish-social-icons a {
    background: #ffffff22;
    padding: 10px;
    margin-right: 5px;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.3s;
}

.fish-social-icons a:hover {
    background: #ffffff55;
}

.fish-footer-tagline {
    margin-top: 20px;
    font-size: 15px;
    line-height: 22px;
}

/* MENU COLUMNS */
.fish-footer-menus {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.fish-menu-col ul {
    padding: 0;
    list-style: none;
}

.fish-menu-col ul li {
    margin-bottom: 8px;
}

.fish-menu-col ul li a {
    color: #fff;
    font-size: 15px;
    opacity: 0.9;
    transition: 0.3s;
}

.fish-menu-col ul li a:hover {
    opacity: 1;
    color: #ffd700;
}

/* SUBSCRIBE SECTION */
.fish-footer-subscribe h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.fish-footer-subscribe input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
}

.fish-footer-subscribe button {
    width: 100%;
    padding: 10px;
    background: #ffd700;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.fish-footer-subscribe button:hover {
    background: #ffca00;
}

/* ABOUT TEXT SECTION */
.fish-footer-about {
    max-width: 1300px;
    margin: 40px auto 20px;
    line-height: 22px;
    font-size: 14px;
    color: #eee;
}

/* BOTTOM LINKS */
.fish-footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #ffffff44;
    font-size: 14px;
}

.fish-footer-bottom a {
    color: #fff;
    margin: 0 5px;
    opacity: 0.9;
}

.fish-footer-bottom a:hover {
    color: #ffd700;
}

.fish-footer-copy {
    margin-left: 10px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .fish-footer-top {
        text-align: center;
        justify-content: center;
    }

    .fish-footer-menus {
        justify-content: center;
    }

    .fish-footer-about {
        text-align: center;
    }
}
.fish-wave {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#fish-wave-path {
    animation: fishWaveMove 2s ease-in-out infinite alternate;
}

@keyframes fishWaveMove {
    0% {
        d: path("M0,97 C250,120 250,120 500,100 C750,80 750,80 1000,95 C1250,110 1250,110 1440,97 L1440,150 L0,150 Z");
    }
    100% {
        d: path("M0,90 C250,110 250,110 500,120 C750,130 750,130 1000,115 C1250,100 1250,100 1440,90 L1440,150 L0,150 Z");
    }
}

/*footer end*/
/* BACKGROUND */
.fish-footer {
    background: #10102E;
    color: #fff;
    /*padding: 50px 0;*/
    font-family: Arial;
}

/* TOP MAIN LAYOUT */
.fish-footer-main {
    max-width: 1350px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /*gap: 50px;*/
    /*padding: 10px 202px;*/
}

/* LEFT LOGOS */
.fish-logo-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fish-logo { width: 217px; }
.fish-cgiar { width: 60px; }

/* SOCIAL ICONS */
.fish-social a {
    background: #ffffff20;
    padding: 10px 12px;
    display: inline-block;
    border-radius: 4px;
    margin-right: 6px;
    color: white;
}

.fish-tagline {
    margin-top: 20px;
    line-height: 23px;
    font-size: 15px;
}

/* RIGHT MULTI-COLUMN MENU */
.fish-footer-menus {
    display: flex;
    gap: 80px;
}

.fish-footer-menus ul {
    list-style: none;
    padding: 0;
}

.fish-footer-menus ul li {
    margin-bottom: 10px;
}

.fish-footer-menus ul li a {
    color: #fff;
    opacity: 0.9;
    font-size: 20px;
}

/* ABOUT + SUBSCRIBE ROW */
.fish-bottom-row {
    max-width: 1350px;
    margin: 40px auto 20px;
    /*padding: 0 125px;*/
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.fish-about {
    width: 65%;
    line-height: 20px;
    font-size: 14px;
    opacity: .9;
    padding: 45px;
}

/* SUBSCRIBE BOX */
.fish-subscribe {
    width: 28%;
}

.fish-subscribe h3 {
    margin-bottom: 10px;
    font-weight: bold;
}

.fish-subscribe input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 10px;
}

.fish-subscribe button {
    width: 100%;
    padding: 12px;
    background:orangered;
    color:white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* BOTTOM POLICY LINKS */
.fish-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ffffff30;
    margin-top: 30px;
}

.fish-footer-bottom a {
    color: #fff;
    opacity: .9;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .fish-footer-main {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .fish-footer-menus {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .fish-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .fish-about, .fish-subscribe {
        width: 100%;
    }
}

/* ===========================================*/
.pub-section {
    padding: 60px 0;
    background: #f4f6f9;
}

.pub-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.pub-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #083b72;
    letter-spacing: 1px;
}

.pub-line {
    width: 60px;
    height: 4px;
    background: #3cb043;
    margin: 10px auto 40px;
    border-radius: 5px;
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.pub-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
}

.pub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0,0,0,0.15);
}

.pub-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pub-body {
    padding: 20px;
}

.pub-type {
    font-size: 14px;
    font-weight: 700;
    color: #0a6fb8;
}

.pub-title {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.pub-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.pub-date {
    font-size: 14px;
    color: #777;
}

/* Responsive for 320px */
@media(max-width: 480px) {
    .pub-heading {
        font-size: 26px;
    }
    .pub-title {
        font-size: 16px;
    }
}

.aqua-section {
    width: 100%;
    position: relative;
}

.aqua-bg {
    /*background: url('img/backg/round.jpg') center/cover no-repeat;*/
    padding: 90px 0;
    position: relative;
     background-image: url('/public/images/fishslide.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.aqua-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    /*background-image: url('/public/images/fishslide.jpg');*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    display: flex;
    align-items: center;
    z-index: 1;
}

.aqua-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.aqua-box {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    width: 420px;
    transition: 0.3s ease;
}

.aqua-box:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.45);
}

.aqua-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.aqua-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

/* Mobile responsive 360–320px */
@media(max-width: 480px) {
    .aqua-box {
        width: 90%;
        padding: 30px 20px;
    }

    .aqua-title {
        font-size: 22px;
    }

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


/**/

.latest-sec {
    padding: 70px 0;
    background: #ffffff;
}

.latest-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.latest-title {
    text-align: center;
    font-size: 32px;
    color:black;
    font-weight: 700;
}

.latest-line {
    width: 60px;
    height: 4px;
    background:orangered;;
    margin: 12px auto 25px;
    border-radius: 10px;
}

.latest-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #4c4c4c;
}

.latest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.latest-img-box {
    overflow: hidden;
    border-radius: 25px;
}

.latest-img {
      width: 84%;
    border-radius: 25px;
    object-fit: cover;
    margin-top:-18px;
}


.latest-heading {
    font-size: 26px;
    font-weight: 700;
    color:#FF3C00;
    line-height: 1.3;
    margin-bottom: 15px;
}

.latest-category {
    font-size: 15px;
    font-weight: 600;
    color: #0a6fb8;
    margin-bottom: 12px;
}

.latest-icon {
    font-size: 16px;
}

.latest-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/*  Responsive for Mobile (360px–320px) */
@media(max-width: 768px) {
    .latest-grid {
        grid-template-columns: 1fr;
    }

    .latest-heading {
        font-size: 22px;
    }

    .latest-subtext {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .latest-title {
        font-size: 26px;
    }

    .latest-heading {
        font-size: 20px;
    }

    .latest-desc {
        font-size: 14px;
    }
}



/*cards for trading*/
    .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.retro-layout .v-height {
    height: 240px;
}
.retro-layout .h-entry {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.retro-layout .gradient {
    position: relative;
}
.retro-layout .h-entry.gradient {
    position: relative;
}
.retro-layout .h-entry.mb-30 {
    margin-bottom: 30px;
}
.retro-layout .h-entry.gradient:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
    background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
.retro-layout .h-entry .featured-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
.retro-layout .text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding: 20px;
    max-width: 350px;
}
.retro-layout .text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}
.retro-layout .h-entry .date {
    font-size: 15px;
}
.retro-layout .text h2, .retro-layout .text .h2 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0;
}
@media (max-width: 767.98px){
.retro-layout .img-5 {
    height: 240px !important;
    margin-bottom: 30px;
    margin-top: 30px;
}
}


        .text-white {
            color: #fff !important;
        }

        .bg-purple {
                background-color: #FF3C00 !important;
        }

        .bg-light-gray {
            background-color: #edf2f8 !important;
        }

        .bg-dark-gray {
            background-color: #49556b !important;
        }

        .bg-dark {
             background-color: #FF3C00 !important;
        }



/*smart invest*/
    .si-smart-investment {
      /*padding: 80px 20px;*/
      background: #f8f9fb;
    }

    .si-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .si-content {
      flex: 1;
    }

    .si-content h2 {
      font-size: 38px;
      margin-bottom: 20px;
      color: #1a1a1a;
    }

    .si-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 20px;
    }

    .si-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .si-content ul li {
      margin-bottom: 10px;
      color: #333;
      position: relative;
      padding-left: 25px;
    }

    .si-content ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #1abc9c;
      font-weight: bold;
    }

    .si-btn {
      display: inline-block;
      padding: 12px 30px;
      background: #FF3C00;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .si-btn:hover {
      background:#FF3C00;
      color:white;
    }

    .si-image {
      flex: 1;
    }

    .si-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .si-container {
        flex-direction: column;
        text-align: center;
      }

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

      .si-content ul li {
        padding-left: 0;
      }

      .si-content ul li::before {
        display: none;
      }
        .second-img{
        order:-1;
    }
    .greem-image{
        margin-top:20px;
    }
     .si-image {
        order: -1; 
    }
    }
    
    
    
    /*New design css code */
    
    
.service-area{
    background:url('../../public/images/feature-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 95px 0 70px;
}
.consen-section-title h2 {
    font-size: 36px;
    margin: 0;
    color: black;
}
.consen-section-title span {
    color: #FF3C00;
}
.consen-button a {
    padding: 10px 14px 15px 42px;
    font-family: 'Fira Sans';
    font-weight: 500;
    color: #fff;
    background: #FF3B00;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid #FF3B00;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/*.dreamit-service-box {*/
/*    padding: 0px 25px 30px;*/
/*    background-color: #fff;*/
/*    border: 1px solid rgba(35, 35, 35, 0.1);*/
/*    text-align: center;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    margin-bottom: 30px;*/
/*}*/
/*.dreamit-service-box:hover {*/
/*    position: absolute;*/
/*    content: "";*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    background:url('../../public/images/box-bg.png');*/
   
/*    transition: .5s;*/
/*    opacity: 0;*/
/*    z-index: -1;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*}*/
.dreamit-service-box {
    padding: 0px 25px 30px;
    background-color: #fff;
    border: 1px solid rgba(35, 35, 35, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    overflow: hidden;
}


.dreamit-service-box::before {
    content: "";
    position: absolute;
    inset: 0; /* top right bottom left = 0 */
    background: url('../../public/images/box-bg.png') center/cover no-repeat;
    opacity: 0;
    transition: .5s ease;
    z-index: -1;
    color:white;
}


.dreamit-service-box:hover::before {
    opacity: 1;
}
.dreamit-service-box:hover .em-service-title h2 {
    color: #ffffff;
}
.dreamit-service-box:hover .service-number h1{
    color:white;
    opacity:1;
}
.em-service-icon {
    /*position: absolute;*/
    top: -42px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    line-height: 76px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(35, 35, 35, 0.1);
    transition: .5s;
}
.em-service-icon img {
    transition: .5s;
}
.em-service-title h2 {
    font-size: 20px;
    font-weight: 500;
    padding: 40px 0 42px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: .5s;
    color:black;
}
.service-number h1 {
    font-size: 55px;
    opacity: 10%;
    position: absolute;
    top: 0;
    left: 10px;
    margin: auto;
}
  
  .em-service-text p {
    transition: .5s;
}
.service-button a {
    padding: 8px 18px 8px 24px;
    font-size: 15px;
    font-family: 'Fira Sans';
    border-radius: 22px;
    background-color: #ffffff;
    color: #232323;
    border: 1px solid rgba(35, 35, 35, 0.1);
    display: inline-block;
    margin-top: 11px;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.about-area {
    background: url('../../public/images/about-1.png');
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0 80px;
    background-size: cover;
    position: relative;
}
.about-area .dreamit-about-thumb {
    margin: 0px 0 0 -128px;
    position: relative;
    z-index: 1;
}
.bounce-animate2 {
    animation-name:float-bob2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
}
.consen-section-title p {
    opacity: 70%;
    padding: 13px 0 0;
}
.white p {
    color: #fff;
}
.style-two.lines .line {
    position: relative;
    width: 103%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 5;
}
.style-two.lines .line::after {
    content: "";
    display: block;
    position: relative;
    height: 1px;
    width: 35px;
    top: 0;
    left: 0px;
    background-color: #FF3B00;
    -webkit-animation: moveLeftBounces-one 35s linear infinite;
    animation: moveLeftBounces-one 32s linear infinite;
    overflow: hidden;
}
.dreamit-icon-title h4 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    padding: 2px 0 10px;
    font-style: italic;
}

.dreamit-icon-list ul li {
    display: inline-block;
    list-style: none;
    padding: 14px 0 0px;
}
.dreamit-icon-list ul li i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #ff3c00;
    display: inline-block;
    color: #fff;
    font-size: 11px;
    margin-right: 10px;
}
.dreamit-icon-list ul li span {
    color: #fff;
}
.about-button a {
    padding: 9px 14px 14px 42px;
    font-family: 'Fira Sans';
    font-weight: 500;
    color: #fff;
    background: #FF3B00;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid #FF3B00;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 38px;
}
.counter-vip {
    padding: 85px 0 0;
}
.couter-top-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0 76px;
}
.counter-title h4 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
}
.counter-title p {
    color: #9D9EA6;
}
.counter-title span {
    font-size: 48px;
    font-weight: 600;
    display: inline-block;
    color: #FF3C00;
}
@media (max-width: 991px) {
    .about-area .dreamit-about-thumb {
        margin-left: 0;
        text-align: center;
    }
}

.consen-section-title h2 {
    font-size: 36px;
    margin: 0;
    color:black;
}
@media (max-width: 768px) {
    .consen-section-title h2 {
        font-size: 22px; 
    }
}

@media (max-width: 768px) {
    .consen-button a {
        padding: 8px 12px 12px 30px; 
        font-size: 14px;
        border-radius: 25px;
        opacity:hidden;
    }
}


@media (max-width: 480px) {
    .consen-button a {
        padding: 7px 10px 10px 26px;
        font-size: 13px;
    }
}
.ceo-cod-area {
    background: url(../../public/images/ceo-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 70px 0 65px;
}
.style-three.lines .line {
    position: relative;
    width: 103%;
    height: 1px;
    background-color: #E0E0E0;
    overflow: hidden;
    z-index: 5;
}
.style-three.lines .line::after {
    content: "";
    display: block;
    position: relative;
    height: 1px;
    width: 35px;
    top: 0;
    left: 0px;
    background-color: #FF3B00;
    -webkit-animation: moveLeftBounces-one 35s linear infinite;
    animation: moveLeftBounces-one 32s linear infinite;
    overflow: hidden;
}
p.about-text {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Fira Sans';
    color: #232323 !important;
    line-height: 32px;
    font-style: italic;
    opacity: inherit;
    margin-bottom: 12px;
}
p.about-text2 {
    opacity: inherit;
    padding: 0;
}
.dreamit-ceo-title h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Fira Sans';
  
    position: relative;
    z-index: 1;
    color:black;
    font-weight:bold;
}
.dreamit-ceo-title span {
    font-size: 15px;
    padding: 7px 0 0;
    display: inline-block;
}
.about-shape-box {
    position: relative;
    z-index: 1;
}
.about-shape-thumb img {
    position: absolute;
    top: -280px;
    left: 26px;
}

.skill-area {
    background: url(../../public/images/skill1-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 100px;
}
.consen-section-title h2 {
    font-size: 36px;
    margin: 0;
}
.consen-section-title span {
    color: #FF3C00;
}
.style-three.lines .line {
    position: relative;
    width: 103%;
    height: 1px;
    background-color: #E0E0E0;
    overflow: hidden;
    z-index: 5;
}
.style-three.lines .line::after {
    content: "";
    display: block;
    position: relative;
    height: 1px;
    width: 35px;
    top: 0;
    left: 0px;
    background-color: #FF3B00;
    -webkit-animation: moveLeftBounces-one 35s linear infinite;
    animation: moveLeftBounces-one 32s linear infinite;
    overflow: hidden;
}
p.slill-text {
    padding: 12px 0 0;
    color: #fff;
    opacity: 67%;
}
.prossess-ber-plugin span {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Fira Sans';
}
.barfiller {
    width: 100%;
    height: 4px;
    position: relative;
    margin-bottom: 25px;
    margin-top: 12px;
    border-radius: 5px;
    filter: drop-shadow(0px 10px 10px rgba(60, 115, 206, 0.2));
    background-color: #fff;
}
.barfiller .tip {
    font-size: 16px;
    left: 0px;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
    top: -39px;
}
.barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
    background: #333;
    z-index: 1;
}
span.fill {
    background: #FF3C00 !important;
    border-radius: 5px;}
    .prossess-ber-plugin span {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Fira Sans';
}
.prossess-ber-plugin span {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Fira Sans';
}
.slill-single-thumb {
    position: relative;
    z-index: 1;
}
.skill-thumb-content {
    position: absolute;
    bottom: 0;
    
    background-color: rgba(255, 60, 0, 0.74556944);
    padding: 26px 35px 28px 30px;
    border-radius: 0px 319px 0 0;
}
.skill-title h3 {
    font-size: 60px;
    color: #fff;
    display: inline-block;
}
.skill-title span {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Fira Sans';
    color: #fff;
}
.skill-title h5 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-top: 6px;
}
.skill-shape img {
    position: absolute;
    left: 240px;
    bottom: 120px;
}
.skill-shape1.bounce-animate2 {
    position: absolute;
    right: -67%;
    top: -45%;
}