body {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: "Titillium Web", sans-serif;

}

/* header */
/* ============================
   HEADER - PARENT STYLES
============================ */

.header {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    background: transparent;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 30px;
}

.header .logo a {
    color: rgba(0, 127, 175, 1);
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
}

.header .navbar .nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.header .navbar .nav-links li {
    list-style: none;
}

.header .navbar .nav-links li a {
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    transition: .3s;
    text-decoration: none;
    font-weight: 600;
}

.header .navbar .nav-links li a:hover,
.header .navbar .nav-links li a.active {
    color: #18c5ff;


}

.header .header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 8px;
    background: rgba(0, 127, 175, 1);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header .menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: #007faf;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
}

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

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header .container {
        position: relative;
    }

    .header .menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .navbar {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        background: #071726;
        border-radius: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: .4s;
        z-index: 999;
    }

    .header .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header .navbar .nav-links {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
        margin-left: 0px;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .header .header-btn {
        display: none;
    }

    .header .navbar .nav-links li a {
        color: #ffffff;
        font-size: 16px;
        text-transform: uppercase;
        transition: .3s;
        text-decoration: none;
        font-weight: 600;
    }
}


/* Hero-section start*/

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

.hero {
    position: relative;
    min-height: 100vh;
    background: url("/images/hero-banner.png") center center/cover no-repeat;
    overflow: hidden;
    border-radius: 0px 0px 40px 40px;
}

.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, 0.65);
}

.hero .container {
    /* width: 90%;
    max-width: 1320px; */
    margin: 0px 30px;
}

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

.hero .header {
    position: relative;
    z-index: 10;
    padding: 20px 0;
}

.hero .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero .logo a {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
}

.hero .navbar .nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.hero .navbar .nav-links li {
    list-style: none;
}

.hero .navbar .nav-links li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: .3s;
    text-decoration: none;
}

.hero .navbar .nav-links li a:hover,
.hero .navbar .nav-links li a.active {
    color: #18c5ff;
}

.hero .header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 8px;
    background: rgba(0, 127, 175, 1);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ============================
   HERO CONTENT
============================ */

.hero .hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    gap: 60px;
    margin-bottom: 100px;
}

/* LEFT */

.hero .hero-content .hero-left {
    width: 45%;
}

.hero .hero-content .hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.hero .hero-content .hero-left h1 span {
    color: #18c5ff;
}

.hero .hero-content .hero-left p {
    margin: 40px 0;
    color: #d8d8d8;
    line-height: 1.8;
    font-size: 20px;
}

.hero .hero-content .hero-left .hero-buttons {
    display: flex;
    gap: 20px;
}

.hero .hero-content .hero-left .btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
}

