@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
    --primary-color: #00a01d;
    --text-color: #FFF;
}

/* -----------------------
SCROLLBAR CSS
--------------------------*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 7px;
}
::selection {    
    background-color: var(--primary-color);
    color: #FFF;
}

body {
    overflow-x: hidden;
    font-family: "Lexend", serif;
    background-size: contain;
    width: 100%;
    color: var(--text-color);
    background-repeat: repeat-y;
    background-image: url('assets/img/background1.jpg');
    /* background-image: url('assets/img/background.jpg'); */
    /* background-image: url('assets/img/background2.jpg'); */
    /* background-color: #000b14; */
    /* background: linear-gradient(to right, #000b14, #6a4e23, #000b14); */

}
a {
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
}
ul {
    list-style: none;
}
p {
    /*text-align: justify;*/
    font-weight: 300;
}
.mt-12 {
    margin-top: 120px;
}
/* -----------------------
BACK TO TOP BUTTON CSS
--------------------------*/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #000b14;
    color: white;
    border: 1px solid #5a5a5a4a;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    transition: .3s;
}
.back-to-top i{
    font-size: 20px;
}
.back-to-top:hover {
  background-color: var(--primary-color);
}


/* -----------------------
STARFIELD EFFECT
--------------------------*/
#starfield {
    z-index: -1;
    isolation: isolate;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.star-angle {
    position: absolute;
    height: 70vmax;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.star {
    position: absolute;
    top: 55%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: gray;
    animation: stars cubic-bezier(.95, .05, .8, .04) infinite;
}
@keyframes stars {
    0% {
    top: 50%;
    transform: scale(0);
    }
    100% {
    top: 100%;
    transform: scale(1);
    }
}

/* -----------------------
HEADER CSS
--------------------------*/

header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
    /* background-color: #000b14; */
}
.header-topbar {
    position: relative;
    padding: 10px 0 0;
    border-bottom: 1px solid rgba(228, 235, 241, 0.07);
}
.top-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top-head p {
    display: flex;
    align-items: center;
    font-weight:500;
    font-size: 16px;
    margin-bottom: .5rem;
}
.top-head i {
    margin-right: .5rem;
    font-size: 16px;
}
.right-top{
    display: flex;
    align-items: center;
}
.schedule-link {
    color: var(--text-color);
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}





/* -----------------------
SCHEDULE MEETING CSS
--------------------------*/
.modal-backdrop{
    z-index: 1;
}
.en-text {
    text-align: center;
    width: 100%;
    color: var(--primary-color);
    font-size: 25px;
    margin-bottom: 0px;
}
.control-wrapper {
    position: relative;
}
.control-wrapper .form-control {
    line-height: 2.5rem;
}
.control-wrapper i {
    position: absolute;
    top: calc(33%);
    left: 0.5rem;
    padding-left: -30px;
    font-size: 16px;
}
.control-wrapper .form-control {
    padding-left: -30px;
    padding: 5px 0 5px 30px;
}
.control-wrapper .labelfield {
    position: absolute;
    top: calc(-20%);
    left: 2%;
    background-color: white;
    padding: 0 4px;
    display: block;
    z-index: 1;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: #B0B0B0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(255, 255, 255, 0.097);
    outline: 0 none;
}
.sub-btn{
    padding: 15px;

    color: white;
    background-color: var(--primary-color);
    transition: .5s;
}
.sub-btn:hover{
    border: 1px solid gray;
}
.form-h6 h6{
    color: #6c6c6c;
    /* font-size: 15px; */
    font-weight: 500;
}










/* -----------------------
NAVBAR CSS
--------------------------*/
.navbar-brand {
    color: var(--text-color);
}
.navbar-brand:hover {
    color: var(--primary-color);
}
.nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}
.nav-link:focus, .nav-link:hover {
    color: var(--primary-color);
}
.dropdown-item.active, .dropdown-item:active{
    background-color: transparent;
    color: var(--primary-color);
}
.dropdown-menu {
    padding: 15px;
}
.dropdown-item:hover{
    color: var(--primary-color);
    transition: .5s;
}
.nav-link:hover {
    color: var(--primary-color);
}
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.nav-item {
    padding: 0 10px;
}
.nav-item .active {
    color: green;
    border: 1px solid #242424;
    border-radius: 3px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.5px var(--primary-color);
    border-radius: 0;
}
.bx-menu {
    color: var(--text-color);
}
.navbar-toggler {
    border: 0;
}



