 
/* ===============================
 🔥 NAVBAR + MEGA MENU FINAL CSS
=============================== */

/* Base navbar */
.navbar {
    z-index: 10000;
    border-bottom: 4px solid #b21710;
}

.navbar .nav-link {
    color: #0b1a39;
    font-weight: 700;
}

.navbar .nav-link:hover {
    color: #b21710;
}

/* Request Quote Button */
.quote-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    border-radius: 8px;
    padding: 9px 18px;
    border: 0;
    color: #fff !important;
}

.quote-btn:hover {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    box-shadow: none;
}

.quote-btn:active {
    transform: scale(0.97);
}

/* Phone Icon */
.end i {
    font-size: 2.4rem;
    color: #b21710;
    cursor: pointer;
}

.end i:hover {
    color: #ff6666;
}

.end {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}


/* ===============================
   🔥 NAVBAR ALIGNMENT FIX
=============================== */

.navbar .container {
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 0px 35px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-nav {
    align-items: center;
}

.navbar .nav-link {
    display: flex;
    align-items: center;
    height: 48px;
    line-height: 1;
}

.end {
    display: flex;
    align-items: center;
    gap: 18px;
}

.end a {
    font-size: 15px;
}

.end i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    font-weight: 700;
}

.navbar {
    min-height: 80px;
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 50px;
    }

    .quote-btn {
        height: 44px;
        padding: 0 18px;
    }

    .end i {
        height: 44px;
    }
}


/* ===============================
   🔥 SERVICES — MEGA MENU
=============================== */

.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 75% !important;
    width: 100%;
    background: #ffffff;
    padding: 25px 0 30px;
    border: none;
    border-radius: 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.35s ease-in-out;

    z-index: 9999;
    box-shadow: 0 6px 20px rgba(6, 18, 67, 0.12);
}

@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu .mega-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 25px;
}

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

.mega-links li {
    margin-bottom: 8px;
}

.mega-links li a {
    display: inline-block;
    color: #0b1a39;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.mega-links li a:hover {
    color: #b21710;
    transform: translateX(7px);
}


/* ===============================
   📱 MOBILE — MEGA MENU FIX
=============================== */

@media (max-width: 991.98px) {

    .mega-menu {
        position: static !important;
        box-shadow: none !important;
        padding: 10px 0;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        display: none !important;
    }

    .mega-dropdown.show .mega-menu {
        display: block !important;
    }

    .mega-menu .mega-container {
        padding: 10px 15px;
    }

    .mega-menu .col-md-3 {
        width: 100%;
        padding: 10px 0;
    }

    .mega-dropdown .dropdown-toggle::after {
        transform: rotate(90deg);
    }
}


/* ===============================
   🔥 TECHNOLOGIES MENU
=============================== */

.tech-dropdown {
    position: relative;
}

.tech-menu {
    width: 330px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #ffffff;
    border: none;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);

    position: absolute;
    top: 100%;
    left: 80%;

    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);

    transition: all 0.30s ease-in-out;

    z-index: 9999;
    margin-left: 20px;
}

@media (min-width: 992px) {
    .tech-dropdown:hover .tech-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }
}

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

.tech-links li {
    margin-bottom: 10px;
    margin-left: 20px;
}

.tech-links li a {
    text-decoration: none;
    color: #0b1a39;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.tech-links li a:hover {
    color: #b21710;
    transform: translateX(6px);
}


/* ===============================
   📱 MOBILE — TECHNOLOGIES FIX
=============================== */

@media (max-width: 991px) {
    .tech-menu {
        width: 100% !important;
        position: static !important;
        padding-left: 10px;
        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        display: none !important;
    }

    .tech-dropdown.show .tech-menu {
        display: block !important;
    }
}

 .mega-menu {
    display: block !important;
}
.tech-menu {
    display: block !important;
}


   
   /* Hero section custom styling */
        .hero-section {
            padding: 40px 0;
            background: #ffffff;
        }
        .hero-title {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.1;
            color: #000000;
        }
        .hero-title span {
            color: #b21710;
        }
        .hero-btn {
            margin-top: 25px;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 800;
            
            background:  linear-gradient(45deg, #b21710, #ff4d6b);
        }
        .hero-img {
            width: 100%;
            border-radius: 20px;
            margin-top: 50px;
            animation: none;
        }
        @keyframes float {
            0% {transform: translateY(0);}
            50% {transform: translateY(-10px);}
            100% {transform: translateY(0);}
        }
        
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.4s ease forwards;
}

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

/* Lock body when menu is open */
body.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
}

/* Make navbar fullscreen so only it scrolls */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh !important;
        background: #ffffff;
        padding: 80px 20px 20px;
        overflow-y: auto !important;  /* Menu scrolls */
        z-index: 99999;
    }
}



@media (max-width: 991px) {
    .navbar-nav .nav-item {
        margin-bottom: 18px;  /* spacing between items */
    }

    .navbar-nav .dropdown-toggle::after {
        font-size: 14px;
        margin-left: 8px;
        vertical-align: middle;
    }
}
@media (max-width: 991px) {
    .dropdown-toggle::after {
        float: right;
        transform: rotate(90deg);
        margin-top: 6px;
    }
}

/* Hide close button on desktop */
.mobile-close-btn {
    display: none !important;
}

/* Show close button only on mobile */
@media (max-width: 991px) {
    .mobile-close-btn {
        display: block !important;
        background: #fff;
        border: none;
        font-size: 24px;
        padding: 6px 12px;
        border-radius: 6px;
        position: absolute;
        right: 20px;
        top: 15px;
        z-index: 20000;
    }
}
/* nav end */

/*hero section  */

.about-stats-section {
    background: radial-gradient(
        ellipse at top center,
        rgba(178, 23, 16, 0.10),
        rgba(255, 255, 255, 0) 70%
    );
}



