/**
* Template Name: HeroBiz
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/**
* Check out variables.css for easy customization of colors, typography, and other repetitive properties
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

a {
    color: var(--color-links);
    text-decoration: none;
}

a:hover {
    color: var(--color-links-hover);
    text-decoration: none;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--color-white);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--Primary-Color-Blue, #2f89ff);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
/* #header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
} */

header.fixed-top {
    /* background: transparent; */
    background: black;
    z-index: 997;
    /* Ensure header is above the video but below other content */
    padding-top: 5px;
    /* Ensure this matches your HTML inline style */
    transition: all 0.5s;
    width: 100%;
    box-shadow: 0px 0px 34.9px -2px rgba(0, 0, 0, 0.12);
}

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 48px;
    position: relative;
}

#main-heading {
    text-align: center;
    padding-bottom: 180px;
}

.section-header h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2f89ff;
    display: inline-block;
    position: relative;
}

.section-header p {
    margin: 20px auto;
    color: #000;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (min-width: 1280px) {
    .section-header p {
        max-width: 80%;
    }

    /* .hero .carousel .carousel-item .d-flex h1 {
    padding-left: 8rem;
  }
  .hero .carousel .carousel-item .d-flex p {
    padding-left: 8rem;
  }
  .hero .carousel .carousel-item .d-flex a {
    padding-left: 8rem;
  } */
}

@media (min-width: 992px) {
    .section-header p {
        max-width: 80%;
    }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 995;
    width: 48px;
    height: 48px;
    transition: all 0.4s ease; /* Smooth transition */
    opacity: 0.5; /* Initial half opacity */
}

.scroll-top.active {
    visibility: visible;
    opacity: 0.5; /* Keep half opacity when visible */
}

.scroll-top:hover,
.scroll-top:active {
    opacity: 1; /* Full opacity on hover or click */
    transition: all 0.4s ease; /* Smooth transition */
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header.sticked {
    background: var(--color-white);
    box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-secondary);
    font-family: var(--font-secondary);
}

.header .logo h1 span {
    color: var(--color-primary);
    font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-primary);
    padding: 8px 23px;
    border-radius: 4px;
    transition: 0.3s;
    font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--color-white);
    background: rgba(var(--color-primary-rgb), 0.85);
}

.header-divider {
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    width: auto;
    /* Adjust width as needed */
    max-width: 100%;
    /* Ensures the line does not exceed the container's width */
}

/* Lightbox (full-screen preview) */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 100vh;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.lightbox .close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #73777c;
    font-size: 40px;
    cursor: pointer;
}
.lightbox .close-lightbox:hover {
    color: #fff;
}

/* Change cursor to pointer for images */
.portfolio .portfolio-item .details .about-img img {
    cursor: pointer; /* Change the cursor to pointer on hover */
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
/* .contact-btn {
    padding: 14px;
    width: 161px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 27.5px;
    background-color: #2f89ff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
} */

.contact-btn:hover {
    /* background-color: transparent; */
    /* border: 2px solid #fff; */
    color: #fff;
    cursor: pointer; 
}

.navbar .dropdown {
    position: relative; /* Ensure the parent is positioned relatively */
}

/* Ensure the dropdown is hidden by default */
.navbar .dropdown ul {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: none; /* Remove border when hidden */
    box-shadow: none; /* Remove shadow when hidden */
}

/* Show the dropdown when active */
.navbar .dropdown.active > ul {
    display: block; /* Show the dropdown */
    border: 1px solid rgba(0, 0, 0, 0.15); /* Add border when visible */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175); /* Add shadow when visible */
}

.navbar .dropdown ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); /* Adds separator lines */
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    display: block;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #fff;
    background: #2f89ff;
}

.navbar .dropdown:hover > ul {
    display: block; 
    visibility: visible;
    opacity: 1;
}

@media (min-width: 1280px) {
    .navbar {
        /* margin-right: -15rem; */
        padding: 0;
        position: relative;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        gap: 18px;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        margin-right: 1rem;
    
    }
    .navbar a,
    .navbar a {
        display: flex;
        align-items: center;
        padding: 14px 20px;
      
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    } 
    /* Style when navbar is scrolled */
    .navbar.scrolled a {
        color: #000; /* Black color when scrolled */
    }

    .navbar i {
        /* color: #fff; */
        display: none;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 8px;
        left: 0;
        background-color: #6badfc;
        visibility: hidden;
        transition: all 0.3s ease-in-out 0s;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        transform: scaleX(0.7);
    }

    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
        font-weight: 600;
        color: #6badfc !important; /* Apply blue color with !important to override white */
    }

    #navbar ul li .arfacontactus {
        width: 120px;
        height: 42px;
        border-radius: 27.5px;
        background: #2f89ff;
    }

    .navbar .dropdown a:hover:before,
    .navbar .dropdown:hover > a:before,
    .navbar .dropdown .active:before {
        visibility: hidden;
    }

    .navbar .dropdown a:hover,
    .navbar .dropdown .active,
    .navbar .dropdown .active:focus,
    .navbar .dropdown:hover > a {
        color: #2f89ff;
        background: none;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
        margin: 0;
        padding: 0 0 0px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        transition: 0.3s;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.7) !important;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a {
        color: var(--color-white) !important;
        background: #2f89ff;
    }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        visibility: visible;
    }

    .navbar .megamenu {
        position: static;
    }

    .navbar .megamenu ul {
        right: 0;
        padding: 10px;
        display: flex;
    }

    .navbar .megamenu ul li {
        flex: 1;
    }

    .navbar .megamenu ul li a,
    .navbar .megamenu ul li:hover > a {
        color: rgba(var(--color-white-rgb), 0.5);
        background: none;
    }

    .navbar .megamenu ul li a:hover,
    .navbar .megamenu ul li .active,
    .navbar .megamenu ul li .active:hover {
        color: var(--color-white);
        background: var(--color-primary);
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
    
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}
.mobile-nav-toggle {
    display: none;
}
/* Modal styling */
#imageModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 100px;
}

#imageModal img {
    max-width: 80%;
    max-height: 80%;
}

/* Close button styling */
#imageModal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

#imageModal .close:hover {
    color: #ff0000;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .mobile-nav-toggle {
        display: block !important;
        color: var(--color-secondary);
        font-size: 38px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        top: 48px;
        z-index: 9999;
        right: 50px;
        /* width: 50px; */
    }
    .mobile-nav-toggle:hover {
        color: #fff;
    }
    .navbar {
        padding: 0;
        position: fixed;
        top: 0;
        left: -100%;
        width: calc(100% - 70px);
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
        margin-bottom: 2rem;
    }
    .navbar i {
        margin-top: 1em;
        color: #fff;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 10px 0;
        margin: 0;
        background: #000;
        /* background: rgba(var(--color-secondary-rgb), 0.9); */
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 65px 4px 20px;
        font-size: 16px;
        font-weight: 500;
        color: rgba(var(--color-white-rgb), 1) !important;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navbar a, .navbar a:focus {
        color: #fff !important; /* Ensure the color is white */
    }
  

    /* .navbar .dropdown ul li a{
        color: rgba(var(--color-white-rgb), 1) !important;
    }  */

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        font-weight: 600;
        color: #6badfc !important;
    }
    .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active{
        height: 100px;
     
    }
    
    
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        /* position: static; */
        display: none;
        padding: 0px 0;
        margin-left: 20px;
        margin-right: 57px;
        /* margin: 10px 20px; */
        transition: all 0.5s ease-in-out;
        /* border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3); */
    }
    .navbar .dropdown ul a{
        color: rgba(0, 0, 0, 1) !important;
    }
    .navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
        color: var(--color-white) !important;
        background: #2f89ff;
    }

    .navbar .dropdown > .dropdown-active,
    .navbar .dropdown .dropdown > .dropdown-active {
        display: block;
    }

    .mobile-nav-toggle.bi-x {
        color: var(--color-white);
    }

    .mobile-nav-active {
        overflow: hidden;
        z-index: 9995;
        position: relative;
    }

    .mobile-nav-active .navbar {
        left: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(var(--color-secondary-rgb), 0.8);
        z-index: 9996;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin-right: 50px;
    }