/* -----------------------
DROAPDOWN CSS
--------------------------*/
.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu{
  display: block;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -5px;
}
.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}





.con-btn {
    background-size: 150%;
    display: flex;
    /* margin: 16px .4rem !important; */
    font-weight: 600;
    position: relative;
    padding: 2px;
    border-radius: 3px;
    overflow: hidden;
    transition: 0.3s ease all;
}

.con-btn:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: var(--primary-color);
  z-index: -1;
}
.con-btn:hover a{
  color: #FFF;
  border: 1px solid #FFF;
}
.con-btn:hover:before, button:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
.con-btn:active {
  transform: scale(0.9);
}
.con-btn a {
    color: var(--text-color);
    line-height: unset;
    background: transparent;
    padding: 8px 1.5rem;
    font-weight: 500;
    border-radius: 2px;
    border: 1px solid var(--text-color);
}


/* -----------------------
BANNER CSS
--------------------------*/
section.banner-bg {
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 50px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.banner-content .sub-title {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    display: block;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.h-banner img{
    max-width: 130%;
}
.sub-title i {
    font-size: 35px;
}
.title {
    font-size: 70px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}
.title div {
    display: inline-block;
    opacity: 0;
}
.social-icons {
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    gap: 45px;
    position: absolute;
    left: 30px;
    top: 39%;
}
.social-icons .title-icons {
    margin-bottom: 0;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    transform: rotate(180deg);
    position: relative;
}
.social-icons .title-icons::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -31px;
    width: 2px;
    height: 20px;
    background: #fff;
}
.social-icons .list-wrap {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 17px;
}
.social-icons .list-wrap ul li {
    margin-right: 10px !important;
}
.social-icons .list-wrap li a {
    color: #fff;
    transform: rotate(-90deg);
    display: block;
}
.social-icons ul {
    padding-left: 0;
}
.home-img img{
    position: absolute;
    top: -125px;
    right: 0;
    max-width: none;
    width: 550px;
}











/* -----------------------
ABOUT CSS
--------------------------*/
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50%;
    padding: 50px 0;
    position: relative;
}
.about-l i {
    color: var(--primary-color);
    font-size: 25px;
    margin-right: 5px;
}
.about::after {
    content: "";
    position: absolute;
    height: 250px;
    width: 250px;
    background-image: url(assets/img/asteroid.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: -80px;
    top: 20%;
    z-index: -1;
    animation: rotateAsteroid 10s infinite linear;
}
@keyframes rotateAsteroid {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.about-l {
    position: sticky;
    top: 80px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content:start;
    margin-top: 20px;
}
.about-l h1{
    font-size: 45px;
    font-weight: 300;
}
.about-r {
    padding-left: 50px;
    position: relative;
}
.content-box h4::after {
    content: '';
    position: absolute;
    left: -10.5px;
    background-color: var(--primary-color);
    mask-image: url(assets/img/dot-icon.svg);
    width: 21px;
    height: 21px;
}
.highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 50px;
}
.content-box {
    padding: 40px;
    border-left: 1px solid var(--primary-color);
    position: relative;
}
.content-box i {
    font-size: 50px;
    margin: 15px 0;
    color: var(--primary-color);
    margin-right: 10px;
}
.btn-custom:hover {
    border: 1px solid #FFF;
}
.btn-custom {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 40%;
}
.btn-custom i {
    color: var(--primary-color);
}
.scroll-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    opacity: 0.8;
    transition: transform 0.3s ease-in-out;
}