.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
}

.about-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.about-btn:hover {
    background: #92150d;
    transform: scale(1.05);
}

.stat-box {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 30px;
    font-weight: 800;
    color: #b21710;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

.stat-icon {
    font-size: 40px;
    color: #b21710;
    margin-bottom: 15px;
}


.stats-section {
    background: #fbfcff;
}

/* CARD DESIGN */
.stat-card {
    background: linear-gradient(145deg, #ffffff, #f6f6f6);
    border-radius: 25px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 
        6px 6px 20px rgba(0, 0, 0, 0.08),
        -6px -6px 20px rgba(255, 255, 255, 0.6);
    border: 1px solid #b21710;
    transition: 0.3s ease;
}

/* ICON */
.stat-card i {
    font-size: 40px;
    color: #b21710;
    margin-bottom: 15px;
}

/* NUMBER */
.stat-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #b21710;
    margin: 0;
}

/* LABEL */
.stat-card p {
    margin-top: 8px;
    font-size: 15px;
    padding: 10px 12px;
    font-weight: 500;
    border-radius:150px;
    color: #555;
     box-shadow: 
        2px 10px 25px rgba(178, 23, 16, 0.15),
        -3px -3px 20px rgba(255, 255, 255, 0.15);
}

/* HOVER EFFECT */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        2px 10px 25px rgba(178, 23, 16, 0.25),
        -3px -3px 20px rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .stat-card {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .stat-card i {
        font-size: 30px;
    }
}



/* section 2 */
/* ===============================
   🔥 META WHATSAPP BSP SECTION
=============================== */

.bsp-section {
    padding: 70px 0;
    background: #ffffff;
}

.bsp-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0b1a39;
    line-height: 1.2;
    margin-bottom: 20px;
}
.bsp-content span:hover{
    color: #b21710;
    cursor: pointer;
}

 

.bsp-content p {
    font-size: 16px;
    line-height: 1.7;
    /*color: #555;*/
    margin-bottom: 18px;
}

.bsp-highlight {
    font-size: 16px;
    font-weight: 700;
    color: #b21710;
}

.bsp-highlight strong {
    color: #b21710;
    font-weight: 800;
}

.bsp-image img {
    max-width: 90%;
    border-radius: 20px;
}



/* ===============================
   📱 MOBILE NAVBAR — CLEAN FIX
=============================== */

@media (max-width: 991px) {

  /* reset weird fullscreen centering */
  .navbar-collapse {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    background: #ffffff;
    padding: 80px 25px 25px;
    overflow-y: auto !important;
    z-index: 99999;
    display: block;
  }

  /* vertical stack like original site */
  .navbar-nav {
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 18px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: #0b1a39;
    padding: 6px 0;
  }

  /* arrows on right side */
  .navbar-nav .dropdown-toggle::after {
    float: right;
    margin-top: 6px;
    transform: rotate(90deg);
  }

  /* SERVICES mega menu mobile */
  /*.mega-menu {*/
  /*  position: static !important;*/
  /*  box-shadow: none !important;*/
  /*  padding: 8px 0 !important;*/
  /*  display: none !important;*/
  /*}*/


.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 75% !important;
    width: 100%;
    background: #ffffff;
    padding: 25px 0 30px;
    border: none;
    border-radius: 0;

    /* ----- ANIMATION BASE SETUP ----- */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease-in-out;

    z-index: 9999;
    box-shadow: 0 6px 20px rgba(6, 18, 67, 0.12);
}


  .mega-dropdown.show .mega-menu {
    display: block !important;
  }

  .mega-menu .mega-container {
    padding: 8px 0;
  }

  .mega-menu .col-md-3 {
    width: 100% !important;
    padding: 8px 0;
  }

  .mega-links li a {
    font-size: 14px;
    padding-left: 10px;
  }

  /* TECHNOLOGIES mobile */
  .tech-menu {
    width: 100% !important;
    position: static !important;
    padding: 8px 0 !important;
    box-shadow: none !important;
    display: none;
  }

  .tech-dropdown.show .tech-menu {
    display: block !important;
  }

  .tech-links li {
    margin-left: 10px;
  }

  .tech-links li a {
    font-size: 14px;
  }

  /* mobile top buttons area */
  .end {
    margin-top: 25px;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }

  .end i {
    font-size: 26px;
  }

  .quote-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* close button fix */
  .mobile-close-btn {
    display: block !important;
    background: #fff;
    border: none;
    font-size: 26px;
    padding: 6px 12px;
    border-radius: 6px;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 20000;
  }
}




/* ===============================
   📱 MOBILE CLOSE BUTTON FIX
=============================== */

@media (max-width: 991px) {

  /* force show */
  .mobile-close-btn {
    display: block !important;
    position: fixed !important;
    top: 18px;
    right: 18px;
    z-index: 999999;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    padding: 6px 12px;
    color: #0b1a39;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .mobile-close-btn:hover {
    background: #f5f5f5;
  }

  /* make sure navbar-collapse doesn't cover it */
  .navbar-collapse {
    padding-top: 90px !important;
  }
}






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

@media (max-width: 991px) {
    .bsp-section {
        padding: 50px 0;
    }

    .bsp-content h2 {
        font-size: 28px;
        text-align: center;
    }

    .bsp-content p,
    .bsp-highlight {
        text-align: center;
    }

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

@media (max-width: 575px) {
    .bsp-content h2 {
        font-size: 24px;
    }

    .bsp-content p {
        font-size: 15px;
    }
}


/* service  */
.services-section {
    background: #f8fbff;
}

.service-sub {
    color: #b21710;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
}

.service-title {
    font-size: 36px;
    font-weight: 800;
     color: #b21710;
}

.service-desc {
    color: #111;
    font-size: 16px;
}

.service-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #101010;
}