/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Ensure the video does not overflow the hero section */
/* navbar logo section */
#main-header .logo-container img {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: -13em;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 42em;
    width: 100%;
    box-sizing: border-box;
    /* position: relative; */
}

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* Ensure content does not overflow the hero section */
    padding-top: 0;
    /* Remove padding-top to align with the header */
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    /* Ensure the video covers the entire viewport height */
    object-fit: cover;
    /* Ensure the video covers the entire section */
    z-index: -2;
    /* Place the video behind the overlay */
}

.background-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Ensure the overlay covers the entire viewport height */
    background: url("../img/background.png") no-repeat center center;
    background-size: cover;
    /* Ensure the image covers the entire overlay */
    z-index: -1;
    /* Place the overlay above the video but below the text */
}

.background-overlay-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Ensure the overlay covers the entire viewport height */
    background: url("../img/background.png") no-repeat center center;
    background-size: cover;
    /* Ensure the image covers the entire overlay */
    z-index: -1;
    /* Place the overlay above the video but below the text */
}

#hero:before {
    content: "";
    /* background: rgba(0, 0, 0, 0.6); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    /* Ensure the overlay is above the video and background image */
}

#hero h1,
#hero h2,
#hero .btn-get-started {
    z-index: 1;
    /* Ensure the text and button are above the overlay and video */
    position: relative;
    /* Ensure proper positioning above the background */
}

#hero h1 {
    margin-right: 8em;
    font-size: 84px;
    font-weight: 400;
    color: #fff;
    font-style: normal;
    line-height: normal;
}

#hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    z-index: 2;
    /* Ensure the text is above the overlay and video */
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 11px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: var(--Primary-Color-Blue, #2f89ff);
    border: 2px solid var(--Primary-Color-Blue, #2f89ff);
    margin-left: 0px;
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #2f89ff;
}

@media (max-width: 768px) {
    #hero {
        padding-top: 0px;
    }
    #hero .info .row {
        margin-left: -6em;
    }
    #hero h1 {
        margin-right: 2em;
        font-size: 68px;
    }
    #heroDigital {
        padding-top: 0px;
    }
    #heroDigital h1 {
        font-size: 68px;
    }

    #heroblogs h1 {
        font-size: 68px;
    }
    #heroblogs .info .row p {
        margin-right: 9rem;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
}

#moment-carousel {
    width: 100%;
    min-height: 70vh;
    padding: 80px 0;
    margin: 0;
    position: relative;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}

.hero .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero .info {
        padding: 0 50px;
    }
}

.hero .info h2 {
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    /* background: var(--color-primary); */
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }
}

.hero .info p {
    margin-right: 6rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 30px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
    margin-bottom: 0px;
}

.hero .info p:hover {
    color: #fff;
}

.hero .info .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
    background: var(--color-primary);
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/* about us section */
.about .about-img #bgaboutImg {
    margin-left: -24rem;
    width: 130%;
    margin-top: -30rem;
}
.about .about-img .homeAboutImg {
    margin-left: -7em;
    margin-top: -36rem;
}

.about h2 {
    color: #2f89ff;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#companyMission .tab-content {
    margin-top: 10rem;
}

#companyVision .tab-content .tab-pane {
    margin-left: -8em;
    margin-top: -4rem;
}

#companyMissionImg .about-img img {
    margin-top: 0rem;
    margin-left: 3.7rem;
    width: 90%;
}

#companySkillsImg .about-img img {
    margin-top: -14.4rem;
    margin-left: -3.7rem;
    width: 90%;
}

.about .about-img {
    position: relative;
    margin: 60px 0 0 60px;
}

.about .lineImage img {
    width: 68%;
    margin-top: -11rem;
    margin-left: 18rem;
}

.about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: -1;
    content: "";
    /* background: url("../img/about-bg.png") top left; */
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .about .about-img {
        margin: 30px 0 0 30px;
    }

    .about .about-img:before {
        inset: -30px 0 0 -30px;
    }
}

.about h3 {
    color: var(--color-secondary);
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 32px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about h3 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .about .nav-link {
        font-size: 16px;
    }
}

#aboutdes {
    margin-left: -8em;
    margin-top: 9rem;
}

.about .tab-content h4 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    color: #2f89ff;
}

.about .tab-content p {
    margin-right: -3em;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #040404;
}