/* -----------------------
SERVICES CSS
--------------------------*/
#services {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.horizontal__content {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.horizontal__item {
    min-width: 33.33%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service h1{
    font-size: 45px;
    font-weight: 300;
}
.service i {
    color: var(--primary-color);
    font-size: 25px;
    margin-right: 5px;
}
.p-card{
    position: relative;
    display: flex;
    flex-direction: column;
    background-clip: border-box;
    background-image: url(assets/img/p-card-bg.svg);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 30px;
    border: 1px solid #5a5a5a4a;
    transition: .3s;
}
.p-card:hover{
    transform: translateY(-5px);
}
.p-card:hover i{
    color: #FFF;
    transform: rotate(-50deg);
}
.p-card-body{
    padding: 30px;
}
.service-img i::before{
    border-radius: 50%;
    padding: 7px;
    transition: .3s;
    border: 1px solid #5a5a5a4a;
}
.service-img i{
    font-size: 35px;
    transition: .3s;
    color: var(--primary-color);
    transition: .3s;
}
.service-img{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 80px;
}
.service-img img{
    max-width: 100px;
}
.service p{
    margin-bottom: 70px;    
}








/* -----------------------
VIDEO SEC CSS
--------------------------*/
.video-sec {
    position: relative;
    z-index: 99;
    padding-top: 50px;
    padding-bottom: 50px;
}
.video-bg {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-image: url(assets/img/prg-bg2.jpg);
}
.video-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #282f3b;
    opacity: 0.8;
}
.video-content_box{
    position: relative;
    padding:30px;
    z-index: 10;
}
.video-content_box .col-lg-5 {
    text-align: right;
}
.video-box-embed {
    position: relative;
    width: 75%;
    padding-top: 42.25%;
    overflow: hidden;
    border-radius: 10px;
}

.video-box-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-button {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_box_inner{
    position: relative;
    margin-bottom: 20px;
}
.content_box_inner h2{
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    transition: 0.5s ease-in-out;
}
.video_box{
    position: relative;
    width: 70px;
    height: 70px;
    display: inline-block;
}
.video_box::before, .video_box::after {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s infinite;
    animation-delay: 0.9s;
    transition: all 0.4s ease;
    z-index: 0;
    content: "";
}
.video_box::after {
    animation-delay: 0.1s;
}
.video_box a {
    position: relative;
    display: inline-block;
    font-size: 30px !important;
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 75px;
    text-align: center !important;
    border-radius: 50%;
    background: var(--primary-color);
    background-image: inherit;
    z-index: 10;
}
.video_box.color_white a {
    background: var(--text-color);
    color: var(--primary-color);
}
@keyframes ripple {
    70% {
        background: rgba(255, 255, 255, 0);
        width: 120px;
        height: 120px;
    }
    100% {
        background: rgba(255, 255, 255, 0);
        width: 0px;
        height: 0px;
    }
}



















/* -----------------------
FLATFORM CSS
--------------------------*/
.platform{
    padding: 50px 0;
    position: relative;
}
.platform-card{
    text-align: center;
    padding: 10px 10px;
}
.br-left .col-3{
    padding: 0 !important;
}
.br-left .col-3:nth-child(-n+4) .platform-card{
    border-right: 1px solid #5a5a5a4a;
    border-bottom: 1px solid #5a5a5a4a;
}
.br-left .col-3:nth-child(n+5) .platform-card{
    border-right: 1px solid #5a5a5a4a;
}
.br-left .col-3:nth-child(4) .platform-card,
.br-left .col-3:nth-child(8) .platform-card {
    border-right: none;
}
.platform-card p{
    text-align: center;
    margin-top: 10px;
}
.platform-card img{
    width: 70px;
}
.platform-img{
    align-items: flex-start;
    display: flex;
}
.platform-heading h2{
    margin-bottom: 15px;
}
.p-highlight {
    color: var(--primary-color);
    font-weight: 600;
}
.exp {
    position: relative;
}
.experience-img {
    position: absolute;
    bottom: -50px;
    right: -50px;
    transform: translate(-50%, 50%);
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* -----------------------
OUR CLIENTS CSS
--------------------------*/
.slider {
    /* background: white; */
    /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125); */
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    /* width: 1150px; */
}
.slider::before,
.slider::after {
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.slider::before {
    left: 0;
    top: 0;
}
.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: max-content;
}
.client {
    height: 100px;
    width: 250px;
    border: 1px solid #4e4e4e;
    margin-left: 30px;
    border-radius: 7px;
}
.client img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}