.tags {
    color: #b21710;
    font-size: 12px;
    font-weight:bold;
    letter-spacing: 1px;
}

.service-icons img {
    width: 40px;
    margin-right: 8px;
}

.read-more {
    color: #b21710;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* RESPONSIVE FIXES */
@media (max-width: 767px) {
    .service-card {
        padding: 20px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .service-icons img {
        width: 32px;
    }

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

/* service  */

/* about section */
.why-section {
    background: #f8fbff;
}

.why-sub {
    color: #b21710;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 17px;
}

.why-title {
    font-size: 32px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.3;
}

.why-title span {
    color: #053d7a;
}

.why-text {
    margin-top: 15px;
    color: #555;
    font-size: 16px;
}

.why-list .why-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.why-item i {
    font-size: 35px;
    color: #b21710;
}

.why-item h5 {
    margin: 0;
    font-weight: 700;
    color: #b21710;
}

.why-item p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

/* RIGHT SIDE IMAGE BOX */
.why-image-wrapper {
    /* border: 3px solid #b21710; */
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    /* background: white; */
}
.why-image-wrapper img{
    border-bottom-left-radius: 20%;
    border-top-right-radius: 20%;
    /* border-top-left-radius: 5%; */
    /* border-bottom-right-radius: 10%; */
    padding-top: 10px;
    height: 350px;
    width: 550px;
    object-fit: cover;
}

.why-small-text {
    color: #555;
    font-size: 15px;
}

.why-bottom-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 22px;
    color: #b21710;
}

.why-btn {
    border: 2px solid #b21710;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: #b21710;
    transition: 0.3s;

}

.why-btn:hover {
    background: #b21710;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .why-title {
        font-size: 24px;
    }

    .why-bottom-title {
        font-size: 18px;
    }

    .why-item i {
        font-size: 28px;
    }

    .why-image-wrapper {
        width: 90%;
    }
}

/* about section */

/* client section */
.clients-section {
        background: radial-gradient(
        
        rgba(198, 23, 16, 0.3),
        rgba(255, 255, 255, 0)  
    );
    padding: 60px 0;
}

.client-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    color: #b21710;
    font-weight: 750;
}

.client-title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
}

.client-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.client-box:hover {
    transform: translateY(-5px);
}

.client-box img {
    max-width: 100%;
    max-height: 125px;
    object-fit: cover;
}

/* RESPONSIVE FIXES */
@media (max-width: 767px) {
    .client-title {
        font-size: 24px;
    }

    .client-box {
        height: 85px;
        padding: 12px;
    }
}

/* client section */


/* relation  */
.ranked-section {
    background: #ffffff;
    padding: 70px 0;
}

.ranked-sub {
    color: #b21710;
    font-weight: 750;
    letter-spacing: 2px;
    font-size: 17px;
}

.ranked-title {
    font-size: 36px;
    font-weight: 800;
    color: #040404;
    line-height: 1.3;
}

.ranked-logo {
    width: 100%;
    height: 300px;
    max-height: 80px;
    object-fit: contain;
    transition: 0.3s;
}

.ranked-logo:hover {
    transform: scale(1.05);
}

.ranked-line {
    margin-top: 40px;
    font-size: 20px;
    color: #333;
}

.ranked-line strong {
    color: #b21710;
    font-weight: 800;
}

/* Gradient CTA Button */
.ranked-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 40px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    background: #b21710;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.ranked-btn:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

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

    .ranked-line {
        font-size: 16px;
    }

    .ranked-btn {
        padding: 10px 30px;
    }

    .ranked-logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {

    .ranked-title {
        font-size: 24px;
    }

    .ranked-logo {
        max-height: 50px;
    }
}

/* relation  */


/* industries */
 .industries-section {
    background: linear-gradient(180deg, #fdeeee, #fdf3ff);
    padding: 80px 0;
}

.ind-subtitle {
    color: #b21710;
    font-weight: 750;
    font-size: 17px;
    letter-spacing: 2px;
}

.ind-title {
    font-size: 36px;
    font-weight: 800;
    color: #050505;
}

.ind-desc {
    max-width: 750px;
    margin: auto;
    color: #474756;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.industry-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

.industry-card img {
    width: 55px;
    margin-bottom: 10px;
}

.industry-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111a42;
}

/* Hover Effect */
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 22px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .ind-title {
        font-size: 28px;
    }
    .industry-card img {
        width: 45px;
    }
    .industry-card {
        padding: 18px;
    }
}

/* industries */


/* testimonial */
.testimonial-section {
    background: #f7fbff;
    padding: 70px 0;
}

.test-sub {
    color:#b21710;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.test-title {
    font-size: 36px;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.3;
}