.about .tab-content .boxParagraph {
    margin-right: -8em;
    border-radius: 0px 30px 30px 0px;
    border: 2px solid transparent;
    /* Resetting the previous border */
    border-left: 8px solid var(--Primary-Color-Blue, #2f89ff);
    /* Adding the left border */
    border: 2px solid black 0px 0px 0px;
    background: var(--Faded-Blue, #d7e8ff);
}

.about .tab-content .boxParagraph p {
    margin-right: 1em;
    margin-left: 1rem;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.about .tab-content ul li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 281%;
}

.about .tab-content .boxmission {
    border-radius: 0px 30px 30px 0px;
    border: 2px solid transparent;
    /* Resetting the previous border */
    border-left: 8px solid var(--Primary-Color-Blue, #2f89ff);
    /* Adding the left border */
    border: 2px solid black 0px 0px 0px;
    background: var(--Faded-Blue, #d7e8ff);
    margin-right: -8rem;
}

.about .tab-content .boxmission p {
    margin-right: 1em;
    margin-left: 1rem;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.about .tab-content .boxskills {
    border-radius: 0px 30px 30px 0px;
    border: 2px solid transparent;
    /* Resetting the previous border */
    border-left: 8px solid var(--Primary-Color-Blue, #2f89ff);
    /* Adding the left border */
    border: 2px solid black 0px 0px 0px;
    background: var(--Faded-Blue, #d7e8ff);
}

.about .tab-content .boxskills p {
    margin-right: 1em;
    margin-left: 1rem;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.about .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 0 0 60px 0;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
    padding-top: 6rem;
    padding-bottom: 10rem;
}

.cta .container {
    padding: 80px;
    border-radius: 25px;
    background: #f4f4f4;

    box-shadow: 0px 0px 15.4px 5px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .cta .container {
        padding: 60px;
    }
}

.cta .content h3 {
    /* color: var(--color-secondary); */
    color: #ea5d3e;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 8rem;
    margin: -6rem;
}

.cta .content h3 em {
    font-style: normal;
    position: relative;
}

.cta .content h3 em:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 10px;
    background: rgba(var(--color-primary-rgb), 0.5);
    z-index: -1;
}

.cta .content p {
    text-align: justify;
    margin-right: 2rem;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta .content .cta-btn {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.cta .content .cta-btn:hover {
    background: var(--color-primary);
}

.cta .img {
    position: relative;
}

.cta .img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-white-rgb), 0.5);
    border-radius: 15px;
    transform: rotate(12deg);
}

.cta .img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(var(--color-white-rgb), 0.9);
    border-radius: 15px;
    transform: rotate(6deg);
}

.cta .img img {
    position: relative;
    z-index: 3;
    border-radius: 15px;
}

/*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/
.onfocus {
    padding: 0;
}

.onfocus .video-play {
    min-height: 400px;
    background: linear-gradient(
            rgba(var(--color-black-rgb), 0.4),
            rgba(var(--color-black-rgb), 0.7)
        ),
        url("../img/onfocus-video-bg.jpg") center center;
    background-size: cover;
}

.onfocus .content {
    background: linear-gradient(
            rgba(var(--color-secondary-rgb), 0.5),
            rgba(var(--color-secondary-rgb), 0.8)
        ),
        url("../img/onfocus-content-bg.jpg") center center;
    background-size: cover;
    color: rgba(var(--color-white-rgb), 0.8);
    padding: 40px;
}

@media (min-width: 768px) {
    .onfocus .content {
        padding: 80px;
    }
}

.onfocus .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
}

.onfocus .content ul {
    list-style: none;
    padding: 0;
}

.onfocus .content ul li {
    padding-bottom: 10px;
}

.onfocus .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--color-primary);
}

.onfocus .content p:last-child {
    margin-bottom: 0;
}

.onfocus .content .read-more {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: -nline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-primary);
}

.onfocus .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.onfocus .content .read-more:hover {
    background: rgba(var(--color-primary-rgb), 0.9);
    padding-right: 19px;
}

.onfocus .content .read-more:hover i {
    margin-left: 10px;
}

.onfocus .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--color-primary) 50%,
        rgba(var(--color-primary-rgb), 0.4) 52%
    );
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.onfocus .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(var(--color-primary-rgb), 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.onfocus .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.onfocus .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--color-white);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.onfocus .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 0;
    padding: 25px 20px;
    color: var(--color-secondary);
    box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    cursor: pointer;
    height: 100%;
}

.features .nav-link i {
    font-size: 32px;
    line-height: 0;
}

.features .nav-link h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: var(--color-secondary);
}

.features .nav-link:hover {
    color: var(--color-primary);
}

.features .nav-link.active {
    transition: 0.3s;
    background: var(--color-secondary)
        linear-gradient(
            rgba(var(--color-primary-rgb), 0.95),
            rgba(var(--color-primary-rgb), 0.6)
        );
    border-color: var(--color-primary);
}

.features .nav-link.active h4 {
    color: var(--color-white);
}

.features .nav-link.active i {
    color: var(--color-white) !important;
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 36px;
    color: var(--color-secondary);
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 24px;
    margin-right: 4px;
    color: var(--color-primary);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Digiatl Marketing Services Section
--------------------------------------------------------------*/
#heroDigital {
    width: 100%;
    height: 722px;
    /* background: url("../img/services/seo/vector.png") no-repeat; */
    position: relative;
    overflow: hidden;
    /* Ensure content does not overflow the hero section */
    padding-top: 0;
    /* Remove padding-top to align with the header */
}

#heroDigital:before {
    content: "";
    /* background: url("../img/services/seo/vector.png") no-repeat; */

    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    /* Ensure the overlay is above the video and background image */
}

#heroDigital h1,
#heroDigital h2,
#heroDigital .btn-get-started {
    z-index: 1;
    /* Ensure the text and button are above the overlay and video */
    position: relative;
    /* Ensure proper positioning above the background */
}

#heroDigital h1 {
    text-align: left;
    margin-top: 12rem;
    font-size: 84px;
    font-weight: 500;
    color: #fff;
    font-style: normal;
    line-height: normal;
}

#heroDigital h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    z-index: 2;
    /* Ensure the text is above the overlay and video */
}

#heroDigital p {
    margin-right: 0em;
    margin-top: 1.5rem;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    font-style: normal;
    line-height: normal;
}

#heroDigital .btn-get-started {
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 11px;
    transition: 0.5s;
    margin-top: 30px;
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

#heroDigital .btn-get-started:hover {
    background: transparent;
    border-color: #2f89ff;
    color: #2f89ff;
}

@media (max-height: 500px) {
    #heroDigital {
        height: 120vh;
    }
}

.heroDigital .carousel-item.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    /* Ensure the image covers the entire section */
}
.heroDigital .seo-item.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 78vh;
    /* Ensure the image covers the entire section */
}
.heroDigital .app-item.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 78vh;
}
.heroblogs .carousel-item.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 78vh;
    /* background: url(../img/rectangle42.png) no-repeat center center; */
    background-size: cover;
}
#groupImage img {
    margin-top: -28em;
}
/*--------------------------------------------------------------
# blogs Section
--------------------------------------------------------------*/
.recent-blog-posts #allBlogsPosts {
    margin-top: 3em;
}
#heroblogs {
    width: 100%;
    height: 722px;
    /* background: url("../img/seo/vector.png") no-repeat; */
    position: relative;
    overflow: hidden;
    /* Ensure content does not overflow the hero section */
    padding-top: 0;
    /* Remove padding-top to align with the header */
}

#heroblogs:before {
    content: "";
    background: url("../img/seo/vector.png") no-repeat;

    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    /* Ensure the overlay is above the video and background image */
}

#heroblogs h1,
#heroblogs h2,
#heroblogs .btn-get-started {
    z-index: 1;
    /* Ensure the text and button are above the overlay and video */
    position: relative;
    /* Ensure proper positioning above the background */
}

#heroblogs h1 {
    text-align: left;
    margin-top: 12rem;
    font-size: 84px;
    font-weight: 500;
    color: #fff;
    font-style: normal;
    line-height: normal;
}

#heroblogs h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    z-index: 2;
    /* Ensure the text is above the overlay and video */
}

#heroblogs p {
    margin-right: 0em;
    margin-top: 1.5rem;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    font-style: normal;
    line-height: normal;
}

#heroblogs .btn-get-started {
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 11px;
    transition: 0.5s;
    margin-top: 30px;
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

#heroblogs .btn-get-started:hover {
    background: transparent;
    border-color: #2f89ff;
    color: #2f89ff;
}

@media (max-height: 500px) {
    #heroblogs {
        height: 120vh;
    }
}
.heroblogs .carousel-item .info .blogSlider {
    margin-left: 10rem;
}

.heroDigital .carousel-item .info .seoSlider {
    margin-top: 4em;
    margin-left: 10rem;
}
.heroDigital .carousel-item .info .appSlider {
    margin-top: 4em;
    margin-left: 10rem;
}
.heroDigital #galleryHeadingSection {
    margin-top: 4em;
    margin-left: 4em;
}
.front-image .post-upoaded .social-links {
    margin-top: -3rem;
}

.services .top-space {
    margin-top: 20px;
}
.services .service-item .digitalInfo {
    margin-top: 4rem;
    padding: 20px 20px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: #fff;
    border-radius: 29px;
    box-shadow: 0px 0px 34.9px -2px rgba(0, 0, 0, 0.12);
}