.hero .hero-content .hero-left .btn-primary {
    background: rgba(0, 127, 175, 1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.hero .hero-content .hero-left .btn-outline {
    border: 2px solid rgba(0, 167, 214, 1);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

/* RIGHT */

.hero .hero-content .hero-right {
    width: 55%;
    position: relative;
}

.hero .hero-content .hero-right .slider {
    overflow: hidden;
}

.hero .hero-content .hero-right .slides {
    display: flex;
    gap: 0px;
}

.hero .hero-content .hero-right .slide {
    width: 260px;
    min-height: 430px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.hero .hero-content .hero-right .slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transform: scale(.85);
    opacity: .9;
    border-radius: 20px;
    overflow: hidden;
}

.hero .hero-content .hero-right .slide .slide-content {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
}

.hero .hero-content .hero-right .slider-controls button i {
    line-height: 58px;
}

.hero .hero-content .hero-right .slider-controls button :hover {
    /* background:#007faf; */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.hero .hero-content .hero-right .slider-controls {
    margin-top: 50px;
    display: flex;
    justify-content: left;
    gap: 15px;
}

.hero .hero-content .hero-right .slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.hero .slider {
    overflow: hidden;
    position: relative;
}

.hero .slides {
    display: flex;
}

.hero .slide {
    min-width: 480px;
    margin: 0 10px;
    transition: .4s;
    transform: scale(.85);
    opacity: .6;
}

.hero .slide.active {
    transform: scale(1.1);
    opacity: 1;
}

.hero .menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: #007faf;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
}

.hero .hero-content .hero-right .slide .slide-content h3 {
    font-size: 22px;
    font-weight: 700;
}

@media (max-width:1024px) {

    .hero {
        min-height: auto;
    }

    .hero .hero-content {
        flex-direction: column;
        padding: 70px 0;
        min-height: auto;
        gap: 50px;
    }

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

    .hero .hero-content .hero-left {
        text-align: center;
    }

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

    .hero .hero-content .hero-left .hero-buttons {
        justify-content: center;
    }

    .hero .hero-content .hero-right .slider-controls {
        justify-content: center;
        margin-top: 40px;
    }

    .hero .slide {
        min-width: 320px;
    }

}

@media (max-width:768px) {

    .hero {
        min-height: auto;
    }

    .hero .header {
        padding: 15px 0;
    }

    .hero .header .container {
        position: relative;
    }

    .hero .menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero .navbar {

        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        background: #071726;
        border-radius: 10px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

        transition: .4s;

        z-index: 999;
    }

    .hero .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero .navbar .nav-links {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
        margin-left: 0px;
        align-items: left !important;
        text-align: left !important;
    }

    .hero .header-btn {
        display: none;
    }

    .hero .hero-content {

        flex-direction: column;
        padding: 0px 0;
        gap: 40px;
        text-align: center;
    }

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

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

    .hero .hero-content .hero-left p {
        font-size: 16px;
        margin: 25px 0;
    }

    .hero .hero-content .hero-left .hero-buttons {

        flex-direction: column;
        align-items: center;
    }

    .hero .hero-content .hero-left .btn {

        width: 220px;
        text-align: center;
    }

    .hero .slide {
        min-width: 260px;
    }

    .hero .hero-content .hero-right .slider-controls {
        justify-content: center;
        margin-top: 25px;
    }

}

/* Hero-section End*/



/* business choose start */

/* ===========================
   Businesses Choose Us
=========================== */

.businesses-choose-us {
    padding: 40px 20px;
    background: #fff;
}

.businesses-choose-us__container {
    /* width: 1200px;
    max-width: 90%; */
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Images */

.businesses-choose-us__images {
    flex: 1;
    position: relative;
    /* min-height: 500px; */
}

.businesses-choose-us__image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.businesses-choose-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.businesses-choose-us__image--top {
    width: 310px;
    height: 310px;
}

.businesses-choose-us__image--bottom {
    width: 320px;
    height: 290px;
    position: absolute;
    left: 156px;
    top: 116px;
}

/* Content */

.businesses-choose-us__content {
    flex: 1.2;
}

.businesses-choose-us__subtitle {
    color: rgba(0, 127, 175, 1);
    font-size: 22px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 2%;
    line-height: 40px;
}

.businesses-choose-us__title {
    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    margin: 0 0 20px;
}

.businesses-choose-us__description {
    color: rgba(0, 0, 0, 1);
    line-height: 24px;
    /* margin-bottom: 20px; */
    font-size: 20px;
}

/* Stats */

.businesses-choose-us__stats {
    margin-top: 40px;
    display: flex;
    background: rgba(242, 244, 250, 1);
    border-radius: 18px;
    overflow: hidden;
}

.businesses-choose-us__stat-card {
    flex: 1;
    text-align: center;
    padding: 20px 0 10px;
    position: relative;
}

.businesses-choose-us__stat-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .2px;
    height: 90px;
    /* Change to your desired height */
    background: rgba(0, 127, 175, 1);
}

.businesses-choose-us__stat-card:last-child::after {
    display: none;
}

.businesses-choose-us__stat-card:last-child {
    border-right: none;
}

.businesses-choose-us__stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0px;
    border-radius: 50%;
    background: #0b8fd8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.businesses-choose-us__stat-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.businesses-choose-us__stat-card h3 {
    font-size: 28px;
    margin-block: 15px;
}

.businesses-choose-us__stat-card p {
    color: #000000;
    font-size: 16px;
}

/* ===========================
   Responsive
=========================== */

/* Large Tablets */
@media (max-width: 1024px) {

    .businesses-choose-us {
        padding: 60px 0;
    }

    .businesses-choose-us__container {
        gap: 50px;
    }

    .businesses-choose-us__title {
        font-size: 46px;
        line-height: 54px;
    }

    .businesses-choose-us__description {
        font-size: 18px;
    }

    .businesses-choose-us__images {
        min-height: 420px;
    }

    .businesses-choose-us__image--top {
        width: 180px;
        height: 220px;
    }

    .businesses-choose-us__image--bottom {
        width: 260px;
        height: 240px;
        left: 80px;
        top: 100px;
    }
}

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

    .businesses-choose-us {
        padding: 50px 20px;
    }

    .businesses-choose-us__container {
        flex-direction: column;
        gap: 40px;
    }

    .businesses-choose-us__images {
        width: 100%;
        min-height: 420px;
        display: flex;
        justify-content: left;
        position: relative;
    }

    .businesses-choose-us__image--top {
        width: 230px;
        height: 240px;
    }

    .businesses-choose-us__image--bottom {
        width: 260px;
        height: 230px;
        left: 50%;
        transform: translateX(-10%);
        top: 140px;
    }

    .businesses-choose-us__content {
        width: 100%;
        text-align: center;
    }

    .businesses-choose-us__subtitle {
        font-size: 20px;
        line-height: 30px;
    }

    .businesses-choose-us__title {
        font-size: 40px;
        line-height: 48px;
    }

    .businesses-choose-us__description {
        font-size: 18px;
        line-height: 30px;
    }

    .businesses-choose-us__stats {
        flex-wrap: wrap;
    }

    .businesses-choose-us__stat-card {
        flex: 1 1 50%;
        border: 1px solid #e6e6e6;
    }

    .businesses-choose-us__stat-card::after {
        display: none;
    }
}

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

    .businesses-choose-us {
        padding: 40px 15px;
    }

    .businesses-choose-us__container {
        max-width: 100%;
        gap: 30px;
    }

    .businesses-choose-us__images {
        min-height: 340px;
    }

    /* .businesses-choose-us__image--top {
        width: 150px;
        height: 190px;
    } */

    .businesses-choose-us__image--bottom {
        width: 230px;
        height: 250px;
        left: 45%;
        top: 93px;
        transform: translateX(-15%);
    }

    .businesses-choose-us__subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .businesses-choose-us__title {
        font-size: 32px;
        line-height: 40px;
    }

    .businesses-choose-us__description {
        font-size: 16px;
        line-height: 28px;
    }

    .businesses-choose-us__stats {
        flex-direction: column;
    }

    .businesses-choose-us__stat-card {
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid #ddd;
    }

    .businesses-choose-us__stat-card:last-child {
        border-bottom: none;
    }

    .businesses-choose-us__stat-card h3 {
        font-size: 24px;
    }

    .businesses-choose-us__stat-card p {
        font-size: 15px;
    }
}