/* -----------------------
ABOUT INFO CSS
--------------------------*/
.left-con {
    /* background: linear-gradient(45deg, #009688, #004d40); */
    padding: 35px;
}
.info-content {
    display: flex;
    gap: 35px;
    align-items:flex-start;
}
.info-icon {
    padding: 5px;
    background: #00a01d;
    border-radius: 10px;
}
.info-icon i {
    font-size: 50px;
}












/* -----------------------
FOOTER TOP CSS
--------------------------*/
.footer-top{
    padding: 50px 0 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.t-container{
    background: #212426;
    border: 1px solid #5a5a5a4a;
    border-radius: 15px;
    padding: 50px 0 50px;
}
.t-text h2 span {
    color: var(--primary-color);
}
.t-button {
    display: inline-block;
    border: 1px solid #FFF;
    padding: 12px 24px;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.t-button a {
    color: white;
}
.t-button:hover {
    background-color: var(--primary-color);
}


/* -----------------------
PROVIDDING SERVICES
--------------------------*/
.providing-service {
    position: relative;
    padding: 80px 0;
}
.pservice-img {
    position: relative;
}
.thumbnail-img {
    overflow: hidden;
    display: block;
    border-radius: 16px;
    max-width: 100%;
}
.thumbnail-img img {
    width: 300px;
    transition: 0.3s;
    
}
.pservice-img .small {
    position: absolute;
    left: 50%;
    bottom: -30%;
    transform: translate(-50%, -50%);
    width: 50%;
}
.service-content .title {
    margin-bottom: 25px;
    color: var(--color-service-heading);
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
}
.service-content p.disc {
    max-width: 90%;
}
@media screen and (max-width: 768px) {
    .service-content p.disc {
        max-width: 100%;
    }
}
.under-line-btn {
    color: var(--primary-color);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
    position: relative;
    transition: all 0.4s;
}
.under-line-btn::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: -5px;
    height: 1px;
    background: var(--primary-color);
    width: 0;
    z-index: 1;
    transition: all 0.4s;
}
.under-line-btn::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    height: 1px;
    background: #BCBFDB;
    width: 100%;
}
.providing-service .one {
  position: absolute;
  left: 0px;
  top: 100px;
  width: 120px;
}
.providing-service .two {
  position: absolute;
  right: 15%;
  top: 100px;
}
.providing-service .three {
  position: absolute;
  right: 40%;
  top: 45%;
}
.providing-service .four {
  position: absolute;
  right: 70%;
  top: 95%;
}
.providing-service .five {
  position: absolute;
  right: 10%;
  top: 100%;
}
.bottom-1 .small {
    right: 0;
    left: unset;
}
.ph-img img{
    width: 75% !important;
}


/* -----------------------
PROVIDDING SERVICES
--------------------------*/
.service-about {
    padding: 80px 0;
}
.title-service-about .stitle {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    margin-top: 10px;
}
.title-service-about span {
    color: var(--primary-color);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.28px;
}
.mt--70 {
    margin-top: 70px;
}
.about-image-bg {
    background-image: url(assets/img/about-service.jpg);
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
    background-attachment: fixed;
}
.service-about-content {
    margin-top: -120px;
    padding: 0 60px;
}
.service-about-content-box {
    padding: 30px;
    border-radius: 16px;
    /* border: 1px solid #3e3e3e; */
    background: #FFF;
    color: #000;
}
.service-about-content-box .number {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 500;
}
.service-about-content-box .title3 {
    font-size: 20px;
    font-weight: 500;
}
.service-about-content-box p.disc {
    font-size: 16px;
    font-weight: 300;
}






