@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    font-family: sans-serif;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
}



::-webkit-scrollbar {
    width: 8px;


}


::-webkit-scrollbar-track {
    background: #d6ffff;
    border-radius: 10px;

}


::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fc1290d1, #fc1290d1);
    /* Custom color */
    border-radius: 10px;
    transition: .3s ease-in-out;
    border: 1px solid black;
}


::-webkit-scrollbar-thumb:hover {
    background: #358a9c;
}

.btn{
    background-color: #fc1290 !important;
    padding: 12px 35px;
    color: #fff;
    transition: all .5s ease-in-out;
    border-radius: 50px;
    text-transform: uppercase;
}
.btn:hover{
    background-color: #c4e428 !important;
    color: #000;
}
.btn-primary {
    background: #c4e428 !important;
    color: #000;
}
.btn-primary:hover{
    background-color: #fc1290 !important;
    color: #fff;
}

a {
    text-decoration: none;
}
p{
    font-weight: 300;
}
li {
    list-style: none;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Roboto Slab", serif;
}
/* Logo Styling */
header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    transition: background-color 0.5s ease, padding 0.5s ease-in-out;


}

.header-active {
    background-color: #434343;
    backdrop-filter: blur(30px);
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}


header .logo {
background: #00000066;
    backdrop-filter: blur(30px);
    width: 20%;
    border-radius: 8px;
    padding: 5px 5px 5px;
    align-items: center;
}


header .logo a img {
    width: 200px;
}

/* Navigation Links */
header ul li a {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.social ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.social ul li::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 100%;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    mix-blend-mode: multiply;
    z-index: 0;
}

.social ul li:hover::after {
    bottom: 0;
}

.social ul li:hover i {
    color: #ffffff !important;
    font-size: 1.3rem;
    transition: 0.3s ease-in-out;
    z-index: 1;
    position: relative;
}

.social ul li i {
    color: #555;
    font-size: 1.2rem;
    transition: 0.3s ease-in-out;
    z-index: 1;
    position: relative;
}

.social ul a:nth-child(1) li::after {
    background-color: #1877F2;
}

.social ul a:nth-child(2) li::after {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);

}

.social ul a:nth-child(3) li::after {
    background-color: #25D366;
}

.social ul a:nth-child(4) li::after {
    background-color: #34C759;
}



/* Hide the menu button on large screens */
header .openmenu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    display: block;
    top: 0;
    right: -100%;

    width: 320px;

    height: 100%;
    background-color: #4daabdbb;
    backdrop-filter: blur(20px) !important;
    padding: 50px;
    z-index: 100000;

    transition: right 0.4s ease-in-out;
    box-shadow: rgba(6, 44, 42, 0.4) 0px 0px 0px 2px, rgba(6, 44, 42, 0.4) 0px 4px 6px -1px, rgba(83, 135, 218, 0.08) 0px 1px 0px inset;
}