/* business choose end */


/* Business services START*/

/*==========================================
    TECHNOLOGY SERVICES
==========================================*/

.technology-services {
    /* width:100%;
    padding:80px 20px; */
    background: #ffffff;
}

.technology-services .technology-services__container {
    max-width: 1200px;
    margin: 0 auto;
    background: #07192d;
    border-radius: 30px;
    padding: 60px 60px;
}

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

.technology-services .technology-services__header {
    max-width: 920px;
    margin: 0 auto 110px;
    text-align: center;
}

.technology-services .technology-services__header .technology-services__subtitle {
    display: inline-block;
    color: rgba(62, 213, 221, 1);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.technology-services .technology-services__header .technology-services__title {
    font-size: 52px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.15;
    /* margin-bottom: 20px; */
    padding: 0px;
    margin: 0px;
}

.technology-services .technology-services__header .technology-services__description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 1);
    padding-top: 15px;
    line-height: 27px;
}

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

.technology-services .technology-services__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

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

.technology-services .technology-services__cards .technology-services__card {
    position: relative;
    background: rgba(242, 244, 250, 0.2);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 20px 30px 35px;
    text-align: center;
    transition: .35s;
}

.technology-services .technology-services__cards .technology-services__card:hover {
    transform: translateY(-10px);
    background: rgba(242, 244, 250, 0.2);
}

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