/* -----------------------
LEAD GENERATION MEDIUMS CSS
--------------------------*/
.mediums {
    padding: 80px 0;
}
.medium-box {
    position: relative;
    padding: 80px;
    background: repeating-linear-gradient(45deg, #0000007d, #00000087 100px);
}
.medium-title .pre i {
    color: var(--primary-color);
    margin-bottom: 15px;
}
.medium-title h6 {
    font-weight: 500;
    font-size: 25px;
}
.medium-title h6 span{
    color: var(--primary-color);
}
.box-border {
    border: 1px solid #5a5a5a4a;
}

.prgh{
    border: 1px solid #4e4e4e;
    padding: 55px;
    border-radius: 15px;
}
.paragharph h4 {
    font-size: 19px;
}
.paragharph p {
    font-size: 17px;
    text-align: justify;
}
.paragharph h2{
    font-weight: 400;
    margin-bottom: 30px;
}
.paragharph h2::after{
    background-color: var(--primary-color);
    bottom: -10px;
    height: 2px;
    width: 80px;
    position: relative;
    content: "";
    display: block;
}
.paragharph h4{
    font-weight: 400;
    margin-bottom: 30px;
}
.paragharph h4::after{
    background-color: var(--primary-color);
    bottom: -10px;
    height: 2px;
    width: 80px;
    position: relative;
    content: "";
    display: block;
}
/* .typed-cursor {
    opacity: 0 !important;
} */





/* -----------------------
MOBLIE MARKETING CSS
--------------------------*/
.m-headig {
    color: white;
    padding: 120px 20px;
    position: relative;
    background-image: url('assets/img/prg-bg.jpg');
    /* background-image: url('assets/img/prg-bg1.jpg'); */
    /* background-image: url('assets/img/prg-bg2.jpg'); */
    /* background-image: url('assets/img/prg-bg3.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;

    /* background: linear-gradient(135deg, #4CAF50, #56CCF2);
    background: linear-gradient(45deg, #ff007f, #00ffcc);
    background: linear-gradient(45deg, #6a0dad, #1e3a5f);
    background: linear-gradient(45deg, #ff8a00, #ff4081, #c2185b);
    background: linear-gradient(45deg, #bfa300, #c0c0c0);
    background: linear-gradient(45deg, #009688, #004d40);
    background: linear-gradient(45deg, #d32f2f, #ff7043); */
}
.m-headig::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.m-headig .container {
    position: relative;
    z-index: 2;
}
.uline::after {
    background-color: var(--primary-color);
    height: 2px;
    width: 100px;
    position: relative;
    content: "";
    display: block;
    margin: 0 auto; 
}
.w-mobile-wrap .col {
    display: flex;
    justify-content: center;
}
.w-mobile-wrap .col .w-mobile-box {
  margin-bottom: 24px;
}
.w-mobile-wrap .col .w-mobile-box span {
  width: 70px;
  height: 70px;
  font-weight: 700;
  font-size: 28px;
  background-color: #07121a;
  color: #FFF;
  border-radius: 50%;
  position: relative;
}
.w-mobile-wrap .col .w-mobile-box span::before {
  position: absolute;
  left: 100%;
  top: 32px;
  background-image: url(assets/img/shape/w-mobile-1.png);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 256px;
  height: 91px;
}
.w-mobile-wrap .col .w-mobile-box span.w-mobile-2 {
  background-color: #07121a;
  color: var(--primary-color);
}
.w-mobile-wrap .col .w-mobile-box span.w-mobile-2::before {
  top: -60px;
  background-image: url(assets/img/shape/w-mobile-2.png);
  width: 255px;
  height: 120px;
}
.w-mobile-wrap .col .w-mobile-box span.w-mobile-3 {
  background-color: #07121a;
  color: #fff;
}
.w-mobile-wrap .col .w-mobile-box span.w-mobile-3::before {
  top: 28px;
  background-image: url(assets/img/shape/w-mobile-3.png);
  width: 254px;
  height: 49px;
}
.w-mobile-wrap .col .w-mobile-box span.w-mobile-4 {
  background-color: #07121a;
  color: var(--primary-color);
}
.w-mobile-wrap .col .w-mobile-box span.w-mobile-4::before {
  display: none;
}
.w-mobile-wrap .col .w-mobile-box h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  margin: 20px 0 5px;
}
.w-mobile-wrap .col .w-mobile-box p {
  max-width: 218px;
  font-size: 15px;
  text-align: left;
}
.w-mobile-wrap .col:nth-child(even) {
  margin-top: 70px;
}
.w-mobile-wrap .col:last-child {
  margin-top: 40px;
}
.w-mobile-btn-wrap a {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 8px 14px;
  color: #00C4B3;
}
.text-center p{
    margin-top: 20px;
    text-align: center;
}