/* Sidebar Links */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li a {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Close Button */
.sidebar .closemenu {
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Mobile Responsive Navigation */
@media (max-width: 993px) {
    header .openmenu {
        display: block;
    }

    header .social,
    .navvv {
        display: none !important;
    }

    .sidebar {
        width: 30%;
        /* More space for better visibility */
        right: -30%;
    }
}


/* heroleft */
.all_content_vdo_hero {
    position: relative;
}

.mainhero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainhero .heroleft h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 20px;
}

.mainhero .heroleft p {
    font-size: 1.3rem;
    color: #f9f9f9;
    font-weight: 400;
}

.serv_sec {
    z-index: 2;
}

.serv_sec h3 {
    font-size: 1.3rem;
    color: #e9e9e9;
    font-weight: 600;
    margin-top: 2.5rem !important;
}

.box_x {
    background-color: #fc1290d1;
    width: 12rem;
    text-align: left;
    padding-left: 1rem;
    padding-top: .5rem;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.box_x i {
    font-size: 1.34rem;
    color: #ffffff !important;
}

.box_x p {
    font-size: 1.2rem !important;
    color: #ffffff !important;
}

.heroright {
    background-image: url('../img/bgggg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* width: 80%;  */

}

.heroright .girlbg {}

.heroright .girl {
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 55%;
}

.c1,
.c2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.c1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #fc1290d1;
    left: 70%;
    bottom: 95px !important;
}

.c2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #fc1290d1;
    margin-top: 20px;
    left: 0%;
    bottom: -45% !important;
    z-index: 999;
    display: none;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #fc1290d1;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(100px);
    animation: rotate-dot 5s linear infinite;
}

@keyframes rotate-dot {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

/* Inner circle dot */
.c2 .dot {
    transform: translate(-50%, -50%) translateX(75px);
    animation: rotate-dot-small 4s linear infinite;
}

@keyframes rotate-dot-small {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(75px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(75px) rotate(-360deg);
    }
}

.com {
    padding: .8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    z-index: 123;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: absolute;
    top: 8%;
    left: 0%;
    border-radius: 10px;
}

.com .icon {
    padding: .7rem;
    background-color: #c4e428;
    border-radius: 10px;
    position: relative;
}

.icon i {
    color: #ffffff;
    font-size: 1.2rem;
    display: inline-block;
    /* animation: zoom 4s infinite ease-in-out; */
}

@keyframes zoom {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.8);
    }

    100% {
        transform: scale(0.8);
    }
}

.com .icon .dot2 {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;

}

.com .icon .dot2 .dot3 {
    background-color: #fc1290d1;
    width: 10px;
    border-radius: 50%;
    height: 10px;

}


/* about css */
.about-us {
    padding: 60px 0;
    background-color: #000000;
}
.about-us-image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
    margin-right: 20px;
}
.about-image-box {
    width: calc(50% - 15px);
}
figure {
    margin: 0;
}
.image-anime {
    position: relative;
    overflow: hidden
}
.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    /* visibility: hidden; */
    overflow: hidden;
}
.about-img-1 figure, .about-img-2 figure, .about-img-3 figure {
    display: block;
    border-radius: 30px;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}
img{
    max-width: 100%;
}
.about-img-1 img, .about-img-2 img, .about-img-3 img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.about-img-1 img {
    aspect-ratio: 1 / 1.91;
}
.about-img-2 {
    margin-bottom: 30px;
}
.about-img-2 img, .about-img-3 img {
    aspect-ratio: 1 / 1.07;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.get-free-security-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.get-free-security-circle img {
    width: 100%;
    max-width: 166px;
    animation: infiniterotate 20s infinite linear;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.section-title {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
    font-weight: bold;
}
.section-title h3 {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fe1292;
    /* padding-left: 30px; */
    margin-bottom: 20px;
}
.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    color: #fe1292;
    margin-bottom: 0;
    cursor: none;
}
.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    color: white;
}
.about-us-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(90.15deg, #242424 1.15%, #fc1290 98.84%);
    border-radius: 100px;
    margin-bottom: 25px;
    margin-left: 20px;
    padding-right: 20px;
}
.feature_card p {
    margin-top: 0px;
    margin-bottom: 0;
    color: white;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.7;
    letter-spacing: 0.4px;
}
.srv_btn{
    color: #c7e528;
    text-decoration: underline;
    font-weight: 100;
}
.feature .feature_card h2 {
    position: relative;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 18px;
}
.about-us-body-img {
    width: 200px;
    height: 145px;
    background-color: #fff;
    clip-path: polygon(45% -70%, 96% 50%, 50% 155%, 0 50%);
    display: flex;
    margin-right: 10px;
    margin-left: -20px;
}
.about-us-body-img figure {
    width: 180px;
    height: 145px;
    clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
    overflow: hidden;
}
.about-us-body-img img {
    width: 180px;
    height: 145px;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.about-us-body-content {
    width: calc(100% - 190px);
}
.about-us-body-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}
.about-us-body-content p {
    color: #fff;
    margin: 0;
}
.about-footer-list, .about-footer-content {
    width: calc(50% - 15px);
}
.about-footer-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-footer-list ul li {
    background: url(../img/icon-check.svg) no-repeat;
    background-position: left top;
    background-size: 24px auto;
    line-height: 1.5em;
    padding-left: 35px;
    margin-bottom: 20px;
    color: white;
}
.about-footer-list ul li:last-child {
    margin-bottom: 0;
}
.about-contact-btn {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F5F5F5;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.about-contact-btn .icon-box {
    position: relative;
    height: 46px;
    width: 46px;
    background: linear-gradient(to right, #242424 0%, #c4e428 50%, #242424 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.about-contact-btn:hover .icon-box {
    background-position: right center;
}
.about-footer-btn-content {
    width: calc(100% - 56px);
}
.about-footer-btn-content h3 {
    font-size: 20px;
    color: white;
    margin: 0;
}
.about-contact-btn .icon-box img {
    width: 100%;
    max-width: 28px;
}
.ast {
    color: white;
    font-weight: 200;
    letter-spacing: 0.2px;
}
.about-footer-btn-content h3 a {
    color: inherit;
}
@keyframes infiniterotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }    
}
.mission {
    background: #487698;
    padding: 6rem 0rem;
    padding-bottom: 0;
}