.services .service-item .details .boxParagraph {
    margin-right: 2rem;
    margin-left: 2rem;
    border-radius: 0px 30px 30px 0px;
    border: 2px solid transparent;
    border-left: 8px solid var(--Primary-Color-Blue, #2f89ff);
    border: 2px solid black 0px 0px 0px;
    background: var(--Faded-Blue, #d7e8ff);
}

.services .service-item .digitalInfo h3 {
    margin-left: 2rem;
    color: #2f89ff;
    text-align: left;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: ease-in-out 0.3s;
}

.services .service-item .digitalInfo p {
    margin-right: 2rem;
    margin-left: 2rem;
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.services .service-item .digitalInfo .boxParagraph p {
    margin-left: 0.5em;
    color: #000;
    text-align: justify;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.serviceButton {
    margin-top: 1rem;
    margin-right: 30rem;
    width: 169px;
    height: 52px;
    border-radius: 11px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 2px solid #2f89ff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
}
.serviceButton:hover {
    background-color: transparent;
    color: #2f89ff;
}

.services .digital-img {
    margin-top: 4rem;
    margin-left: 4rem;
}
.services .ppc-img {
    margin-right: 4rem;
    margin-top: 4rem;
}

.services .rounded-img {
    border: 10px solid #2f89ff;
    margin: 10px;
    width: 163px;
    height: 163px;
    border-radius: 50%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
.services .service-info {
    padding: 10px 10px;
    margin: 0px 30px 60px 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 0px 15.4px -2px rgba(0, 0, 0, 0.15);
}

.services .service-info h3 {
    color: #2f89ff;
    font-weight: 600;
    line-height: normal;
    font-style: normal;
    margin: 20px 0px 30px 0;
    font-size: 35px;
    transition: ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#services .latestTwosevices {
    margin-right: -25rem;
    margin-left: 10rem;
}

.heroDigital .carousel-item .info .digitalSlider {
    margin-top: 4em;
    margin-left: 10rem;
}

.serviceSeoButton {
    margin-top: 1rem;
    margin-right: 30rem;
    width: 169px;
    height: 52px;
    border-radius: 11px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 2px solid #2f89ff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
}
.serviceSeoButton:hover {
    background-color: transparent;
    color: #2f89ff;
}
.services .digital {
    margin-top: 2em;
}
.services .seo {
    margin-top: 2em;
}
.services .app {
    margin-top: 2em;
}

#serviceshero {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

#serviceshero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.serviceshero .carousel-item.active {
    position: relative;
    width: 100%;
    height: 321px;
    background: url("../img/gallery/bgHeader.png") no-repeat center center;
    background-size: cover;
}

.serviceshero .carousel-item .info h1 {
    margin-top: -12rem;
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    z-index: 2;
}

#serviceshero .carousel-item {
    position: relative;
}
.front-image .post-upoaded .user-details span {
    margin-top: -0.7rem;
    color: rgba(0, 0, 0, 0.3);

    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.front-image .post-upoaded .user-details p {
    margin-top: 0.5rem;
    color: #000;
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
/* .front-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white; 
} */

.front-image {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.blogDetails {
    margin-top: -14em;
}

.front-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.front-image h3 {
    text-align: left;
    margin-right: 4em;
    margin-top: -25rem;
    font-size: 48px;
    font-weight: 600;
    color: white;
}

.getInTouchBtn {
    width: 160.277px;
    height: 52px;
    border-radius: 9px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 2px solid #2f89ff;
    /* margin-right: 53em; */
    margin-top: 2em;
}

.services .service-item .about-img img {
    transition: 0.5s;
    width: 100%;
}
.services .service-item .about-img {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.services .details {
    padding: 10px 10px;
    /* margin: 0 30px 0 30px; */
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 0px 15.4px -2px rgba(0, 0, 0, 0.15);
}

.services .details h3 {
    color: #2f89ff;
    font-weight: 500;
    line-height: normal;
    font-style: normal;
    margin: 15px 0 15px 0;
    font-size: 25px;
    transition: ease-in-out 0.3s;
}

.services .details p {
    margin: 0.5em;
    text-align: justify;
    font-size: 17px;
    font-weight: 400;
    color: #000;
}

.services .details .readmore {
    color: #ea5d3e;
    margin-top: 10px;
}

.services .details .readmore:hover {
    font-weight: 600;
}

.services .service-item:hover .about-img img {
    transform: scale(1.1);
}

.empowering {
    background: url("../img/rectangle42.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;

    max-width: 100%;
    height: 749px;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.empowering .container {
    position: relative;
    z-index: 1;
}

.empowering .section-header h3 {
    margin-left: 14rem;
    margin-right: 14rem;
    color: #fff;
    /* text-align: center; */
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.empowerButton {
    width: 227px;
    height: 60px;
    border-radius: 11px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 2px solid #fff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
}

.empowerButton:hover {
    background-color: transparent;
    color: #fff;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

#testnimonialsId::after {
    content: "";
    display: block;
    height: 5px;
    background-color: #2f89ff;
    position: absolute;
    bottom: 0;
    left: 76px;
    width: 126px;
    margin-bottom: -0.5rem;
}
.testimonials {
    padding: 60px 0;
}

.testimonials {
    background: url("../img/testimonials/bg.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

/* .section-header {
  text-align: center;
  margin-bottom: 40px;
} */

.testimonials-slider {
    margin-top: 8rem;
    overflow: visible;
    /* Allow overflow to be visible */
}

.swiper-slide {
    flex-shrink: inherit;
    overflow: visible;
    /* Allow overflow to be visible */
}

.swiper-slide:nth-child(2) .testimonial-item {
    margin-top: -3rem;
}

/* .swiper-slide:nth-child(2) .testimonial-item .testimonial-img {
  width: 193px;
  height: 260px;
} */

.testimonial-item {
    width: 90%;
    height: 420px;
    /* width: 389px;
  height: 439px;  */
    border-radius: 18px;
    background: #fff;
    box-shadow: 0px 0px 36.4px -7px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin: 0px 10px 0 10px;
    position: relative;
    /* Ensure the testimonial box is the positioning context for the image */
}

.testimonial-item-ceo {
    width: 100%;
    height: 500px;
    /* width: 389px;
  height: 439px;  */
    border-radius: 18px;
    background: #fff;
    box-shadow: 0px 0px 36.4px -7px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin: -36px 12px 0 -12px;
    position: relative;
    /* Ensure the testimonial box is the positioning context for the image */
}

.testimonial-img {
    width: 136px;
    height: 131px;
    border-radius: 50%;
    position: absolute;
    /* Position the image absolutely */
    top: -68px;
    /* Half of the image's height to position it half inside and half outside */
    left: 50%;
    transform: translateX(-50%);
    /* Center the image horizontally */
    border: 6px solid #2f89ff;
    /* Optional: Add a white border to make it stand out */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow for better visibility */
}

.testimonial-item h3 {
    margin-top: 70px;
    /* Adjust the margin to accommodate the image */
    margin-bottom: 10px;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testimonial-item-ceo h3 {
    margin-top: 7rem;
    /* Adjust the margin to accommodate the image */
    margin-bottom: 10px;
    color: #000;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testimonial-item h4 {
    margin-bottom: 15px;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testimonial-item-ceo h4 {
    margin-bottom: 15px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: var(--color-yellow);
    margin: 0 1px;
}

.testimonial-item p {
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: #000;

    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testimonial-item-ceo p {
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: #000;

    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #2f89ff;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: 16px;
    position: relative;
    color: #2f89ff;
    transform: scaleY(-1);
    float: left;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: 16px;
    position: relative;
    top: 0;
    transform: scale(-1, -1);
    float: right;
}

.testimonials .testimonial-item-ceo .quote-icon-left,
.testimonials .testimonial-item-ceo .quote-icon-right {
    color: #2f89ff;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item-ceo .quote-icon-left {
    display: inline-block;
    left: 16px;
    position: relative;
    color: #2f89ff;
    transform: scaleY(-1);
    float: left;
}

.testimonials .testimonial-item-ceo .quote-icon-right {
    display: inline-block;
    right: 16px;
    position: relative;
    top: 0;
    transform: scale(-1, -1);
    float: right;
}

.swiper-pagination {
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0.5;
}

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

/* .testimonials {
  padding: 80px 0;
  background: url("../img/testimonials/bg.png") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
} */

/* .testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
} */

/* .testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
} */

/* .testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-yellow);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
} */

/* .testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--color-white-rgb), 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
} */

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-item .details .about-img img {
    width: 100%;
    height: 292px;
}

.portfolio .portfolio-flters {
    padding: 0;
    margin: 0 auto 30px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 22px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    color: #ea5d3e;
}

.portfolio .portfolio-flters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-item {
    border-radius: 18px;
    position: relative;
    border: 1px solid var(--color-white);
    overflow: hidden;
    z-index: 1;
}

.portfolio .portfolio-item img {
    transition: all 0.3s;
}

.portfolio .photos .portfolio-item:before {
    content: "";
    inset: 0;
    position: absolute;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 2;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    inset: auto 40px 40px 40px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    padding: 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 20px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: rgba(var(--color-white-rgb), 0.7);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--color-white);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover:before {
    visibility: visible;
    opacity: 1;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    inset: auto 10px 0 10px;
}

.portfolio-container.videos .portfolio-item {
    margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
/* #blogsHeading{
  margin-left: -25.5rem;
} */
.post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis (...) if the text is too long */
}
.post-paragraph {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Show only 4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis (...) if the text is too long */
}
.recent-blog-posts {
    margin-top: -3em;
    margin-bottom: 1.5em;
}
.recent-blog-posts .blog-item {
    padding: 10px 10px;
    /* margin: 0 30px 0 30px; */
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 0px 15.4px -2px rgba(0, 0, 0, 0.15);
}

.recent-blog-posts .post-box {
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-box .meta {
    text-align: left;
    margin-left: 10px;
    margin-top: 6px;
}

.recent-blog-posts .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: #2f89ff;
}

.recent-blog-posts .post-box .meta .post-author {
    font-size: 15px;
    font-weight: 400;
}

.recent-blog-posts .post-box .post-title {
    text-align: left;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    margin: 15px 12px 0 10px;
    position: relative;
    transition: 0.3s;
}

.recent-blog-posts .post-box p {
    text-align: left;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 15px 10px 15px 10px;
}

.recent-blog-posts .post-box:hover .post-title {
    color: #2f89ff;
}

.recent-blog-posts .post-box:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* .contact .map {
  margin-bottom: 40px;
} */

#desktopL {
    display: block;
}
#tabletM {
    display: none;
}
.contact .map iframe {
    border: 0;
    width: 100%;
}

.contact .info {
    height: 83%;
    padding: 40px;
    border-radius: 13px;
    /* box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1); */
    box-shadow: 0px 0px 8.4px 1px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.contact .info h3 {
    margin-top: 1rem;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.contact .info p {
    color: var(--color-secondary-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact .info-item {
    margin-left: 7em;
    margin-top: 1rem;
}

/* .contact .info-item + .info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
} */

.contact .info-item i {
    font-size: 24px;
    color: #ea5d3e;
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
}

.contact .info-item h4 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.contact .info-item p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.contact .php-email-form {
    margin-top: -1.4rem;
    width: 100%;
}

.contact .php-email-form .error-message {
    display: none;
    color: var(--color-white);
    background: var(--color-red);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: var(--color-white);
    background: var(--color-green);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--color-white);
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--color-green);
    border-top-color: var(--color-white);
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form label {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 4px;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    border-radius: 8px;
    box-shadow: none;
    font-size: 16px;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-secondary-light);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
    height: 40px;
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    height: 230px;
}

.contact .php-email-form button[type="submit"] {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 2px solid #2f89ff;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #fff;
    color: #2f89ff;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    opacity: 1;
    border: 1px solid var(--color-primary);
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(var(--color-secondary-rgb), 0.15);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-secondary-light);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
    height: 100%;
}

.blog .posts-list article + article {
    margin-top: 60px;
}

.blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog .posts-list .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
}

.blog .posts-list .title a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.blog .posts-list .title a:hover {
    color: var(--color-primary);
}

.blog .posts-list .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}

.blog .posts-list .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .posts-list .meta-top ul li + li {
    padding-left: 20px;
}

.blog .posts-list .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .posts-list .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .posts-list .content {
    margin-top: 20px;
}

.blog .posts-list .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .posts-list .read-more a:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
}

.blog .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog .blog-details .title {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
    color: var(--color-secondary);
}

.blog .blog-details .content {
    margin-top: 20px;
}

.blog .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .blog-details .content blockquote {
    overflow: hidden;
    background-color: rgba(var(--color-secondary-rgb), 0.06);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .blog-details .content blockquote p {
    color: var(--color-default);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .blog-details .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .blog-details .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.blog .blog-details .meta-bottom i {
    color: var(--color-secondary-light);
    display: inline;
}

.blog .blog-details .meta-bottom a {
    color: rgba(var(--color-secondary-rgb), 0.8);
    transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
    color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog .blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--color-default);
    content: ",";
}

.blog .blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
    padding-left: 5px;
}

.blog .post-author {
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .post-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog .post-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: var(--color-secondary);
}

.blog .post-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
    color: rgba(var(--color-secondary-rgb), 0.5);
    margin-right: 5px;
}

.blog .post-author p {
    font-style: italic;
    color: rgba(var(--color-gray-rgb), 0.8);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.title {
    max-width: 48%; /* Adjust width as needed */
    word-wrap: break-word;
    line-height: 1.2; /* Adjust line height as needed */
}
.blog .sidebar {
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    color: var(--color-secondary);
}

.blog .sidebar .sidebar-item + .sidebar-item {
    margin-top: 40px;
}

.blog .sidebar .search-form form {
    background: var(--color-white);
    border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type="text"]:focus {
    outline: none;
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li + li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: var(--color-default);
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: rgba(var(--color-default-rgb), 0.4);
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
    display: flex;
}

.blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
    font-size: 18px;
    font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
    color: var(--color-secondary);
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: var(--color-secondary-light);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.8);
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: rgba(var(--color-secondary-light-rgb), 0.8);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
    margin-top: 30px;
}

.blog .comments .comments-count {
    font-weight: bold;
}

.blog .comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .comments .comment .comment-img {
    margin-right: 14px;
}

.blog .comments .comment .comment-img img {
    width: 60px;
}

.blog .comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .comments .comment h5 a {
    font-weight: bold;
    color: var(--color-default);
    transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
    color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
    padding-left: 10px;
    color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .comments .comment time {
    display: block;
    font-size: 14px;
    color: rgba(var(--color-secondary-rgb), 0.8);
    margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
}

.blog .comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .comments .reply-form p {
    font-size: 14px;
}

.blog .comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .comments .reply-form input:focus {
    box-shadow: none;
    border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: rgba(var(--color-primary-rgb), 0.8);
}

.blog .comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
    background-color: rgba(var(--color-secondary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
    margin-top: 30px;
    color: var(--color-secondary-light);
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: var(--color-secondary);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: var(--color-primary);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: var(--color-white);
    font-size: 14px;
}

.footer .footer-content {
    width: 100%;
    height: 100%;
    background: url("../img/bgFooter.png") no-repeat;
    background-size: cover;
    position: relative;

    /* background: var(--color-secondary); */
    /* background: #2B2B2B;
  padding: 60px 0 30px 0; */
}

.footer .footer-content .footer-info {
    margin-bottom: 4em;
    margin-top: 9rem;
}

.footer .footer-content .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
    color: var(--color-primary);
}

.footer .footer-content .footer-info p {
    margin-right: -10em;
    margin-top: 2em;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer .footer-info-links .social-links {
    margin-right: 5em;
}

.footer .footer-info-links .social-links a {
    display: inline-block;

    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
}

.footer-nav-links {
    display: flex;
    justify-content: space-around;
    /* Distribute space evenly around each item */
    gap: 1rem;
    /* Optional: add some space between items */
}

.footer-nav-links a {
    text-decoration: none;
    /* Remove underline */
    color: inherit;
    /* Use parent element's color */
    padding: 0.5rem 1rem;
    /* Add some padding */
    border-radius: 5px;
    /* Optional: add some border radius */
}

.footer-nav-links a:hover {
    /* Optional: change background on hover */
    color: #2f89ff;
}

.footer .footer-content h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.footer #footerServices {
    margin-left: 0em;
    margin-top: 11em;
}

.footer .footernewsletters {
    margin-top: 1rem;
    margin-left: 0em;
}

.footer .footer-info .footernewsletters p {
    margin-right: 0em;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer .footer-content h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 36px;
    height: 2px;
    background: #2f89ff;
}

.footer .footer-content .footer-links {
    margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-content .footer-links ul i {
    padding-right: 2px;
    color: #2f89ff;
    font-size: 12px;
    line-height: 1;
}

.footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

/* .footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
} */

.footer .footer-content .footer-links ul a {
    transition: 0.3s;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer .footer-content .footer-links ul a:hover {
    color: #2f89ff;
}

.footer .footer-content .footer-newsletter form {
    background: var(--color-white);
    padding: 6px 10px;
    position: relative;
    border-radius: 8px;
}

.footer .footer-content .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

.footer
    .footer-content
    .footer-newsletter
    form
    input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-content .footer-newsletter form button[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;

    border: 2px solid #2f89ff;
    font-size: 16px;
    padding: 0 20px;
    background: #2f89ff;
    color: var(--color-white);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    /* border-radius: 0 4px 4px 0; */
    border-radius: 8px;
}

.footer .footer-content .footer-newsletter form button[type="submit"]:hover {
    background-color: #fff;
    /* Change background color on hover */
    color: #2f89ff;
    /* Change text color on hover */
}
.blogsButton:hover{
    background-color: #FFF;
    color: #2f89ff;
}
.footer .footer-legal {
    padding: 30px 0;
    /* background: var(--color-secondary-dark); */
    background: #000;
}

.footer .footer-legal .credits {
    padding-top: 4px;
    font-size: 13px;
    color: var(--color-white);
}

.footer .footer-legal .credits a {
    color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(var(--color-white-rgb), 0.1);
    color: var(--color-white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
    background: #2f89ff;
    text-decoration: none;
}

/* extra css */
#notification {
    background-color: #ea5d3e;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 300%;
}

.achivement {
    background: url("../img/Partners/bg.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.achivement .counters {
    margin-bottom: 6em;
}

.achivement .google-partner img {
    margin: -1.5rem;
}

.achivement .google-partner {
    margin-left: 10rem;
}

.achivement .facebook-partner {
    margin-left: 5rem;
}

.achivement .Tiktok-partner img {
    margin-left: 0em;
}
.achivement .miczon-partner {
    margin-left: 1em;
    margin-top: -4em;
}
.achivement .Techji-partner {
    margin-top: -4em;
}
.achivement .POcket-partner {
    margin-left: -4em;
    margin-top: -4em;
}
.achivement .Zongley-partner {
    margin-left: -1em;
    margin-top: -4em;
}

.heading-with-lines {
    position: relative;
    font-size: 24px;
    text-align: center;
    padding: 0 70px;
}

.heading-with-lines::before,
.heading-with-lines::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 150%;
    border-bottom: 4px solid #2f89ff;
    transform: translateY(-50%);
    z-index: -1; /* Make sure lines are behind the text */
}

.heading-with-lines::before {
    left: calc(-140% - 10%);
}

.heading-with-lines::after {
    right: calc(-140% - 10%);
}

/* Optional: For better alignment across all screen sizes */
.heading-with-lines h2 {
    display: inline-block;
    padding: 0 20px; /* Adjust the padding based on your design */
    background-color: #fff; /* Match this to your background color */
    position: relative;
    z-index: 1; /* Ensure the text is above the lines */
}

/* 
.heading-with-lines {
  position: relative;
  font-size: 24px;
  text-align: center;
  padding: 0 70px;
}

.heading-with-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 140%;
  border-bottom: 4px solid #2F89FF;
  ;
  transform: translateY(-50%);
}

.heading-with-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 160%;
  border-bottom: 4px solid #2F89FF;
  transform: translateY(-50%);
}

.heading-with-lines::before {
  left: -24rem;
}

.heading-with-lines::after {
  right: -28rem;
} */

.achivement .img {
    border-radius: 8px;
    overflow: hidden;
}

.achivement .img img {
    transition: 0.6s;
}

.achivement .details {
    padding: 50px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    background: var(--color-white);
    position: relative;
    background: rgba(var(--color-white-rgb), 0.9);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.achivement .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid var(--color-white);
}

.achivement .details span {
    color: var(--color-default);
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 45px;
    transition: ease-in-out 0.3s;
}

.achivement .details p {
    color: #000;

    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 48px */
}

.achivement .service-item:hover .details h3 {
    color: #ea5d3e;
}

.achivement .service-item:hover .details .icon {
    background: var(--color-white);
    border: 2px solid var(--color-primary);
}

.achivement .service-item:hover .details .icon i {
    color: var(--color-primary);
}

.achivement .service-item:hover .img img {
    transform: scale(1.2);
}

.blogButton {
    width: 169px;
    height: 52px;
    border-radius: 11px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 2px solid #2f89ff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
}

.blogButton:hover {
    background-color: #fff;
    color: #2f89ff;
}

.readMoreButton {
    width: 142px;
    height: 44px;
    border-radius: 9px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 2px solid #2f89ff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
}

.readMoreButton:hover {
    background-color: #fff;
    color: #2f89ff;
}

.exploreButton {
    width: 227px;
    height: 60px;
    border-radius: 11px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 2px solid #2f89ff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
}

.blogsButton {
    width: 227px;
    height: 60px;
    border-radius: 11px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 2px solid #2f89ff;
    outline: none;
    box-shadow: none;
    margin-bottom: 0.5rem;
    margin-top: 48px;
}

.exploreButton:hover {
    background-color: #fff;
    color: #2f89ff;
}

.momentContact {
    position: fixed;
    width: 194px;
    height: 53px;
    border-radius: 13px;
    background: #fff;
    color: #ea5d3e;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    outline: none;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    margin-left: 21rem;
    margin-top: 3rem;
}

.momentContact:hover {
    background: #ec6c40;
    color: #fff;
    border: 2px solid #fff;
}

/* for achivement line */
#achivementId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #2f89ff;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 36px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 126px;
    /* Adjust the width of the line as needed to end at the 'A' */
    margin-bottom: -0.5rem;
}

/* for services line */
#serviceId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #2f89ff;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 36px;
    width: 130px;
    /* Adjust the width of the line as needed to end at the 'A' */
    margin-bottom: -0.5rem;
}

#momentsId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #2f89ff;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 10px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 132px;
    /* Adjust the width of the line as needed to end at the 'A' */
    margin-bottom: -0.5rem;
}

#miczonMomentsId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #ea5d3e;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 110px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 166px;
    /* Adjust the width of the line as needed to end at the 'A' */
    margin-bottom: -0.5rem;
}

#momentsdetailsId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #ea5d3e;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 320px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 172px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}

#newsLetterId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #ea5d3e;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 42px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 164px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}

#blogId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #2f89ff;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: -4px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 136px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}

#blogdetailId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #2f89ff;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 60px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 136px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}

#latestblogId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #ea5d3e;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 100px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 180px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}
/* contact us form */
.contact {
    padding: 60px 0;
}
.contact .second-part h3 {
    margin-left: 3em;
    color: #2f89ff;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.contact .second-part .sub-heading {
    margin-left: 6.6em;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-form-box {
    border-radius: 35px;
    border: 6px solid #2f89ff;
    background: #fff;
    padding: 30px;
}

.contact-form-box h1 {
    color: #2f89ff;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* margin-bottom: 15px; */
}

.contact-form-box p {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.contact-form-box textarea {
    margin-top: 15px;
}
.contact-form-box .icon{
    margin-right: 30px;
}

.contact-form-box button {
    width: 100%;
    background-color: #2f89ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form-box button:hover {
    border: 2px solid #2f89ff;
    background-color: #fff;
    color: #2f89ff;
}

.checkboxes label {
    display: flex;
    align-items: center; /* Vertically centers the checkbox and label */
    font-size: 14px; /* Set the font size to 14px */
    color: #000;
    font-weight: 400;
    margin-bottom: 5px;
}

.checkboxes input[type="checkbox"] {
    margin-bottom: 0;
    margin-left: -5.5em;
    margin-right: -4.5em;
}

/* Add a margin to the checkboxes container if needed */
.checkboxes {
    margin-top: 10px; /* Adjust space above the checkboxes section */
}

.steps {
    position: relative;
    margin: 30px 6.5em;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.circle {
    width: 20%;
    background-color: #2f89ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 29px;
    font-weight: 600;
    position: relative;
}
.circle1 {
    width: 17%;
    background-color: #2f89ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: 600;
    position: relative;
}

.step-content {
    margin-left: 20px;
}

.step h4 {
    margin: 6px 0px 10px;
    font-size: 24px;
    color: #2f89ff;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.step p {
    margin-right: -4em;
    font-size: 16px;
    color: #000;
}

/* Add vertical line between circles */
.step:before {
    content: "";
    position: absolute;
    left: 21px;
    top: 40px;
    bottom: -40px;
    width: 4px;
    background-color: #2f89ff;
    z-index: 1;
}

.step:last-child:before {
    bottom: auto; /* Prevents line below the last step */
}

/* For larger screens, reduce spacing for aesthetics */
@media (min-width: 768px) {
    .step-content {
        margin-left: 30px;
    }
}

hr {
    margin-left: 7em;
    margin-top: 2em;
    border: 1px solid #ccc;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between rows */
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-item h4 {
    margin: 0;
    font-size: 16px;
    color: #000;
}

.info-item p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #555;
}

#contact-us {
    background: url("../img/Partners/bg.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    margin-bottom: 6em;
    margin-top: -6em;
}
#contact {
    margin-bottom: 6em;
}
#contactId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #2f89ff;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 72px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 140px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}

.contact-bgImage {
    background: url("../img/bgContact.png") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px;
    color: #fff;
    border: 2px solid;
    border-radius: 29px;
}

#contactbtn {
    width: 585px;
    height: 44px;
    border-radius: 10px;
    background: var(--Primary-Color-Blue, #2f89ff);
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* .contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
} */

.map {
    background: rgba(255, 255, 255, 0.8);
    height: 100%;
}

#applyJobId::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #ea5d3e;
    /* Set the color of the line */
    position: absolute;
    bottom: 0;
    left: 200px;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 172px;
    margin-bottom: -0.5rem;
    /* Adjust the width of the line as needed to end at the 'A' */
}

/* Existing styles for navbar */

/* Add styles for the scrolled class */
/* Existing styles for header */

#services .row .tab-content .tab-pane h2 {
    color: #ea5d3e;
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
    font-style: normal;
}

#services .row .tab-content .tab-pane p {
    /* margin-right: -4rem; */
    text-align: justify;
    color: #000;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin-top: 20px;
}

/* gallery */
.moment-box {
    position: relative;
    overflow: hidden;
    /* Ensures the rounded corners are applied */
    border-radius: 10px;
    /* Adjust the radius as needed */
}

.moment-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    /* Adjust the radius as needed, should match the container's border-radius */
}

.moment-img {
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 26%;
    background-color: #ea5d3e;
    /* Change the color as needed */
    /* border-radius: 10px; */
}

.text-overlay {
    position: absolute;
    bottom: 8%;
    /* Adjust the position as needed */
    left: 47%;
    transform: translateX(-50%);
    color: white;
    /* Change the text color as needed */
    text-align: center;
}

.overlay-text {
    font-size: 24px;
    /* Adjust the font size as needed */
    font-weight: 600;
    margin: 0;
}

.additional-image-container {
    margin-top: 20px;
    /* Adjust as needed */
}

.additional-image-container button {
    margin-bottom: 20px;
    /* Adjust as needed */
}

.vacancy-box {
    /* width: 418px;
  height: 260px; */
    border-radius: 25px;
    border: 2px solid #ea5d3e;
    background: #fff;
    text-align: center;
    padding: 20px;
}

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

.job-heading {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.button-row {
    margin-top: 20px;
}

.custom-btn {
    width: 161px;
    height: 58px;
    border-radius: 13px;
    background: #ea5d3e;
    color: #fff;
    font-family: sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    border: none;
    /* Remove the border */
    transition: background-color 0.3s ease-in-out;
}

.custom-btn:hover {
    border: 2px solid #ea5d3e;
    background-color: #fff;
    color: #ea5d3e;
}

.vacancy-box .date-text {
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.vacancy-box .job-heading {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#viewJobs .container h2 {
    padding-left: 6rem;
    color: #ea5d3e;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#jobCategory::after {
    content: "";
    display: block;
    height: 5px;
    /* Adjust the height of the line as needed */
    background-color: #ea5d3e;
    /* Adjust the distance from the left as needed to start from the 'h' */
    width: 190px;
    /* Adjust the width of the line as needed to end at the 'A' */
}

#viewJobs .container p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 6rem;
    margin-top: 1rem;
    margin-right: 2rem;
}

#viewJobs .address-post-section .address-post span {
    margin-left: 1rem;
}

#viewJobs .address-post-section .citylocation {
    margin-top: -12px;
    margin-left: 2.5rem;
}

.hero-container {
    position: relative;
}
.hero .carousel-item .info .homeslider {
    margin-left: 10rem;
}

#herojob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.jobDes {
    display: grid;
    grid-template-columns: repeat(8, 1fr) repeat(4, 1fr);
    gap: 1rem;
    /* Adjust the gap as needed */
    margin-left: 3rem;
    padding-top: 1rem;
}

.jobDes .jobdetail {
    grid-column: span 8;
    /* width: calc(100% - 1rem); */
    width: 100%;
    /* Adjust width as needed */
    padding-bottom: 2rem;
    flex-shrink: 0;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0px 0px 9px -2px rgba(0, 0, 0, 0.25);
    padding-top: 2rem;
    overflow-wrap: break-word;
}

.jobdetail h3 {
    color: #000;
    text-align: justify;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 3rem;
}

.jobdetail p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: -3rem;
}

.jobdetail ul {
    padding-left: 6rem;
    margin-top: 2rem;
    margin-right: 2rem;
}

.additional-info-box {
    grid-column: span 4;
    width: 100%;
    /* Take up all 4 columns */
    height: 358px;
    flex-shrink: 0;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0px 0px 9px -2px rgba(0, 0, 0, 0.25);
}

.additional-info-box h3 {
    color: #000;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 2rem;
}

.additional-info-box p {
    margin-left: 1rem;
    margin-top: 1rem;
}

.apply-now-button {
    display: block;
    margin: auto;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #ea5d3e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 150px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 10px;
}

.apply-now-button:hover {
    background-color: #fff;
    color: #ea5d3e;
    border: 2px solid #ea5d3e;
}

.applyjob .php-email-form {
    width: 100%;
    /* background: var(--color-white); */
}

.applyjob .php-email-form .form-group {
    padding-bottom: 20px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.applyjob .php-email-form .error-message {
    display: none;
    color: var(--color-white);
    background: var(--color-red);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.applyjob .php-email-form .error-message br + br {
    margin-top: 25px;
}

.applyjob .php-email-form .sent-message {
    display: none;
    color: var(--color-white);
    background: var(--color-green);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.applyjob .php-email-form .loading {
    display: none;
    background: var(--color-white);
    text-align: center;
    padding: 15px;
}

.applyjob .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--color-green);
    border-top-color: var(--color-white);
    animation: animate-loading 1s linear infinite;
}

.applyjob .php-email-form input[type="text"],
.applyjob .php-email-form input[type="email"],
.applyjob .php-email-form input[type="number"],
.applyjob .php-email-form input[type="file"],
.applyjob .php-email-form textarea {
    /* width: 636px;
  height: 55px; */
    flex-shrink: 0;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.03);
    margin-top: 0.5rem;
    border-radius: 10px;
}

.applyjob .php-email-form input[type="text"]:focus,
.applyjob .php-email-form input[type="number"]:focus,
.applyjob .php-email-form input[type="email"]:focus,
.applyjob .php-email-form input[type="file"]:focus,
.applyjob .php-email-form textarea:focus {
    border-color: #ea5d3e;
}

.applyjob .php-email-form input[type="text"],
.applyjob .php-email-form input[type="email"] {
    height: 48px;
    padding: 10px 15px;
}

.applyjob .php-email-form textarea {
    padding: 10px 12px;
    height: 290px;
}

.applyjob .php-email-form input[type="number"] {
    height: 48px;
    padding: 10px 15px;
    box-sizing: border-box;
    /* Include this to make padding part of the height */
}

.applyjob .php-email-form .phone-container {
    display: grid;
    margin-top: 0.5rem;
}

.applyjob .php-email-form .country-code {
    /* Add styles for the country code container */
    margin-right: 10px;
    /* Adjust the margin as needed */
}

/* Add additional styling for the country code and flag elements as needed */

.applyjob .php-email-form button[type="submit"] {
    background: #ea5d3e;
    border: 0;
    padding: 13px 50px;
    color: var(--color-white);
    transition: 0.4s;
    border-radius: 10px;
}

.applyjob .php-email-form button[type="submit"]:hover {
    background: #fff;
    color: #ea5d3e;
    border: 2px solid #ea5d3e;
}

#blogDetail .container .row {
    text-align: justify;
}

#blogDetail h2 {
    color: var(--Primary-Color-Blue, #2f89ff);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#blogDetail h3 {
    color: var(--Primary-Color-Blue, #2f89ff);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#blogDetail p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 1rem;
}
#blogDetail img{
    display: none;
}

#blogDetail .bold {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.blog-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.user-info {
    display: flex;
    margin-top: 18rem;
    margin-right: 70rem;
    /* align-items: center; */
}

.user-info img {
    border: 4px solid #2f89ff;
    border-radius: 86px;
    margin-right: 10px;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
}

#commnetdate {
    color: rgba(0, 0, 0, 0.22);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.comment-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #c7c7c7;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.like-dislike {
    margin-right: 10px;
}