.technology-services .technology-services__cards .technology-services__card .technology-services__icon {

    width: 64px;
    height: 64px;

    background: rgba(0, 127, 175, 1);

    border-radius: 50%;

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

    position: absolute;

    top: -37px;
    left: 50%;

    transform: translateX(-50%);
}

.technology-services .technology-services__cards .technology-services__card .technology-services__icon img {

    width: 34px;
    height: 34px;
    object-fit: contain;
}

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

.technology-services .technology-services__cards .technology-services__card .technology-services__card-content {

    width: 100%;
}

.technology-services .technology-services__cards .technology-services__card .technology-services__card-content .technology-services__card-title {

    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 20px;
}

.technology-services .technology-services__cards .technology-services__card .technology-services__card-content .technology-services__card-description {

    color: #d8dce4;
    font-size: 16px;
    line-height: 1.8;
}

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

@media(max-width:991px) {

    .technology-services {

        padding: 60px 20px;
    }

    .technology-services .technology-services__container {

        padding: 60px 40px;
    }

    .technology-services .technology-services__header {

        margin-bottom: 60px;
    }

    .technology-services .technology-services__header .technology-services__title {

        font-size: 40px;
    }

    .technology-services .technology-services__cards {

        grid-template-columns: repeat(2, 1fr);
    }

}

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

@media(max-width:767px) {

    .technology-services {

        padding: 40px 15px;
    }

    .technology-services .technology-services__container {

        padding: 50px 20px;
        border-radius: 20px;
    }

    .technology-services .technology-services__header {

        margin-bottom: 50px;
    }

    .technology-services .technology-services__header .technology-services__subtitle {

        font-size: 12px;
    }

    .technology-services .technology-services__header .technology-services__title {

        font-size: 30px;
    }

    .technology-services .technology-services__header .technology-services__description {

        font-size: 15px;
    }

    .technology-services .technology-services__cards {

        grid-template-columns: 1fr;
        gap: 60px;
    }

    .technology-services .technology-services__cards .technology-services__card {

        padding: 65px 25px 30px;
    }

    .technology-services .technology-services__cards .technology-services__card .technology-services__card-content .technology-services__card-title {

        font-size: 24px;
    }

}

/* Business services END */


/* <!-- feature-services start here --> */
/* SECTION BASE */
.features-point {
    padding: 60px 20px;
    background: #ffffff;


}

.features-point__left {
    flex: 1;
}

/* WRAPPER */
.features-point .features-point__wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    /* max-width: 1200px; */
    margin: auto;
}

/* LEFT SIDE */
/* .features-point .features-point__left {
  flex: 1;
} */

.features-point .features-point__left img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    border-radius: 10px;
}

/* RIGHT SIDE */
.features-point .features-point__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* HEADER */
.features-point .features-point__right .features-point__header .features-point__tag {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(0, 127, 175, 1);
}

.features-point .features-point__right .features-point__header h2 {
    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    margin: 0 0 20px;
}

.features-point .features-point__right .features-point__header p {
    font-size: 20px;
    color: #080808;
    line-height: 1.6;
    font-weight: 400;
}

/* GRID */
.features-point .features-point__right .features-point__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.features-point .features-point__right .features-point__grid .features-point__card {
    background: #f3f6fb;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.features-point .features-point__right .features-point__grid .features-point__card:hover {
    transform: translateY(-5px);
    background: #eaf1ff;
}