.mission_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.mission .img_content {
    position: relative;
    width: 450px;
    height: 300px;
    background: linear-gradient(to bottom, #fc1290d1, #3c9278);
}

.content_part {
    position: relative;
}

.content_part_name {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.content_part_name::after {
    content: "TSSG-TECH";
    position: absolute;
    top: 3%;
    left: 0%;
    width: 100%;
    height: 100%;
    color: #365872d2;
    font-size: 3rem;
    font-weight: bold;
    transform: rotate(-25deg);
    opacity: 0.5;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content_part h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #f4f4f4;
}

.content_part p {
    font-size: 1.0rem;
    font-weight: 500;
    color: #f4f4f4;
}

.mission img {
    position: absolute;
    top: 15%;
    left: 10%;
}

.content_part .open {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: #f4f4f4;
    top: -10%;
    left: -6%;

}

.content_part .close {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: #f4f4f4;
    bottom: -10%;
    right: 1%;
}

.mission .small_support {
    position: absolute;
    right: -30%;
    top: 80%;
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: space-between;
    background: #fc1290d1;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    gap: .5rem;
}

.mission .small_support .for_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission .small_support .for_icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.small_text_part h3 {
    color: #ffffff;
    font-size: .5rem;
    font-weight: 400;
    margin-bottom: 0;
}

.small_text_part h1 {
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: 600;
}

@media (max-width:767px) {
    .mission .img_content {
        width: 300px;
        height: 200px;
    }
    .mainhero .heroleft p {
        display: none;
    }
    .but{
        text-align: center;
    margin-top: 10px;
    }
    .mission .small_support {
        width: 160px;
        padding: 0.5rem;
    }

    .mission .small_support .for_icon i {

        font-size: 1rem;
    }

    .small_text_part h3 {

        font-size: .5rem;

    }

    .small_text_part h1 {

        font-size: .8rem;

    }

    .content_part p {
        font-size: .7rem;
    }

    .content_part h1 {
        font-size: 1.7rem;
        text-align: center;
    }

    .content_part .open {
        position: absolute;

        top: -10%;
        left: 0%;
    }

    .content_part_name::after,
    .about_text_name::after {
        font-size: 2.5rem;
        transform: rotate(-20deg);

    }

    .about p {
        font-size: .8rem;

        line-height: 1.6;

    }
}


/* vission section */
.extraimg {
    width: 100%;

}

.vission {
    background: #fc1290d1;
}

.vission_img_section {
    position: relative;
    z-index: 1;
}

.vission_img_section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/new.png) center center no-repeat;
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
}