.like-icon,
.dislike-icon {
    margin-right: 5px;
    cursor: pointer;
}

.like-count,
.dislike-count {
    color: #c7c7c7;
    margin-right: 5px;
}

.reply-link {
    cursor: pointer;
    color: #c7c7c7;
    margin-right: 5px;
}

.reply-section {
    margin-top: 2rem;
    padding-left: 6rem;
    /* Adjust the padding as needed */
}

#reply-user {
    color: rgba(0, 0, 0, 0.22);
    font-size: 11px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
}

.comment-form {
    /* width: 1320px; */
    height: 800px;
    flex-shrink: 0;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0px 0px 8.1px 0px rgba(0, 0, 0, 0.13);
}

.comment-form .row .col-lg-12 {
    margin-left: 5rem;
}

.comment-form h2 {
    color: #ea5d3e;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 5rem;
    padding-top: 2rem;
}

.comment-form p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 5rem;
    /* padding-top: 2rem; */
}

.comment-form .php-email-form {
    width: 86.5%;
}

.comment-form .php-email-form .form-group {
    padding-bottom: 20px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.comment-form input[type="text"] {
    width: 561px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.03);
    padding-left: 5rem;
    margin-top: 0.5rem;
}

.comment-form input[type="email"] {
    width: 1135px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.03);
    margin-top: 0.5rem;
}