.test-logos img {
    width: 110px;
    margin-right: 15px;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

.quote-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.client-info .client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.client-name {
    font-weight: 700;
}

.client-role {
    font-size: 14px;
    color: #777;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 86px;
    color: #b21710;
    opacity: 0.8;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #b21710;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #b21710;
    opacity: 1;
}

/* Responsive */
@media(max-width: 768px){
    .test-title { font-size: 28px; }
    .testimonial-card { padding: 22px; }
    .client-img { width: 50px; height: 50px; }
}

/* testimonial */

/* cta  */
.cta-section {
    background-image: url('images/services/transactional-whatsapp.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    color: #fff;
    z-index: 1;overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);   
    z-index: -1;
}

/* Top small title */
.cta-sub {
    color: #b21710;
    font-size: 17px;
    letter-spacing: 2px;
    font-weight: 750;
}

/* Main big heading */
.cta-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

/* Gradient circular button */
.cta-btn {
    display: inline-block;
    background: #b21710;
    padding: 14px 50px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

/* Contact line */
.cta-contact {
    font-size: 18px;
    margin-top: 25px;
    /*color: ;*/
}

.cta-contact i {
    margin: 0 8px;
    color: #b21710;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border: 4px solid #57d7ac;
    border-radius: 50px;
}

.shape-left {
    width: 120px;
    height: 120px;
    right: -60px;
    top:0px;
    border-color: #FFD369;
    border-radius: 200px;
}
.shape-right{
      width: 120px;
    height: 120px;
    left: -60px;
    top:0px;
    border-color: #b21710;
    border-radius: 200px;
    z-index: -999;
}

.shape-bottom-left {
    width: 130px;
    height: 130px;
    left: -60px;
    bottom: 0px;
    border-color: #FFD369;
    border-radius: 200px;
}

.shape-bottom-right {
    width: 130px;
    height: 130px;
    right: -60px;
    bottom: 0px;
    border-color: #57d7ac;
    border-radius: 200px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-btn {
        padding: 12px 35px;
        font-size: 15px;
    }

    .cta-contact {
        font-size: 16px;
    }

    .shape-left, .shape-bottom-left, .shape-bottom-right {
        display: none; /* Hide shapes on small screen */
    }
}

/* cta  */


/* footer and newsletter  */
/* NEWSLETTER SECTION */
.newsletter-section {
    background: linear-gradient(180deg, #fdeeee, #fdf6ff);
    padding: 70px 0;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 800;
    color: #112244;
}

.newsletter-text {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

.newsletter-box {
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

.newsletter-input {
    width: 70%;
    border: none;
    padding: 14px 20px;
    outline: none;
    font-size: 15px;
}

.newsletter-btn {
    width: 30%;
    background: #b21710;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
    outline: none;
}

/* FOOTER AREA */
.footer-section {
    background: #ffffff;
     /*border-bottom: 2px solid red;*/
}

.footer-about {
    color: #555;
    font-size: 15px;
}

.become-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    border-radius: 40px;
    background:#b21710;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 8px;
    text-align: left;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #b21710;
}

/* Blog box */
.footer-blog {
    background: #ffffff;
}

.blog-thumb {
    width: 60px;
    border-radius: 8px;
}

.blog-title {
    font-size: 15px;
    margin: 0;
    font-weight: 700;
}

/* ICONS */
.footer-section i {
    color: #b21710;
    margin-right: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .newsletter-title {
        font-size: 28px;
    }
    .newsletter-box {
        margin-top: 20px;
    }
    .newsletter-input {
        width: 60%;
    }
    .newsletter-btn {
        width: 40%;
        font-size: 14px;
    }
    .footer-section {
        text-align: center;
    }
    .footer-blog {
        justify-content: center;
    }
}



.awards-footer-section {
    padding: 60px 0 40px;
     
    width: 100vw;;
}


.top-foot{
    background: background: #f2f2f2;;
}
.awards-text {
    /*border-top: 2px solid red;*/
    max-width: 700px;
    margin: auto;
    text-align: left;
    /*background: #f2f2f2;*/
     width: 100%;
     
}

.awards-text h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1a3c;
    text-align: center;
}

.awards-text p {
    margin-top: 15px;
    font-size: 18px;
text-align: center;
    color: #555;
    
    line-height: 1.7;
}

.awards-logos {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}

.award-item {
    /*background: #f7fafc;*/
    padding: 15px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
      
}

.award-item img {
    width: 130px;
    height: auto;
    border-radius: 20px;
}

.awards-divider {
    width: 100vw;
    margin: 40px 0 30px;
    /*border: none;*/
     border-bottom: 2px solid red;
}

.footer-bottom {
    height: 5vh;
    text-align: center;
    background:#ffffff ;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.social-icons a {
    margin: 0 5px;
    font-size: 22px;
    /*color: #b21710;*/
    color: grey;
    transition: 0.2s;
}

 
.social-icons a:hover {
    /*color: #1a73e8;*/
    color: #b21710;
}

.copy-text {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}


/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
    .awards-text {
        text-align: center;
    }

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

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

    .award-item img {
        width: 110px;
    }

    .social-icons a {
        font-size: 20px;
    }
}

/* footer and newsletter  */





/* about us css  */
.what-we-do-section {
    padding: 50px 20px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    color: #1a1a1a;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0a1a3c;
}

.what-we-do-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.custom-list {
    margin-left: 20px;
}

.custom-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.custom-list li strong {
    color: #0a1a3c;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }

    .what-we-do-section p,
    .custom-list li {
        font-size: 15px;
    }

    .custom-list {
        margin-left: 10px;
    }
}


/* about banner  */
.about-banner {
    height: 40vh;
    width: 100%;
    background: url('images/about-banner.png') center /cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for readability */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Text styling */
.about-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-banner {
        height: 35vh;
    }

    .about-banner-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 30vh;
    }

    .about-banner-content h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }
}

/* Breadcrumb */
.breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #ffcccb;
}

.breadcrumb span {
    color: #fff;
    font-size: 18px;
}

.breadcrumb p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .breadcrumb a, .breadcrumb p, .breadcrumb span {
        font-size: 16px;
    }
}

/* about banner  */
/* about us css  */



/* contact page css  */
/* MAIN CONTAINER */
.contact-form-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #fff, #faf5ff);
    font-family: "Poppins", sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* HEADINGS */
.contact-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #0e1b4d;
}

.contact-subtitle {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 35px;
    font-size: 16px;
    color: #555;
}

/* FORM GRID */
.contact-form .row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.contact-form .row .col {
    width: 50%;
}

/* LABEL */
.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 6px;
}

.contact-form label i {
    color: #b21710;   /* theme red */
    margin-right: 5px;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #b21710;
    box-shadow: 0 0 6px rgba(178, 23, 16, 0.2);
}