/* feature section */
.feature {
    background-image: url('../img/cybersecurity.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background-attachment: fixed;
}

.feature::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000e0;
    z-index: 1;
}

.feature h3 {
    /* color: #ffffff; */
    font-size: 1rem;
    font-weight: bold;
    position: relative;
}

.feature h2 {
    position: relative;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.feature .feature_card {
    background-color: #ffffff43;
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 3px solid #9f9198d1;
    transition: .3s ease-in-out;
    z-index: 3;
}

.feature .feature_card:hover {
    border: 3px solid #c4e129;
    background-color: #4daabd4c;
    z-index: 3;
}
.servc h2{
    max-width: 600px;
    margin: 0 auto 40px;
}

.feature .feature_card .icon {
    width: 90px;
    height: 90px;
    color: #fff;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    top: 25px;
    transition: .3s ease-in-out;
    display: inline-flex;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #fc1290, #000);
    margin-bottom: 20px;
}

.feature .feature_card:hover .icon {
    background-color: #fc1290d1;
    z-index: 3;
}

.feature .feature_card h2 {
    font-size: 2rem !important;
    color: #000;
    font-weight: 600 !important;
    margin-top: 40px !important;
    z-index: 3;
}
.text_class_card_number {
    position: absolute;
    bottom: -47px;
    right: 20px;
    font-size: 91px;
    color: transparent;
    -webkit-text-stroke: 2px rgb(255 255 255 / 27%);
    text-shadow: 0 0 1px rgb(255 255 255 / 0%), 0 0 2px rgb(255 255 255 / 0%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
    letter-spacing: -2px;
}
.feature_card h3{
    font-size: 1.6rem;
    letter-spacing: 0;
    text-transform: capitalize;
    margin: 30px 0 20px;
    display: block;
}
.text_class_icon_circle {
    background: radial-gradient(at top center, #fc1290 0%, #000000c4 68%);
    color: #fff;
    border-radius: 50%;
    /* padding: 23px 21px; */
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 12px rgba(78, 138, 180, 0.5);
    height: 82px;
    width: 82px;
}
.text_class_icon_circle img{
    filter: brightness(5);
    padding: 6px;
    max-width: 60px
}
.why-chss .ferature-list-item .why-chs {
    height: 60px;
    width: 60px;
}
.why-chss .ferature-list-item .why-chs img {
    max-width: 60px;
    filter: brightness(3.5);
}
.why-chss .ferature-list-content {
    width: calc(100% - 80px);
    margin-left: auto;
}
.why-chss .ferature-list-item h3{
    color: #c4e428;
}
.why-chss .ferature-list-item{
    position: relative;
    /* background-color: var(--white-color); */
    border-radius: 15px;
    box-shadow: 0px 0px 100px 2px #0000000D;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.why-chss .ferature-list-item:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90.15deg, #242424 1.15%, #c4e428 98.84%);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.why-chss .ferature-list-item:hover:before {
    top: 0;
    bottom: auto;
    height: 100%;
}
.why-chss .ferature-list-item .ferature-list-content{
    position: relative;
    z-index: 1;
}
.why-chss .ferature-list-content h3 {
    font-size: 23px;
    transition: all .5s ease-in-out;
}
.why-chss .ferature-list-item:hover h3{
    color: #fff;
}
.choose-us h2{
    color: #c4e428;
}
.choose-us .feature-image{
    height: 464px;
}
/* service */

.our-feature{
    padding: 60px 0;
    background-color: #000;
}
.feature-image figure {
    display: block;
    border-radius: 30px;
    height: 100%;
}
.feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.62;
    object-fit: cover;
    border-radius: 30px;
}
.company-experience-info {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.company-experience-info .feature-image {
    width: calc(65% - 15px);
}
.company-experience-info .feature-image img {
    aspect-ratio: 1 / 0.652;
}
.company-experience-box {
    width: calc(35% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90.15deg, #242424 1.15%, #fc1290 50%, #242424 98.15%);
    background-size: 200% auto;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
    transition: all 0.4s ease-in-out;
}
.company-experience-content {
    border-bottom: 1px solid #ffffff33;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.company-experience-content h2 {
    font-size: 60px;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.company-experience-content p {
    color: #FFFFFF;
    opacity: 80%;
    margin-bottom: 0;
}
.our-client-images {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.client-image {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: -14px;
    width: 62px;
    height: 62px;
    overflow: hidden;
    z-index: 1;
}
.company-client-images .client-image {
    width: 32px;
    height: 32px;
    margin-left: -8px;
}
.client-image:first-child {
    margin: 0;
}
.company-client-images .client-image img {
    max-width: 30px;
}
.client-image.client-counter {
    background: linear-gradient(to right, #242424 0%, #fc1290 50%, #242424 100%);
    background-size: 200% auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}
.client-image.client-counter:hover {
    background-position: right center;
}
.company-experience-box:hover {
    background-position: right center;
}
.ferature-list-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ferature-list-item .icon-box {
    height: 60px;
    width: 60px;
    background: linear-gradient(to right, #242424 0%, #c4e428 50%, #242424 100%);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.ferature-list-item .icon-box img {
    max-width: 30px;
}
.ferature-list-content {
    width: calc(100% - 80px);
}
.ferature-list-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #c4e428;
}
.ferature-list-content p {
    margin-bottom: 0;
    color: white;
    font-size: 15px;
}
.ferature-list-item:hover .icon-box {
    background-position: right center;
}
.company-client-images .client-image.client-counter h3 {
    font-size: 10px;
    color: #010535;
    margin: 0;
}


/* Deal  */
.deal{
    background: #fff;
    padding: 60px 0 0;
}
.deal span {
    display: block;
    margin-bottom: 30px;
    font-size: 23px;
}
.deal span a{
    color: rgb(194 222 40);
}
.deal .servc h2 {
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Corrected class name */
.service_card_img {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.service_card_img img {
    width: 60px;
}

.service_card_main h1 {
    font-size: 1.8rem;
    color: #464646;
    margin-bottom: 1rem;
}

.service_card_main .para {
    height: 10rem;
    overflow: auto;
}

.service_card_main .para p {
    margin-bottom: .5rem !important;
}

.service_card_main p {
    font-size: 1rem;
    color: #464646;
}

/* 1 */
.service_card_main .btnn {
    display: flex;
    align-items: center;

}

.service_card_main .btnn a {
    padding: 1rem;
    width: 100%;
}

.service_card_main .btnn a:nth-child(1) {
    background-color: #d1f7ff;
    color: #454545;
    font-size: 1.0rem;
    font-weight: 500;
}

.service_card_main .btnn a:nth-child(2) {
    background-color: #00d5ff;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 500;
}

/* 2 */
.service_card_main .btnnn {
    display: flex;
    align-items: center;

}

.service_card_main .btnnn a {
    padding: 1rem;
    width: 100%;
}

.service_card_main .btnnn a:nth-child(1) {
    background-color: #d6d2ff;
    color: #454545;
    font-size: 1.0rem;
    font-weight: 500;
}

.service_card_main .btnnn a:nth-child(2) {
    background-color: #0055ff;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 500;
}

/* 3 */
.service_card_main .btnnnn {
    display: flex;
    align-items: center;

}

.service_card_main .btnnnn a {
    padding: 1rem;
    width: 100%;
}

.service_card_main .btnnnn a:nth-child(1) {
    background-color: #faceff;
    color: #454545;
    font-size: 1.0rem;
    font-weight: 500;
}

.service_card_main .btnnnn a:nth-child(2) {
    background-color: #ff00ae;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 500;
}

/* 4 */
.service_card_main .btnnnnn {
    display: flex;
    align-items: center;

}

.service_card_main .btnnnnn a {
    padding: 1rem;
    width: 100%;
}

.service_card_main .btnnnnn a:nth-child(1) {
    background-color: #ffc6dc;
    color: #454545;
    font-size: 1.0rem;
    font-weight: 500;
}

.service_card_main .btnnnnn a:nth-child(2) {
    background-color: #ff0062;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 500;
}
.why-choose-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    border-top: 1px solid #ffffff33;
    margin-top: 20px;
    padding-top: 40px;
}
.why-choose-counter-item {
    position: relative;
    width: calc(25% - 37.5px);
    text-align: center;
}
.why-choose-counter-item .icon-box {
    margin-bottom: 20px;
}
.why-choose-counter-item .icon-box img {
    width: 100%;
    max-width: 60px;
}
.why-choose-counter-content h3 {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 10px;
}
.why-choose-counter-content p {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
}
.why-choose-counter-item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    bottom: 0;
    left: auto;
    transform: translateY(-50%);
    background: #ffffff33;
    width: 1px;
    height: 85%;
}
.why-choose-counter-item:nth-last-child(1):after{
    display: none;
}
/* Gradient Color */

/* techno */
.techno {
    background-image: url('../img/technoimg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0px;
}


.techno .techno_card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 16px;
    background-color: #ffffff34;
    backdrop-filter: blur(10px);
    border-radius: .5rem;
    border: 2px solid #c8e61f;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.techno img {
    width: 60px;
}

.techno p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff1f1;
    margin-top: 20px;
}

/* contact */
.contact {
    background-color: #000;
    padding: 60px 0;
}

.contact h1 {
    font-weight: bold;
    color: #000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

/* Form Section */
.form-container {
    width: 98%;
    background: #5b2241d1;
    /* Slight transparency */
    padding: 30px;
    border-radius: 12px;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Form Title */
.form-container .form-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    text-align: center;
}

/* Form Groups */
.form-container .form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-container .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(16, 15, 15, 0.6);
    z-index: 2;
}

/* Input & Textarea */
.form-container .form-group input,
.form-container .form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: none;

    border-radius: 7px;
    font-size: 16px;
    outline: none;
    background: rgb(255 255 255 / 21%);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(8px);
    color: #fff;
}

/* Placeholder Styling */
.form-container .form-group input::placeholder,
.form-container .form-group textarea::placeholder {
    /* background: rgba(6, 84, 88, 0.5); */
    font-size: 14px;
    color: #fff;
}

/* Hover Effect */
.form-container .form-group input:hover,
.form-container .form-group textarea:hover {
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2), -3px -3px 8px rgba(255, 255, 255, 0.1);
}

/* Focus Effect */
.form-container .form-group input:focus,
.form-container .form-group textarea:focus {
    background: rgb(218 220 220 / 15%);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.2), inset -3px -3px 6px rgba(255, 255, 255, 0.1);
}

/* Textarea */
.form-container .form-group textarea {
    height: 100px;
    resize: none;
}

/* Submit Button */
.form-container .btnn {
    width: 100%;
    background: linear-gradient(135deg, #fc1290d1, #fc1290d1);
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

/* Button Hover */
.form-container .btnn:hover {
    background: linear-gradient(135deg, #222, #c3e023);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4), -3px -3px 10px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Button Active */
.form-container .btnn:active {
    transform: translateY(1px);
}


/* Responsive */
@media (max-width: 1024px) {


    .form-container .left-content,
    .form-container {
        width: 90%;
    }
}



/* about navigation */
.navigation {
    background: url(../img/navv.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 250px;
}

.navigation p {
    margin-top: 12px;
}



/* contact box */


.Contact_box {
    padding: 3.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 1.1rem;
    height: 100%;
    transition: .3s ease;
    border: 1px solid rgba(6, 84, 88, 0.5);
    border-radius: 10px;
    background: rgba(6, 84, 88, 0.8526);
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    position: relative;
    backdrop-filter: blur(10px);
}

.Contact_box i {
    width: 3rem;
    height: 3rem;
    display: flex;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;

    align-items: center;
    justify-content: center;
    background: rgba(6, 84, 88, 0.8526);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    position: absolute;
    top: -26px;
    left: 55px;
    transform: translateX(-50%);
    bottom: auto;
    backdrop-filter: blur(10px);

}

.Contact_box:hover i {
    transform: scale(1.5);
    transition: transform 0.3s ease-in-out;
}





/* 
==================================
term css
=================================
*/
.term_policy {
    background-image: url('../img/termimg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#govern {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    padding: 1rem 0;
    margin-bottom: 1rem;
}
#governn{
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
    padding: 1rem 0;
    margin-bottom: 1rem;
}
#governnn{
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.term_content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
gap: 1rem;
}

.term_content .m_content:nth-child(odd) {
    padding: 1rem;
    backdrop-filter: blur(5px);
    background-color: #23232351;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
   
}
.term_content .m_content:nth-child(even) {
    padding: 1rem;
    backdrop-filter: blur(5px);
    background-color: #25252551;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}


.term_content .m_content h1 {
   
    font-size: 1.4rem;
    color: #6bd7ff;
    font-weight: bold;
  margin-bottom: 0.5rem;
}

.term_content .m_content p {
   
    font-size: 1rem;
    color: #d8d8d8;
    font-weight: 500;
  margin-bottom: 0.4rem;
   
}

/* 
==================================
footer
=================================
*/

.footer {
    color: #000;
    background: url(../img/foot.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 14px;
    padding-bottom: 0px;
    position: relative;
    padding-top: 60px;
}
.footer::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000e6;
    top: 0;
    right: 0;
    z-index: 0;
}
video{
    display: block;
}
.footer .container{
    position: relative;
}

.footer .footer-about .logo {
    margin-bottom: 25px;
    background: #837d7d66;
    backdrop-filter: blur(30px);
    width: 60%;
    border-radius: 8px;
    padding: 5px 5px 5px;
    align-items: center;
}

.footer .footer-about .logo img {
    max-height: 80px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}

.footer .footer-about p {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;

}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #000, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, #000, transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #0055ff !important;
    border-color: #e84545;
}

.footer h4 {
    font-size: 25px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 14px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, #000, transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #0055ff;
}

.footer .footer-contact p {
    margin-bottom: 5px;
    font-size: 16px;
}

.footer .copyright {
    position: relative;
    background: #fa1290;
    padding: 14px;
}

.footer .copyright p {
    margin-bottom: 0;
}





@media (max-width:1200px) {
    .mainhero .heroleft h1 {
        font-size: 3rem;

    }

    .mainhero .heroleft p {
        font-size: 1.0rem;

    }

    .serv_sec h3 {
        font-size: 1.0rem;

    }

    .services_in_sort {
        flex-wrap: wrap !important;
    }

    .box_x {
        width: 10rem;
        padding-left: 0.5rem;
    }

    .box_x i {
        font-size: 1.1rem;

    }

    .box_x p {
        font-size: .8rem !important;

    }

    .feature .feature_card {
        height: auto;
    }
}









@media (max-width:993px) {
    .heroleft_content {
        display: flex;
        /* padding-top: 2rem; */
        justify-content: start;
        flex-direction: column;

    }
    header{
        position: relative;
        background-color: #000;
    }


    header .logo a img {
        width: 150px;
    }

    .heroright {
        margin-top: 0;
        background: #222;
        height: 500px;
    }
    .com{
        left: 5%;
    }
    .mainhero .heroleft h1 {
        font-size: 2rem;

    }


    .heroright .girl {
        top: 75%;
    }

    .box_x {
        flex-wrap: wrap !important;
    }

    .feature h1,
    .service h1 {

        font-size: 2.0rem;


    }

    .c2 {
        bottom: -25% !important;
    }

    .content-box,
    .content-box1,
    .content-box2 {
        width: 5.0rem !important;
        height: 5.0rem !important;
    }

    .main_tree {

        font-size: .5rem !important;
        color: #fff;
        font-weight: 500;
        margin: 0 !important;
    }

    .footer .footer-contact {
        text-align: left !important;
    }
    .feature .feature_card {
        height: 100%;
    }
    .choose-us .feature-image, .contact img{
        display: none;
    }
    .why-choose-counter-content h3 {
    color: #fff;
    font-size: 35px;
    }
}

@media (max-width:767px) {
    .mainhero .heroleft h1 {
        font-size: 25px;
        text-align: center;
        margin-top: 0;
    }
    .com{
        width: 212px;
    }
    .box p {
        font-size: .8rem !important;

    }
    .text p{
        margin: 0;
    }
    .heroright{
        height: 400px;
    }
    .section-title h2 {
    font-size: 25px;
    }
    .about-us-body{
        flex-direction: column;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    }
    .about-us-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 25px;
}
.company-experience-info .feature-image{
    display: none;
}
.company-experience-box {
    width: 100%;
}
.deal span {
    font-size: 18px;
}
.why-chss .ferature-list-content h3 {
    font-size: 19px;
}
.why-chss .ferature-list-item .why-chs {
    height: 50px;
    width: 50px;
}
.why-chss .ferature-list-item .why-chs img {
    max-width: 50px;
}
.why-chss .ferature-list-content {
    width: calc(100% - 65px);
}
.why-choose-counter-item {
    position: relative;
    width: calc(50% - 37.5px);
    text-align: center;
}
    .about-us-body-img {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: 0;
}
.about-us-body-img figure, .about-us-body-img img {
    width: 100%;
    height: 100%;
}
.about-us-body-content {
    width: 100%;
    padding: 20px;
}
    .white_box{
        background: #222;
    }
    .serv_sec p.text-dark{
        background-color: #222 !important;
        color: #fff !important;
        margin-top: 0 !important;
        padding-top: 20px;
    }
    .btn {
    padding: 9px 25px;
    font-size: 14px;
    }
    .content-box,
    .content-box1,
    .content-box2 {
        width: 4.0rem !important;
        height: 4.0rem !important;
    }

    .main_tree {

        font-size: .4rem !important;
        color: #fff;
        font-weight: 500;
        margin: 0 !important;
    }

    .main_tree .line {
        height: 4.5rem;
    }

    .main_tree .content-text {
        top: 59%;
        right: 18%;
    }

    .main_tree .content-text1 {
        top: 66%;
        right: 32%;
    }

    .main_tree .content-text2 {
        top: 60%;
        left: 31%;
    }

    .main_tree .content-text3 {
        top: 53%;
        left: 22%;
    }

    .main_tree .content-text4 {
        top: 34%;
        right: 30%;
    }

    .main_tree .content-text5 {
        top: 39%;
        right: 53%;
    }

    .main_tree .content-text6 {
        top: 23%;
        right: 45%;
    }

    .main_tree .content-text7 {
        top: 20%;
        left: 23%;
    }
    .why-choose-counter-item:nth-last-child(3):after{
    display: none;
}
.why-choose-counter-item .icon-box img {
    width: 100%;
    max-width: 45px;
}
.why-choose-counter-content h3 {
        color: #fff;
        font-size: 26px;
    }
    .techno img {
    width: 45px;
}
.contact .section-title{
    margin-bottom: 0;
}
.footer .footer-links{
    margin-top: 20px;
}
header .logo{
    width: 45%;
}
.g-5,  .gx-5 {
    --bs-gutter-x: 0rem;
}
}



/* cursor */

/* whatapp */
.socialside {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    z-index: 999999999999999999999999;
}

.call {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00da50;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 35%;
}

.whatsapp {

    background: #00da50;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    border-radius: 35%;
}