/* ICON */
.features-point .features-point__right .features-point__grid .features-point__card .features-point__icon {
    width: 45px;
    height: 45px;
    background: #0ea5e9;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 10px;
}

/* CARD TEXT */
.features-point .features-point__right .features-point__grid .features-point__card h3 {
    font-size: 28px;
    margin-bottom: 8px;
    margin-top: 0px;
    color: #050505;
    font-weight: 600;
    line-height: 32px;
}

.features-point .features-point__right .features-point__grid .features-point__card p {
    font-size: 18px;
    color: #010101;
    line-height: 1.5;
}

.features-point .features-point__right .features-point__grid .features-point__card .features-point__icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 127, 175, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* IMAGE INSIDE ICON */
.features-point .features-point__right .features-point__grid .features-point__card .features-point__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-point .features-point__wrapper {
        flex-direction: column;
    }

    .features-point .features-point__right .features-point__header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .features-point .features-point__right .features-point__grid {
        grid-template-columns: 1fr;
    }

    .features-point .features-point__right .features-point__header h2 {
        font-size: 24px;
    }
}

/* <!-- feature-services end here --> */

/* footer-stylesheet */

/*==========================
        FOOTER
==========================*/

.footer {
    background: #151e26;
    color: #fff;
    padding: 50px 4%;

}


.footer .container {
    max-width: 1400px;
    margin: auto;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 60px;
}

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

.footer .footer-about h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.footer .footer-about p {
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 25px;
}

/*==========================
      SOCIAL ICONS
==========================*/

.footer .social-icons {
    display: flex;
    gap: 15px;
}

.footer .social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer .social-icons a i {
    font-size: 18px;
}

.footer .social-icons a:hover {
    background: #0b92d1;
    border-color: #0b92d1;
}

/*==========================
      TITLES
==========================*/

.footer .footer-links h4,
.footer .footer-contact h4,
.footer .footer-newsletter h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

/*==========================
      LINKS
==========================*/

.footer .footer-links ul {
    list-style: none;
    padding-left: 0px;
}

.footer .footer-links ul li {
    margin-bottom: 15px;
}

.footer .footer-links ul li a {
    color: #d5d5d5;
    text-decoration: none;
    transition: .3s;
}

.footer .footer-links ul li a:hover {
    color: #0b92d1;
    padding-left: 5px;
}

/*==========================
      CONTACT
==========================*/

.footer .footer-contact ul {
    padding-left: 0px;
    list-style: none;
}

.footer .footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #d5d5d5;
}

.footer .footer-contact ul li i {
    font-size: 16px;
    color: #fff;
}

/*==========================
    NEWSLETTER
==========================*/

.footer .footer-newsletter form {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}

.footer .footer-newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-size: 15px;
    color:#000000
}