/* -----------------------
WHHAT IS MOBILE MARKETING CSS
--------------------------*/
.wht-container {
    position: relative;
    padding: 50px 0;
    text-align: center;
}
.wht-container p{
    text-align: center;
}
.wht-card-1:hover, .wht-card-2:hover, .wht-card-3:hover, .wht-card-4:hover {
    background: transparent;
}
.wht-container::before{
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(assets/img/shape/question.png);
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    z-index: -1;
}
.wht-card-1, .wht-card-2, .wht-card-3, .wht-card-4 {
    background-color: #030d15;
    padding: 30px;
    border: 1px solid #4e55614a;
    border-radius: 10px;
    text-align: center;
}
.wht-card-1 h4, .wht-card-2 h4, .wht-card-3 h4, .wht-card-4 h4 {
    margin: 20px 0;
}
.wht-card-1 p, .wht-card-2 p, .wht-card-3 p, .wht-card-4 p {
    color: #b1b1b1;
}
.wht-card-1 span, .wht-card-4 span {
    width: 70px;
    height: 70px;
    font-weight: 700;
    font-size: 28px;
    background-color: #07121a;
    color: #FFF;
    border-radius: 50%;
    position: relative;
}
.wht-card-2 span, .wht-card-3 span {
    width: 70px;
    height: 70px;
    font-weight: 700;
    font-size: 28px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 50%;
    position: relative;
}
.wht-card-1 span::before {
    position: absolute;
    top: 0;
    left: 260px;
    background-image: url(assets/img/shape/arrow.svg);
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 300px;
    transform: rotate(90deg);
}
.wht-card-3 span::before {
    position: absolute;
    top: 0;
    left: 260px;
    background-image: url(assets/img/shape/arrow.svg);
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 300px;
    height: 300px;
    transform: rotate(270deg);
}









/* -----------------------
MODEL CARDS CSS
--------------------------*/
.model-container {
    position: relative;
    padding: 50px 0;
    text-align: center;
}
.model-container p{
    text-align: center;
}
.model-card-1:hover, .model-card-2:hover, .model-card-3:hover, .model-card-4:hover {
    background: transparent;
}
.model-container::before{
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(assets/img/model-img.png);
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 450px;
    height: 450px;
    z-index: -1;
}
.model-card-1, .model-card-2, .model-card-3, .model-card-4 {
    background-color: #030d15;
    padding: 30px;
    border: 1px solid #4e55614a;
    border-radius: 10px;
    text-align: center;
}
.model-card-1 h4, .model-card-2 h4, .model-card-3 h4, .model-card-4 h4 {
    margin: 20px 0;
}
.model-card-1 p, .model-card-2 p, .model-card-3 p, .model-card-4 p {
    color: #b1b1b1;
}
.model-card-1 span, .model-card-4 span {
    width: 70px;
    height: 70px;
    font-weight: 700;
    font-size: 28px;
    background-color: #07121a;
    color: #FFF;
    border-radius: 50%;
    position: relative;
}
.model-card-2 span, .model-card-3 span {
    width: 70px;
    height: 70px;
    font-weight: 700;
    font-size: 28px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 50%;
    position: relative;
}







/* -----------------------
MOBILE MARKETING SOLUTION CARDS CSS
--------------------------*/
.solution-card{
    padding: 20px 0;
    background-color: #07121a;
    color: var(--text-color);
    backdrop-filter: blur(30px);
    transition: .5s;
}
.solution-card:hover {
    background: transparent;
    border: 1px solid #07121a;
}
.solution-card .solution-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: var(--primary-color);
}
.solution-icon i{
    font-size: 20px;
}
.solution-card .icon-view {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 48px;
    opacity: 0;
    transition: all 0.9s;
}
.solution-card:hover .icon-view {
    opacity: .2;
    transition: all 0.9s;
}