.comment-form textarea {
    width: 1135px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.2);

    background: rgba(0, 0, 0, 0.03);
    margin-top: 0.5rem;
}

.comment-form .php-email-form button[type="submit"] {
    background: #ea5d3e;
    border: 2px solid #ea5d3e;
    padding: 13px 50px;
    color: var(--color-white);
    transition: 0.4s;
    border-radius: 10px;
    margin-top: 2rem;
}

.comment-form .php-email-form button[type="submit"]:hover {
    background: #fff;
    color: #ea5d3e;
}

.newslettersImages {
    margin-bottom: 10rem;
    padding-left: 8rem;
}

/*  Counts
--------------------------------------------------------------*/
.counts {
    background: url("../img/counts-bg.jpg") center center no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    position: relative;
}

.counts::before {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.counts .title {
    position: relative;
    color: #0f394c;
    margin-bottom: 40px;
}

.counts .title h3 {
    font-size: 36px;
    font-weight: 700;
}

.counts .counters span {
    font-size: 44px;
    font-weight: 700;
    display: block;
    color: #49b5e7;
    font-family: "Dosis", sans-serif;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 15px;
    color: #444444;
}

.GalleryScreenSize {
    margin-right: -3rem;
}

@media (min-width: 1200px) {
    .counts {
        background-attachment: fixed;
    }
}
/*  Footer Custom css  */

/* .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: nowrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
    display: flex
    ;
        justify-content: center;
        align-items: center;
} */

@media (min-width: 992px) {
    .justify-content-lg-between {
        justify-content: center !important;
    }
}

<a class="nav-link" href="#" data-section="home">Home</a>