.full textarea {
    resize: none;
}

/* TERMS */
.terms-row {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}
.terms-row .check{
    width: 1%;
}

.terms-row a {
    color: #b21710;
    font-weight: 600;
    text-decoration: none;
}

/* SUBMIT BUTTON */
.submit-btn {
    background: #b21710;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 8px 18px rgba(255,0,0,0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        padding: 25px;
    }

    .contact-form .row {
        flex-direction: column;
    }

    .contact-form .row .col {
        width: 100%;
    }

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




 
.contact-banner {
    height: 40vh;
    width: 100%;
    background: url('images/contact-banner') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for readability */
.contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Text styling */
.contact-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-banner {
        height: 35vh;
    }

    .contact-banner-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 30vh;
    }

    .contact-banner-content h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }
}


/* contact page css  */


/* paynow page  */
.payment-section {
    background: linear-gradient(to bottom right, #ffffff, #f3f6ff);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.payment-container {
    max-width: 600px;
    width: 100%;
    background: rgba(255,255,255,0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}

/* Title */
.payment-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #11183f;
}

.payment-subtitle {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 25px;
    color: #777;
    font-size: 15px;
}

.payment-form {
    width: 100%;
}

/* Input Box */
.input-box {
    margin-bottom: 18px;
}

.input-box label {
    font-weight: 600;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.input-box label i {
    color: #b21710;
    margin-right: 6px;
}

/* Inputs */
.payment-form input,
.payment-form select,
.payment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.payment-form input:focus,
.payment-form select:focus,
.payment-form textarea:focus {
    border-color: #b21710;
    box-shadow: 0 0 8px rgba(178,23,16,0.25);
}

/* Button */
.pay-btn {
    width: 100%;
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 7px 18px rgba(255,0,0,0.3);
}

.pay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,0,0,0.4);
}

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

    .payment-container {
        padding: 25px;
    }

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

    .pay-btn {
        font-size: 16px;
        padding: 14px;
    }
}



/* pay banner */
.pay-banner {
    height: 40vh;
    width: 100%;
    background: url('images/pay-now-banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for readability */
.pay-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Text styling */
.pay-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pay-banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .pay-banner {
        height: 35vh;
    }

    .pay-banner-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .pay-banner {
        height: 30vh;
    }

    .pay-banner-content h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }
}
/* pay banner */

/* paynow page  */


/* blog css */
/* blog-banner  */