.footer .footer-newsletter button {
    border: none;
    background: #0b92d1;
    color: #fff;
    padding: 0 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.footer .footer-newsletter button:hover {
    background: #0878ac;
}

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

@media (max-width:991px) {

    .footer {
        padding: 60px 5%;
    }

    .footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer .footer-newsletter form {
        max-width: 100%;
    }

}

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

@media (max-width:768px) {

    .footer {
        /* text-align: center; */
        padding: 50px 20px;
    }

    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer .footer-about h2 {
        font-size: 30px;
    }

    /* .footer .footer-contact ul li {
        justify-content: center;
    } */

    /* .footer .social-icons {
        justify-content: center;
    } */

    .footer .footer-newsletter form {
        flex-direction: row;
        background: transparent;
        border-radius: 0;
        gap: 0px;
    }

    .footer .footer-newsletter input {
        border-radius: 10px 0px 0px 10px;
        /* width: 100%; */
    }

    .footer .footer-newsletter button {
        width: 100%;
        padding: 15px;
        border-radius: 0px 10px 10px 0px;
    }

}

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

@media (max-width:480px) {
    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .footer {
        /* text-align: center; */
        padding: 0px 20px;
    }

    .footer .footer-contact h4 {
        font-size: 20px;
        margin-bottom: 20px;
        margin-block: 7px;
    }

    .footer .footer-about h2 {
        font-size: 26px;
    }

    .footer .footer-contact ul {
        text-align: left;
    }

    .footer .footer-about p,
    .footer .footer-links ul li,
    .footer .footer-contact ul li {
        font-size: 14px;
    }

    .footer .footer-newsletter input,
    .footer .footer-newsletter button {
        font-size: 14px;
    }

}

/* <!-- our-approch-services-start --> */
/*=========================================
OUR APPROACH SECTION
=========================================*/

.our-approach-section {

    position: relative;

    width: 100%;

    min-height: 100vh;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background: url("/images/ourapproach.png") center center/cover no-repeat;

}


/*=========================================
OVERLAY
=========================================*/

.our-approach-section__overlay {

    position: absolute;

    inset: 0;


    background-color: rgb(0 0 0 / 44%);
}


/*=========================================
CONTAINER
=========================================*/

.our-approach-section__container {

    position: relative;

    z-index: 5;

    width: 1250px;

    max-width: 95%;

    margin: auto;

}


/*=========================================
HEADING
=========================================*/

.our-approach-section__heading {

    text-align: center;

    color: #fff;

    margin: 50px 0px 10px 0px;

}


/*=========================================
SUBTITLE
=========================================*/

.our-approach-section__subtitle {

    display: inline-block;
    color: rgba(62, 213, 221, 1);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 40px;
}


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

.our-approach-section__title {

    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    margin: 0 0 20px;

}


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

.our-approach-section__text {

    width: 700px;

    max-width: 95%;

    margin: auto;

    color: #efefef;

    font-size: 20px;

    line-height: 30px;

}


/*=========================================
SLIDER
=========================================*/

.our-approach-section__slider {

    position: relative;

    width: 100%;

    height: 320px;

    /* overflow:hidden; */

}


/*=========================================
TRACK
=========================================*/

.our-approach-section__track {

    position: relative;

    width: 100%;

    height: 100%;

}


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


.our-approach-section__card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 170px;
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    background: rgb(0 127 175 / 73%);
    border: 1px solid rgb(255 255 255 / 45%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .30);
    transition: transform .7s ease, opacity .7s ease, left .7s ease;

}


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

.our-approach-section__card h3 {

    font-size: 30px;
    margin-top: 15px;
    margin-bottom: -4px;

}


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

.our-approach-section__card p {

    line-height: 28px;
    font-size: 17px;
    color: #f4f4f4;

}


/*=========================================
DOTS
=========================================*/

.our-approach-section__dots {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-bottom: 40px;

}

.our-approach-section__dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #d2d2d2;

    cursor: pointer;

    transition: .35s;

}

.our-approach-section__dot.active {

    background: rgba(0, 127, 175, 1);

    transform: scale(1.25);

}

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

/* CENTER CARD */
.our-approach-section__card.active {

    left: 50%;
    transform: translate(-50%, -50%) scale(1.12);

    width: 420px;
    height: 250px;

    opacity: 1;

    z-index: 30;

}


/* LEFT CARD */

.our-approach-section__card.prev {

    left: 18%;

    transform: translate(-50%, -50%) scale(.82);

    width: 310px;

    opacity: .55;

    z-index: 20;

}


/* RIGHT CARD */

.our-approach-section__card.next {

    left: 82%;

    transform: translate(-50%, -50%) scale(.82);

    width: 310px;

    opacity: .55;

    z-index: 20;

}


/*====================================================
OTHER CARDS
====================================================*/

.our-approach-section__card.hide-left {

    left: -40%;

    transform: translate(-50%, -50%) scale(.6);

    opacity: 0;

    z-index: 1;

}


.our-approach-section__card.hide-right {

    left: 140%;

    transform: translate(-50%, -50%) scale(.6);

    opacity: 0;

    z-index: 1;

}


/*====================================================
ACTIVE TYPOGRAPHY
====================================================*/

.our-approach-section__card.active h3 {

    font-size: 36px;

}