/* -----------------------
RESULT CSS
--------------------------*/
.result-con {
    background: linear-gradient(180deg, rgb(0 116 21 / 48%) 0%, rgb(0 38 26 / 50%) 54%, rgb(0 38 26 / 0%) 100%);
    border-radius: 15px 15px 0 0;
    padding: 50px;
}
.result-con h1 span {
    color: var(--primary-color);
}
.result-con h1 {
    font-size: 45px;
    margin-bottom: 20px;
}
.result {
    display: flex;
    padding: 20px;
    gap: 30px;
    
}
.result-card {
    background: #07121a;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}
.result-card p {
    margin-top: 20px;
    text-align: center;
}
.result-content-con {
    padding: 0 50px;
}
.result-content {
    padding: 25px 30px;
    border: 1px solid #4E5561;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}
.result-content::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    width: 0;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.result-content:hover::before {
    width: 100%;
}
.result-card h3 {
    color: var(--primary-color);
    font-size: 50px;
}
.result-content p {
    color: #c8c8c8;
}
.result-content i {
    color: var(--primary-color);
}



/* -----------------------
SOCIAL CARDS CSS
--------------------------*/
.social-card {
    padding: 20px;
    border: 1px solid #4e4e4e;
    border-radius: 15px;
    transition: .5s;
}
.social-card:hover .bx-search {
    color: var(--primary-color);
}
.social-card:hover .bxl-google {
    color: #fbbc05;
    transition: .5s;
}
.social-card:hover .bxl-meta {
    color: #0179f1;
    transition: .5s;
}
.social-card h3::after {
    background-color: var(--primary-color);
    bottom: -10px;
    height: 2px;
    width: 80px;
    position: relative;
    content: "";
    display: block;
}
.social-card h3 {
    margin-bottom: 30px;
}
.s-icon {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #07121a;
    border-radius: 15px;
}
.s-icon i {
    font-size: 60px;
}

















/* -----------------------
FOOTER TOP CSS
--------------------------*/
.footer-map{
    padding: 50px 0 0 0;
    position: relative;
}
.footer-map-in{
    position: relative;
    /* border-radius: 15px; */
    overflow: hidden;
    height: 350px;
}
.footer-map-con{
    position: relative;
    /* border-radius: 25px 0 0 25px; */
    background: linear-gradient(270deg, rgb(255 255 255 / 0%) 0, rgba(255, 255, 255, .51) 31.91%, #fff 61.95%);
    padding: 50px 190px 50px 40px;
    max-width: 100%;
    width: 570px;
    z-index: 1;
}
.footer-map-con h2{
    color: var(--primary-color);
}
.footer-map-con p{
    color: #1b1b1b;
}
.map-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.map-container iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.map-button a{
    color: #FFF;
}
.map-button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #FFF;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #141414;
}
.map-button:hover a{
    color: #FFF;
}








/* -----------------------
BANNER CSS
--------------------------*/
.banner {
    background: linear-gradient(135deg, #004b0e,#000);
    color: var(--text-color);
    padding: 60px 40px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgb(165 165 165 / 8%); */
    position: relative;
    overflow: hidden;
    top: 110px;
}
.banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.banner h1{
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}
.banner p {
    font-size: 18px;
    max-width: 900px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}
.banner-btn {
    display: inline-block;
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(155, 155, 155, 0.3);
}
.banner-btn:hover {
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(155, 155, 155, 0.3);
}









/* -----------------------
ABOUT CSS
--------------------------*/
.about-img img{
    transform: scaleX(-1);
}
.sub-title2 {
    font-size: 14px;
    color: var(--primary-color);
}
.about-content {
    margin-top: 40px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    border: 1px solid #5a5a5a4a;
    border-radius: 15px;
}

.btn-custom2:hover {
    border: 1px solid #FFF;
}
.btn-custom2 {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.about-content-text {
    text-align: center;
}
.about-content-text p {
    text-align: center;
}
.btn-custom2 i {
    color: var(--primary-color);
}
.about-list li {
    list-style: none;
    margin-bottom: 10px;
}
.about-list li:hover {
    color: var(--primary-color);
}
.about-list i {
    margin-right: 10px;
}
.bx-comment-dots {
    padding: 20px;
    background: transparent;
    border: 1px solid #5a5a5a4a;
    border-radius: 30px;
    color: var(--primary-color);
    transition: .3s;
}
.bx-comment-dots:hover {
    background-color: #FFF;
}

/* -----------------------
RATING BOX CSS
--------------------------*/
.review-con {
    text-align: center;
    margin: 40px auto 40px;
    padding: 15px;
    /* border: 1px solid #5a5a5a4a; */
    background: #12150e;
    border-radius: 5px;
    position: relative;
}
.review-box {
    align-items: center;
    justify-content: center;
    display: flex;
    border-right: 1px solid #5a5a5a4a;
}
.col-lg-2:nth-child(7) .review-box {
    border-right: none;
}
.star-rating {
    margin-top: 10px;
}
.filled {
    color: #ffb400;
}
.review-img img {
    width: 200px;
}








/* -----------------------
DATA COUNT CSS
--------------------------*/
.data-con {
    background-color: #07121a;
    padding: 40px;
    border-radius: 15px;
}
.data-icon {
    padding: 15px;
}
.data-icon i {
    border: 1px dashed #FFF;
    font-size: 45px;
    padding: 25px;
    border-radius: 10px;
    color: var(--primary-color);
}





/* -----------------------
CONTACT CSS
--------------------------*/
.con-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    background-color: #07121a;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;

}
.con-icon i {
    font-size: 25px;
}
.con-form {
    padding: 25px;
    background: #07121a;
    border-radius: 15px;
}
.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #B0B0B0;
}
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: #FFF;
    color: #000;
    font-size: 14px;
}
.form-control:focus {
    background-color: #FFF;
    border-color: #00a01d;
    outline: none;
}
.form-footer label {
    font-size: 11px;
}
.form-footer p {
    font-size: 10px;
}
.text-danger {
    color: #FF4C4C; /* Red color for error or required fields */
}




/* -----------------------
WEB DEV CSS
--------------------------*/
.web-card {
    padding: 30px;
    border: 1px solid #4e4e4e;
    border-radius: 10px;
}
.web-img img {
    width: 300px;
    border-radius: 5px;
}







/* -----------------------
CALL BUTTON CSS
--------------------------*/
.btn-call-fixed {
    position: fixed;
    z-index: 2;
    top: 85%;
    left: 30px;
}

.btn-call-fixed .icon-wrap {
    float: left;
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
}

.btn-call-fixed .icon-wrap i {
    font-size: 24px; 
    color: #fff;
    background: #28a745; 
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-luc-lac 1.2s infinite ease-in-out;
}

.btn-call-fixed .icon-wrap .border-1 {
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    top: -25px;
    left: -25px;
    border: solid 1px #28a745;
    border-radius: 50%;
    animation: vien-lon-zoom 1.2s infinite ease-in-out;
}

.btn-call-fixed .icon-wrap .border-2 {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 1;
    top: -11px;
    left: -11px;
    border: solid 1px #28a745;
    border-radius: 50%;
    animation: vien-nho-zoom 2.2s infinite ease-in-out;
}

.btn-call-fixed .text {
    float: left;
    padding-left: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #FFF;
    line-height: 22px;
}

.btn-call-fixed .text span:last-child {
    font-size: 20px;
}

@media(max-width: 1599px) {
    .btn-call-fixed .text {
        display: none;
    }

    .btn-call-fixed:hover .text {
        display: block;
        position: absolute;
        z-index: 1;
        top: 0;
        left: calc(100% + 20px);
        white-space: nowrap;
    }
}

/* Animations */
@keyframes icon-luc-lac {
    0%, 100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10%, 30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%, 40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes vien-nho-zoom {
    0%, 100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.2;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.5;
    }
}

@keyframes vien-lon-zoom {
    0% {
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: 0.1;
    }
    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.1;
    }
    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.1;
    }
}





/* -----------------------
FOOTER CSS
--------------------------*/
footer {
    background-image: url('assets/img/footerbg.png');
    background-size: cover;
    background-position: center;
    background-color: #000;
    color: var(--text-color);
    padding: 200px 0 30px;
    /* margin-top: 60px; */
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}
.footer-section p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 12px;
}
.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-section ul {
    padding-left: 1rem;
}
.footer-section ul li a:hover {
    color: var(--text-color);
    transform: translateX(5px);
}
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: .3s;
}
.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}
.subscribe-form {
    display: flex;
    margin-top: 20px;
    position: relative;
}
.subscribe-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: .3s;
}
.subscribe-form input::placeholder {
    color: #bbb;
}
.subscribe-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}
.subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    width: 40px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscribe-form button:hover i{
    color: #000;
}
.subscribe-form button:hover {
    background-color: #FFF;
}
.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 17px;
}
.copyright a {
    color: var(--primary-color);
    text-decoration: none;
}