.blog-banner {
    height: 40vh;
     
    width: 100%;
    background: url('images/blog-banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Text styling */
.blog-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .blog-banner {
        height: 35vh;
    }

    .blog-banner-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .blog-banner {
        height: 30vh;
    }

    .blog-banner-content h1 {
        font-size: 30px;
        letter-spacing: 1px;
    }
}
/* blog-banner  */
/* blog css */


/* services page css */
 

/* ================= BANNER ================= */
.service-banner {
    display: flex;
    height: 49vh;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    background: url('images/services/bulk-sms.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     padding-left: 50px;
    
}

.service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.banner-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.banner-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.banner-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.banner-img img {
    width: 320px;
}

/* ===============================
   📱 BANNER MOBILE RESPONSIVE
=============================== */

@media (max-width: 991px) {

  .banner-content {
    max-width: 100%;
    text-align: left;
    padding: 0 15px;
     margin-left: -50px;
    margin-top: -10px;
  }

  .service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .banner-content h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .banner-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .banner-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .banner-img {
    text-align: center;
    margin-top: 25px;
  }

  .banner-img img {
    width: 260px;
    max-width: 100%;
  }
}


 






/* ================= MAIN SECTION ================= */
.service-page {
    display: flex;
    gap: 25px;
    padding: 40px 5%;
}

/* LEFT CONTENT */
.content-left {
    width: 65%;
}

.content-left h2 {
    font-size: 26px;
    font-weight: 700;
    color: #b21710;
}

.content-left h3 {
    margin-top: 25px;
    font-size: 22px;
    font-weight: 700;
    color: #b21710;
}

.content-left p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* ================= SIDEBAR ================= */
.sidebar {
    width: 30%;
}

.sidebar-box {
    padding: 20px;
    border: 2px solid #b21710;
    border-radius: 6px;
    margin-bottom: 25px;
    background: #fff;
}

.sidebar-box h4 {
    margin-bottom: 15px;
    font-size: 18px;
    
}

.sidebar-box ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-box ul li {
    padding: 7px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.sidebar-box ul li:last-child {
    border-bottom: none;
}

.sidebar-box p {
    margin: 10px 0;
    font-size: 14px;
    color: #444;
}

.sidebar-box i {
    /* color: #0b4dbb; */
    color: #b21710;
    margin-right: 8px;
}
.sidebar-box ul li a  {
    text-decoration: none;
    color: #000000;
}
.sidebar-box p a  {
    text-decoration: none;
    color: #000000;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {
    .service-banner {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .banner-content, .banner-img {
        max-width: 100%;
    }

    .banner-img img {
        margin-top: 20px;
        width: 250px;
    }

    .service-page {
        flex-direction: column;
    }

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

}

/* services page css */



/* ivr service  */
.ivr-banner {
    display: flex;
    height: 49vh;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    background: url('images/services/ivr.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
    padding-left: 50px;
    
}

.ivr-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}
 
 
.ivr-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.ivr-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.ivr-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.ivr-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.ivr-img img {
    width: 320px;
}
@media (max-width: 991px) {

  .ivr-content {
    max-width: 100%;
    text-align: left;
    padding: 0 15px;
     margin-left: -50px;
    margin-top: -50px;
  }

  .ivr-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .ivr-content h1 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .ivr-content p {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .ivr-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .ivr-img {
    text-align: center;
    margin-top: 25px;
  }

  .ivr-img img {
    width: 260px;
    max-width: 100%;
  }
}






/* ivr service  */

/* smpp css */
.smpp-banner {
    display: flex;
    height: 57vh;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    padding-left: 50px;
    
    background: url('images/services/smpp-service.png') no-repeat center;
     background-size: 100% 97%; 
    border-bottom: 4px solid #0b4dbb;
    position: relative;
    background-position: center 70%;
}


.smpp-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.smpp-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.smpp-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.smpp-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.smpp-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.smpp-img img {
    width: 320px;
}
@media (max-width: 991px) {

    .smpp-banner{
         background-size: 150% 100%; 
    border-bottom: 4px solid #0b4dbb;
    position: relative;
    background-position: center right;
    }

  .smpp-content {
    max-width: 100%;
    text-align: left;
    padding: 0 15px;
      margin-left: -50px;
    margin-top: -50px;
  }

  .smpp-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .smpp-content h1 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .smpp-content p {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .smpp-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .smpp-img {
    text-align: center;
    margin-top: 25px;
  }

  .smpp-img img {
    width: 260px;
    max-width: 100%;
  }
}

.list l{  
 list-style: decimal-leading-zero;
}
/* smpp css */

/* voice call css */
.voice-banner {
    display: flex;
    height: 49vh;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    padding-left: 50px;
    background: url('images/services/voice-call.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
    background-position: center  ; 
}

.voice-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.voice-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.voice-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.voice-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.voice-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.voice-img img {
    width: 320px;
}
@media (max-width: 991px) {

  .voice-content {
    max-width: 100%;
    text-align: left;
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .voice-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .voice-content h1 {
    font-size: 33px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .voice-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .voice-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .voice-img {
    text-align: center;
    margin-top: 25px;
  }

  .voice-img img {
    width: 260px;
    max-width: 100%;
  }
}

.list l{  
 list-style: decimal-leading-zero;
}
/* voice call css */


/* promotional banner  */
.promo-banner {
    display: flex;
    height: 49vh;
    justify-content: space-between;
    align-items: start;
    padding: 90px 5%;
    background: url('images/services/Promotional.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
    top: 20%;
    padding-left: 50px;
}

.promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.promo-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.promo-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.promo-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.promo-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.promo-img img {
    width: 320px;
}

@media (max-width: 991px) {

  .promo-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .promo-content h1 {
    font-size: 33px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .promo-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .promo-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .promo-img {
    text-align: center;
    margin-top: 25px;
  }

  .promo-img img {
    width: 260px;
    max-width: 100%;
  }
}


/* promotional banner  */

/* transaction banner  */
.transaction-banner {
 display: flex;
    height: 60vh;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    padding-left: 50px;
    background: url('images/services/transactional-sms.png') no-repeat center;
    background-size: 100% 99.9%;   /* ⬅️ sirf upar-niche zoom out */
    border-bottom: 4px solid #0b4dbb;
    position: relative;
    background-position: center 70%;
}

.transaction-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.transaction-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.transaction-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.transaction-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.transaction-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.transaction-img img {
    width: 320px;
}



@media (max-width: 991px) {

    .transaction-banner {
   
    background-size: cover;   /* ⬅️ sirf upar-niche zoom out */
    
     
    background-position: center center;
}

  .transaction-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .transaction-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .transaction-content h1 {
    font-size: 33px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .transaction-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .transaction-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .transaction-img {
    text-align: center;
    margin-top: 25px;
  }

  .transaction-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* transaction banner  */


/* lead banner  */
.lead-banner {
    display: flex;
    height: 49vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/lead-generation.jpeg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 20%;
    padding-left: 50px;
    top: 30%;
}

.lead-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.lead-content {
    max-width: 50%;
      position: relative;
    z-index: 2;
}

.lead-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.lead-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.lead-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.lead-img img {
    width: 320px;
}



@media (max-width: 991px) {

   .lead-banner {
    
   
   
     background-position: 73% bottom;
    padding-left: 50px;
    top: 30%;
    
}

  .lead-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .lead-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .lead-content h1 {
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .lead-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .lead-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .lead-img {
    text-align: center;
    margin-top: 25px;
  }

  .lead-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* lead banner  */



/* tw banner  */
.tws-banner {
    display: flex;
    height: 55vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/tws.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 35%;
    padding-left: 50px;
    top: 30%;
}

.tws-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.tws-content {
    max-width: 50%;
      position: relative;
      margin-top:4.5rem;
    z-index: 2;
}

.tws-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.tws-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.tws-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.tws-img img {
    width: 320px;
}




@media (max-width: 991px) {



    .tws-banner {
    display: flex;
    height: 45vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/tws.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .tws-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .tws-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .tws-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .tws-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .tws-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .tws-img {
    text-align: center;
    margin-top: 25px;
  }

  .tws-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* tw banner  */
/* tes banner  */
.tes-banner {
    display: flex;
    height: 50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/tes.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 7%;
    padding-left: 50px;
    top: 30%;
}

.tes-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.tes-content {
    max-width: 50%;
      position: relative;
      /* margin-top:0rem; */
    z-index: 2;
}

.tes-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.tes-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.tes-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.tes-img img {
    width: 320px;
}



@media (max-width: 991px) {



    .tes-banner {
  
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .tes-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .tes-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .tes-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .tes-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .tes-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .tes-img {
    text-align: center;
    margin-top: 25px;
  }

  .tes-img img {
    width: 260px;
    max-width: 100%;
  }
}



/* tes banner  */

/* landing banner  */
.landing-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/landing-page.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 40%;
    padding-left: 50px;
    top: 30%;
}

.landing-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.landing-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.landing-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.landing-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.landing-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.landing-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .landing-banner {
    height: 55vh;
    
     background-position: 45% 65%;
    padding-left: 50px;
    top: 30%;
}
    

  .landing-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .landing-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.69);
}

  .landing-content h1 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 0rem;
  }

  .landing-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 0.7rem;
  }

  .landing-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .landing-img {
    text-align: center;
    margin-top: 25px;
  }

  .landing-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* landing banner  */
/* digi banner  */
.digi-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/digital-marketing.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 8%;
    padding-left: 50px;
    top: 30%;
}

.digi-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.digi-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.digi-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.digi-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.digi-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.digi-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .digi-banner {
     
    height: 45vh;
    
    
     position: relative;
     background-position: 100%;
    padding-left: 50px;
    top: 30%;
}
    

  .digi-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .digi-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .digi-content h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .digi-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .digi-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .digi-img {
    text-align: center;
    margin-top: 25px;
  }

  .digi-img img {
    width: 260px;
    max-width: 100%;
  }
}


/* digi banner  */

/* seo banner  */
.seo-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/seo-banner.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 45%;
    padding-left: 50px;
    top: 30%;
}

.seo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.seo-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.seo-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.seo-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.seo-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.seo-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .seo-banner {
    
    height: 50vh;
    
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 70% 85%;
    padding-left: 50px;
    top: 30%;
}
    

  .seo-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .seo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .seo-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .seo-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .seo-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .seo-img {
    text-align: center;
    margin-top: 25px;
  }

  .seo-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* seo banner  */

/* smo banner  */
.smo-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    background: url('images/services/smo.jpg') no-repeat center/cover;

    object-fit: cover;
    padding: 90px 5%;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 80%;
    padding-left: 50px;
    top: 30%;
}

.smo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.smo-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.smo-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.smo-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.smo-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.smo-img img {
    width: 320px;
}


@media (max-width: 991px) {

    .smo-banner {
    
   
    background: url('images/services/smo.jpg') no-repeat center/cover;

    object-fit: cover;
    padding: 90px 5%;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 80%;
    padding-left: 50px;
    top: 30%;
}


    .smo-banner {
    display: flex;
    height: 45vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .smo-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .smo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .smo-content h1 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .smo-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .smo-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .smo-img {
    text-align: center;
    margin-top: 25px;
  }

  .smo-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* smo banner  */

/* vue banner  */
.vue-banner {
    display: flex;
    height:50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/vue-transition-banner.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 58%;
    padding-left: 50px;
    top: 30%;
}

.vue-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.vue-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.vue-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.vue-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.vue-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.vue-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .vue-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .vue-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .vue-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .vue-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .vue-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .vue-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .vue-img {
    text-align: center;
    margin-top: 25px;
  }

  .vue-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* vue banner  */

/* node banner  */
.node-banner {
    display: flex;
    height:50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/NodeJS-Banner.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 58%;
    padding-left: 50px;
    top: 30%;
}

.node-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.node-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.node-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.node-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.node-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.node-img img {
    width: 320px;
}




@media (max-width: 991px) {



    .node-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 86% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .node-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .node-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .node-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .node-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .node-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .node-img {
    text-align: center;
    margin-top: 25px;
  }

  .node-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* node banner  */

/* next banner  */
.next-banner {
    display: flex;
        height:50vh;

    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/next-js.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 80%;
    padding-left: 50px;
    top: 30%;
}

.next-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.next-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.next-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.next-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.next-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.next-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .next-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 68% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .next-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .next-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .next-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .next-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .next-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .next-img {
    text-align: center;
    margin-top: 25px;
  }

  .next-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* tail banner  */

/* java banner  */
.java-banner {
    display: flex;
    height:50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/JAVA-DEV.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 58%;
    padding-left: 50px;
    top: 30%;
}

.java-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.java-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.java-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.java-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.java-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.java-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .java-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 84% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .java-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .java-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .java-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .java-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .java-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .java-img {
    text-align: center;
    margin-top: 25px;
  }

  .java-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* java banner  */



/* py banner  */
.py-banner {
    display: flex;
    height:50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/python-banner.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 58%;
    padding-left: 50px;
    top: 30%;
}

.py-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.py-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.py-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.py-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.py-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.py-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .py-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .py-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .py-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .py-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .py-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .py-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .py-img {
    text-align: center;
    margin-top: 25px;
  }

  .py-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* py banner  */

/* lara banner  */
.lara-banner {
    display: flex;
    height:50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/laravel-dev.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 30%;
    padding-left: 50px;
    top: 30%;
}

.lara-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.lara-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.lara-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.lara-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.lara-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.lara-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .lara-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 10% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .lara-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .lara-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .lara-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .lara-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .lara-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .lara-img {
    text-align: center;
    margin-top: 25px;
  }

  .lara-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* lara banner  */

/* tail banner  */
.tail-banner {
    display: flex;
    height:50vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/Tailwind-banner.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 58%;
    padding-left: 50px;
    top: 30%;
}

.tail-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.tail-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.tail-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.tail-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.tail-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.tail-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .tail-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 90% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .tail-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .tail-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .tail-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .tail-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .tail-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .tail-img {
    text-align: center;
    margin-top: 25px;
  }

  .tail-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* next banner  */




/* web banner  */
.web-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/Web-Development-Banner.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 35%;
    padding-left: 50px;
    top: 30%;
}

.web-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.web-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.web-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.web-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.web-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.web-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .web-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .web-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .web-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .web-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .web-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .web-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .web-img {
    text-align: center;
    margin-top: 25px;
  }

  .web-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* web banner  */

/* was banner  */
.was-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/tws.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: top 10%;
    padding-left: 50px;
    top: 30%;
}

.was-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.was-content {
    max-width: 50%;
      position: relative;
      margin-top:2.5rem;
    z-index: 2;
}

.was-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.was-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.was-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.was-img img {
    width: 320px;
}

@media (max-width: 991px) {


    .was-banner {
    display: flex;
    height:45vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/tws.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: top 10%;
    padding-left: 50px;
    top: 30%;
}
    

  .was-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .was-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .was-content h1 {
    font-size: 33px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .was-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .was-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .was-img {
    text-align: center;
    margin-top: 25px;
  }

  .was-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* was banner  */
/* ppc banner  */
.ppc-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/ppc.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 80%;
    padding-left: 50px;
    top: 30%;
}

.ppc-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}
 
 
.ppc-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.ppc-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.ppc-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.ppc-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.ppc-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .ppc-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .ppc-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .ppc-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .ppc-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .ppc-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .ppc-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .ppc-img {
    text-align: center;
    margin-top: 25px;
  }

  .ppc-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* ppc banner  */

/* php banner  */
.php-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/PHP-dev.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 65%;

    top: 30%;
}

.php-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.php-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.php-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.php-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.php-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.php-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .php-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 30% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .php-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .php-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .php-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0rem;
  }

  .php-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .php-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .php-img {
    text-align: center;
    margin-top: 25px;
  }

  .php-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* php banner  */

/* laravel banner  */
.laravel-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/laravel-dev.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 25%;

    top: 30%;
}

.laravel-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.laravel-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.laravel-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.laravel-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.laravel-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.laravel-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .laravel-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .laravel-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .laravel-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .laravel-content h1 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .laravel-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .laravel-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .laravel-img {
    text-align: center;
    margin-top: 25px;
  }

  .laravel-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* laravel banner  */

/* codei banner  */
.codei-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/codeIgniter-banner.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 25%;
    padding-left: 50px;
    top: 30%;
}

.codei-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.codei-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.codei-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.codei-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.codei-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.codei-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .codei-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 76% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .codei-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .codei-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .codei-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .codei-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .codei-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .codei-img {
    text-align: center;
    margin-top: 25px;
  }

  .codei-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* codei banner  */

/* python banner  */
.python-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/python-banner.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: right 25%;
padding-left: 50px;
    top: 30%;
}

.python-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.python-content {
    max-width: 50%;
      position: relative;
      margin-top: 0rem;
      
    z-index: 2;
}

.python-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.python-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.python-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.python-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .python-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .python-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .python-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .python-content h1 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .python-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .python-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .python-img {
    text-align: center;
    margin-top: 25px;
  }

  .python-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* python banner  */

/* react banner  */
.react-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/react-js.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: right 25%;
    padding-left: 50px;
    top: 30%;
}

.react-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.react-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.react-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.react-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.react-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.react-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .react-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .react-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .react-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .react-content h1 {
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .react-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .react-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .react-img {
    text-align: center;
    margin-top: 25px;
  }

  .react-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* react banner  */


/* app banner  */
.app-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/Mob-App.webp') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: right 25%;
    padding-left: 50px;
    top: 30%;
}

.app-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.app-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.app-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.app-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.app-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.app-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .app-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .app-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .app-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .app-content h1 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .app-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .app-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .app-img {
    text-align: center;
    margin-top: 25px;
  }

  .app-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* react banner  */
/* flutter banner  */
.flutter-banner {
    display: flex;
    height:60vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/flutter.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: right 25%;
    padding-left: 50px;
    top: 30%;
}

.flutter-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.flutter-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.flutter-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.flutter-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.flutter-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.flutter-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .flutter-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 51% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .flutter-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .flutter-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .flutter-content h1 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .flutter-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .flutter-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .flutter-img {
    text-align: center;
    margin-top: 25px;
  }

  .flutter-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* flutter banner  */

/* ecomm banner  */
.ecomm-banner {
    display: flex;
    height:65vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/Ecommerce.png') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: right 55%;
    padding-left: 50px;
    top: 30%;
}

.ecomm-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.38);
}
 
 
.ecomm-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.ecomm-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.ecomm-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.ecomm-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.ecomm-img img {
    width: 320px;
}


@media (max-width: 991px) {



    .ecomm-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 80% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .ecomm-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .ecomm-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .ecomm-content h1 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .ecomm-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .ecomm-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .ecomm-img {
    text-align: center;
    margin-top: 25px;
  }

  .ecomm-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* ecomm banner  */
/* corp banner  */
.corp-banner {
    display: flex;
    height:65vh;
    justify-content: space-between;
    align-items: start;
    object-fit: cover;
    padding: 90px 5%;
    background: url('images/services/website-designing-banner.jpg') no-repeat center/cover;
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: center 55%;
    padding-left: 50px;
    top: 30%;
}

.corp-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}
 
 
.corp-content {
    max-width: 50%;
      position: relative;
      margin-top:0rem;
    z-index: 2;
}

.corp-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.corp-content p {
    margin: 15px 0;
    color: #ffffff;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 2rem;
}

.corp-btn {
    background: linear-gradient(45deg, #b21710, #ff4d6b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.corp-img img {
    width: 320px;
}

@media (max-width: 991px) {



    .corp-banner {
     
    height: 45vh;
     
    border-bottom: 4px solid #0b4dbb;
     position: relative;
     background-position: 70% 35%;
    padding-left: 50px;
    top: 30%;
}
    

  .corp-content {
    max-width: 100%;
    text-align: left;
    
    padding: 0 15px;
    margin-left: -50px;
    margin-top: -50px;
  }

  .corp-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}

  .corp-content h1 {
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .corp-content p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .corp-btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .corp-img {
    text-align: center;
    margin-top: 25px;
  }

  .corp-img img {
    width: 260px;
    max-width: 100%;
  }
}
/* corp banner  */