.our-approach-section__card.active p {

    font-size: 16px;

}


/*====================================================
SIDE TYPOGRAPHY
====================================================*/

.our-approach-section__card.prev h3,
.our-approach-section__card.next h3 {

    font-size: 28px;

}

.our-approach-section__card.prev p,
.our-approach-section__card.next p {

    font-size: 14px;

}


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

.our-approach-section__card:hover {

    box-shadow: 0 35px 70px rgba(0, 0, 0, .45);

}


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

@media(max-width:992px) {

    .our-approach-section {

        padding: 0px 0;

    }

    .our-approach-section__title {

        font-size: 42px;

        line-height: 40px;
    }

    .our-approach-section__text {

        width: 95%;

    }

    .our-approach-section__card h3 {
        font-size: 24px;
        margin-top: 15px;
        margin-bottom: -10px;
    }

    .our-approach-section__slider {

        height: 260px;

    }

    .our-approach-section__card {

        width: 280px;

        height: 140px;

        padding: 15px;
        /* position:absolute;

left:50%;

top:50%;

transition:
transform .8s cubic-bezier(.23,1,.32,1),
opacity .8s,
z-index 0s; */
    }

    .our-approach-section__card.active {

        width: 340px;

        height: 220px;

    }

    .our-approach-section__card.prev {

        left: 15%;

    }

    .our-approach-section__card.next {

        left: 85%;

    }

}


@media(max-width:768px) {

    .our-approach-section__slider {

        height: 240px;

    }

    .our-approach-section__card.prev,
    .our-approach-section__card.next {

        display: none;

    }

    .our-approach-section__card.active {

        width: 95%;

        max-width: 340px;

    }

    .our-approach-section__title {

        font-size: 34px;

    }

    .our-approach-section__text {

        font-size: 16px;

        line-height: 26px;

    }

}


/* <!-- our-approch-services-end --> */


/* security-hero-start */

.marquee-section {
    padding: 0px 20px 20px 0px;
}

/* glow line top */
/* .marquee-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #4a9eff, #7abfff, #4a9eff, transparent);
            filter: blur(1px);
            opacity: 0.6;
        } */

/* ---------- marquee wrapper (mask) ---------- */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0rem 0;
}

/* ---------- marquee track (infinite animation) ---------- */
.marquee-track {
    display: flex;
    align-items: center;
    gap: 0px;
    width: max-content;
    animation: marquee 28s linear infinite;
    will-change: transform;
    padding: 0.3rem 0;
}

/* ---------- each item: text + icon image ---------- */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 0rem;
    flex-shrink: 0;
    color: rgba(220, 226, 230, 1);
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    letter-spacing: 1%;
    white-space: nowrap;
    padding: 0.4rem 0px;
    border-radius: 60px;
    /* background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s, transform 0.3s;
            text-shadow: 0 2px 12px rgba(0, 20, 50, 0.5); */
}

/* .marquee-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: scale(1.02);
        } */

/* text style */


/* icon image (Font Awesome icon) */
.marquee-item .icon-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: 44px;
            height: 44px; */
    border-radius: 50%;
    /* background: rgba(74, 158, 255, 0.12);
            border: 1px solid rgba(74, 158, 255, 0.15);
            color: #7abfff; */
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.marquee-item .icon-img img {

    width: 120px;
}

.marquee-item:hover span.text {


    color: #007faf;
}

/* ---------- KEYFRAMES: marquee X-axis infinite ---------- */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- pause on hover ---------- */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
    .marquee-item {
        font-size: 40px;
        gap: 0rem;
        padding: 0.3rem 0rem;
    }



    .marquee-track {
        gap: 0rem;
        animation-duration: 22s;
    }
}

@media (max-width: 580px) {


    .marquee-item {
        font-size: 40px;
        gap: 0rem;
        padding: 0.2rem 0rem;
        border-radius: 40px;
    }



    .marquee-track {
        gap: 0rem;
        animation-duration: 18s;
    }
}


/* security-hero-end */