@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("css/services.css");
@import url("css/responsive.css");

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: "Roboto", "Kalpurush" sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

:root {
    --bs-matrix: #ff3c00;
    --bs-blue: #070bdd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-dyellow: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-hover: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #000000;
}

/* also text select disable */
html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Image Drugable Disabled */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

body {
    background-color: var(--bs-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
}
::-moz-scrollbar {
    display: none;
}
::-ms-scrollbar {
    display: none;
}
::-o-scrollbar {
    display: none;
}

/* animate */

/* ------------ all animation ---------- */

@keyframes video {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes bounceTop-1 {
    0%,
    100% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0px);
    }
}

@keyframes animation-1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spinner-linspin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-easespin {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    78.5% {
        transform: rotate(945deg);
    }

    to {
        transform: rotate(1080);
    }
}

@keyframes spinner-left-spin {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    to {
        transform: rotate(130deg);
    }
}

@keyframes spinner-right-spin {
    0% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }

    to {
        transform: rotate(-130deg);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    background-color: var(--bs-white);
    padding: 0 100px;
    gap: 40px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 120px;
}

.navdemo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-items ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}
.nav-items ul li a {
    position: relative;
    color: var(--bs-dark);
    font-weight: 600;
    font-size: 15px;
}

.nav-items ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--bs-hover);
    transition: 0.4s ease-out;
}

.nav-items ul li a:hover::after {
    left: 0;
    width: 100%;
}

.hire_us {
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    background: var(--bs-matrix);
    text-decoration: none;
}
.hire_us:hover {
    padding: 5px 25px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    background: #198754;
    transition: 0.4s ease-out;
    text-decoration: none;
}

/* responsive device */
.fa-bars {
    display: none;
}
.fa-chevron-down {
    display: none;
}

@media (max-width: 1177px) {
    .fa-bars {
        display: block;
    }
    .fa-chevron-down {
        display: block;
    }
    .navbar {
        padding: 0 50px;
    }
    .nav-items ul {
        display: block;
        padding-left: 0px;
    }
    .navdemo {
        position: absolute;
        top: 75px;
        width: 100%;
        left: 0;
        right: 0;
        background: var(--bs-white);
        padding: 20px 0px;
        z-index: 999;
        display: none;
        border-radius: 0px 0px 15px 15px;
        box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
        transition: 0.9s ease-in-out;
    }
    .nav-items ul li a {
        position: relative;
        display: block;
        margin-bottom: 20px;
        color: var(--bs-dark);
        padding-left: 40px;
        padding-right: 50px;
    }
    .nav-items ul li a::after {
        display: none;
    }
    .nav-items ul li a:hover {
        color: var(--bs-hover);
    }

    .navdemo.active {
        display: block;
    }

    .hire_us {
        display: block;
        width: 100%;
        color: var(--bs-white);
        background: var(--bs-dark);
        font-size: 14px;
        font-weight: 600;
        padding: 5px 25px;
        border-radius: 5px;
        text-align: center;
    }
}

/* Swiper Slide */
.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop large screens */
@media (min-width: 1921px) {
    .swiper {
        height: 800px;
    }
}
@media (min-width: 2560px) {
    .swiper {
        height: 850px;
    }
}

/* Responsive for smaller screens */
@media (max-width: 911px) {
    .swiper {
        height: 400px;
    }
}
@media (max-width: 725px) {
    .swiper {
        height: 350px;
    }
}
@media (max-width: 625px) {
    .swiper {
        height: 300px;
    }
}
@media (max-width: 525px) {
    .swiper {
        height: 280px;
    }
}
@media (max-width: 500px) {
    .swiper {
        height: 250px;
    }
}
@media (max-width: 450px) {
    .swiper {
        height: 230px;
    }
}
@media (max-width: 410px) {
    .swiper {
        height: 210px;
    }
}
@media (max-width: 381px) {
    .swiper {
        height: 200px;
    }
}

/* end swiper */

/* start about and about swiper */

.about {
    padding: 50px 0 0 0;
    position: relative;
}

.about_section {
    text-align: center;
}

.about .about_section .about_description {
    padding: 0px 100px;
}
.about .about_section .about_description h4 {
    font-size: 30px;
    font-weight: 600;
    color: #6f42c1;
    font-family: "Poppins";
}
.about .about_section .about_description p {
    font-size: 18px;
    font-family: "Poppins";
}
.about_section .about_text {
    max-width: 1860px;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    margin: auto;
}

.about_swiper {
    width: 355px;
    height: 450px;
    padding: 0 10px 0 10px;
}

.we_are {
    font-size: 35px;
    font-weight: 600;
    color: var(--bs-red);
    padding: 0;
    margin: 10px;
    font-family: "Poppins";
}
.about .about_section .about_text .about_swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding: 10px;
}
.about .about_section .about_text .about_swiper .swiper-slide h2 {
    font-size: 50px;
    font-weight: bold;
    color: white;
    filter: contrast(99);
    font-family: "Poppins";
    text-align: center;
    align-items: center;
}
.about .about_section .about_text .about_swiper .swiper-slide:nth-child(1n) {
    background-color: #fd7e14;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(2n) {
    background-color: #0d6efd;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(3n) {
    background-color: red;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(4n) {
    background-color: #007941;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(5n) {
    background-color: crimson;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(6n) {
    background-color: #000000;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(7n) {
    background-color: #7fb3e4;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(8n) {
    background-color: #03cbbb;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(9n) {
    background-color: #ff7300;
}

.about .about_section .about_text .about_swiper .swiper-slide:nth-child(10n) {
    background-color: #ff50b0;
}

.about_section .about_image {
    padding: 0 0 0 10px;
}
.about_section .about_image img {
    width: 100%;
    height: 500px;

    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 20px 5px 5px rgba(0, 0, 0, 0.2);
    animation: animate 5s ease-in-out infinite;
    transition: all 1s ease-in-out;
}
@keyframes animate {
    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
}

/* #particles-js {
	width: 100%;
	height: 500px;
}

.particles {
	padding: auto;
} */

/* end about */

/* Shape */

.design_shape {
    position: absolute;
}

.design_shape .shape.shape-1 {
    position: relative;
    width: 15px;
    height: 15px;
    left: 40px;
    margin-top: 50px;
    border-radius: 50%;
    background: #037ccc;
    animation: animation-1 2s linear infinite;
}
.design_shape .shape.shape-2 {
    position: relative;
    width: 20px;
    height: 20px;
    left: 43px;
    margin-top: 50px;
    border-radius: 50%;
    background: red;
    animation: animation-1 2s linear infinite;
}
.design_shape .shape.shape-3 {
    position: relative;
    width: 10px;
    height: 10px;
    left: 43px;
    margin-top: 30px;
    border-radius: 50%;
    background: rgb(21, 133, 2);
    animation: animation-1 2s linear infinite;
}

.design_shape .shape.shape-4 {
    position: relative;
    width: 15px;
    height: 15px;
    right: 40px;
    margin-top: 50px;
    border-radius: 50%;
    background: #037ccc;
    animation: animation-1 2s linear infinite;
}
.design_shape .shape.shape-5 {
    position: relative;
    width: 20px;
    height: 20px;
    right: 43px;
    margin-top: 50px;
    border-radius: 50%;
    background: red;
    animation: animation-1 2s linear infinite;
}
.design_shape .shape.shape-6 {
    position: relative;
    width: 10px;
    height: 10px;
    right: 43px;
    margin-top: 30px;
    border-radius: 50%;
    background: rgb(21, 133, 2);
    -webkit-animation: animation-1 2s linear infinite;
    -moz-animation: animation-1 2s linear infinite;
    -ms-animation: animation-1 2s linear infinite;
    -o-animation: animation-1 2s linear infinite;
    animation: animation-1 2s linear infinite;
}

.banner_notice img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

@media (max-width: 1306px) {
    .banner_notice img {
        width: 100%;
        height: 450px;
    }
}
@media (max-width: 1200px) {
    .banner_notice img {
        width: 100%;
        height: 400px;
    }
}
@media (max-width: 1078px) {
    .banner_notice img {
        width: 100%;
        height: 350px;
    }
}
@media (max-width: 950px) {
    .banner_notice img {
        width: 100%;
        height: 300px;
    }
}
@media (max-width: 826px) {
    .banner_notice img {
        width: 100%;
        height: 290px;
    }
}
@media (max-width: 792px) {
    .banner_notice img {
        width: 100%;
        height: 270px;
    }
}
@media (max-width: 714px) {
    .banner_notice img {
        width: 100%;
        height: 250px;
    }
}
@media (max-width: 658px) {
    .banner_notice img {
        width: 100%;
        height: 240px;
    }
}
@media (max-width: 658px) {
    .banner_notice img {
        width: 100%;
        height: 240px;
    }
}
@media (max-width: 598px) {
    .banner_notice img {
        width: 100%;
        height: 220px;
    }
}
@media (max-width: 552px) {
    .banner_notice img {
        width: 100%;
        height: 210px;
    }
}
@media (max-width: 526px) {
    .banner_notice img {
        width: 526px;
        height: 200px;
    }
}

@media (max-width: 502px) {
    .banner_notice img {
        width: 100%;
        height: 190px;
    }
}

@media (max-width: 476px) {
    .banner_notice img {
        width: 100%;
        height: 180px;
    }
}
@media (max-width: 452px) {
    .banner_notice img {
        width: 100%;
        height: 170px;
    }
}
@media (max-width: 430px) {
    .banner_notice img {
        width: 100%;
        height: 160px;
    }
}
@media (max-width: 408px) {
    .banner_notice img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 386px) {
    .banner_notice img {
        width: 100%;
        height: 140px;
    }
}

/* ecommerce */

.ecommerce_solution {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 50px 20px;
}
.ecommerce_solution .ecommerce_title {
    width: 800px;
    background-position: center;
    padding: 150px 80px;
}
.ecommerce_solution .ecommerce_image img {
    width: 700px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
.ecommerce_solution .ecommerce_title h3 {
    font-size: 38px;
    font-weight: 700;
    color: #6610f2;
    text-align: start;
}
.ecommerce_solution .ecommerce_title p {
    text-align: justify;
}

@media (max-width: 1306px) {
    .ecommerce_solution .ecommerce_title {
        width: 750px;
        background-position: center;
        padding: 120px 80px;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 650px;
        object-fit: cover;
        background-size: cover;
        background-position: center;
    }
}
@media (max-width: 1222px) {
    .ecommerce_solution .ecommerce_title {
        width: 700px;
        background-position: center;
        padding: 120px 80px;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 600px;
        object-fit: cover;
        background-size: cover;
        background-position: center;
    }
}
@media (max-width: 1102px) {
    .ecommerce_solution .ecommerce_title {
        width: 550px;
        background-position: center;
        padding: 120px 40px;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 500px;
        object-fit: cover;
        background-size: cover;
        background-position: center;
    }
}
@media (max-width: 990px) {
    .ecommerce_solution .ecommerce_title {
        width: 450px;
        background-position: center;
        padding: 120px 40px;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 450px;
        object-fit: cover;
        background-size: cover;
        background-position: center;
    }
}
@media (max-width: 924px) {
    .ecommerce_solution {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 0 50px 20px;
    }
    .ecommerce_solution .ecommerce_title {
        width: 800px;
        background-position: center;
        padding: 120px 130px;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 800px;
        object-fit: cover;
        background-size: cover;
        background-position: center;
    }
    .ecommerce_solution .ecommerce_title h3 {
        font-size: 25px;
        font-weight: 700;
        color: var(--bs-indigo);
    }
}

@media (max-width: 630px) {
    .ecommerce_solution {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 0 50px 20px;
    }
    .ecommerce_solution .ecommerce_title {
        width: 500px;
        background-position: center;
        padding: 120px 80px;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 500px;
        object-fit: cover;
        background-size: cover;
        background-position: center;
    }
    .ecommerce_solution .ecommerce_title h3 {
        font-size: 25px;
        font-weight: 700;
        color: var(--bs-indigo);
    }
}
@media (max-width: 526px) {
    .ecommerce_solution {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 0 50px 20px;
    }
    .ecommerce_solution .ecommerce_title {
        width: 100%;
        background-position: center;
        padding: 50px 20px;
        justify-content: center;
        text-align: center;
    }
    .ecommerce_solution .ecommerce_image img {
        width: 100%;
        object-fit: cover;
        background-size: cover;
        background-position: center;
        justify-content: center;
    }
    .ecommerce_solution .ecommerce_title h3 {
        font-size: 25px;
        font-weight: 700;
        color: var(--bs-indigo);
    }
}

/* service */

.services {
    padding: 50px 100px;
}

.services h5 {
    text-align: center;
    color: var(--bs-red);
}

.services .service_item {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.services .service_item .service_name {
    width: 240px;
    height: 180px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: auto;
    position: relative;
    padding-top: 15px;
}

.services .service_item .service_name::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-matrix);
    z-index: -1;
}
/* .services .service_item .service_name:hover {
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: 0.4s ease-in-out;
} */

.services .service_item .service_name img {
    width: 40px;
    align-items: center;
    margin: auto;
}
.services .service_item .service_name h6 {
    font-size: 20px;
    font-weight: 700;
    color: black !important;
}
.services .service_item .service_name p {
    font-size: 15px;
}

@media (max-width: 1144px) {
    .services {
        padding: 50px 70px;
    }
}
@media (max-width: 1114px) {
    .services {
        padding: 50px 50px;
    }
    .services .service_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
}
@media (max-width: 1064px) {
    .services .service_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 1044px) {
    .services .service_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        text-align: center;
    }
}
@media (max-width: 848px) {
    .services .service_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
}
@media (max-width: 578px) {
    .services {
        padding: 50px 30px;
    }
    .services .service_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        align-items: center;
    }
}
@media (max-width: 559px) {
    .services {
        padding: 50px 30px;
    }
    .services .service_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);

        justify-items: center;
    }
}

.our_process {
    /* margin-top: 50px; */
    padding: 50px 100px;
    background-color: bisque;
}
.our_process h5 {
    padding-top: 10px;
    text-align: center;
    color: var(--bs-red);
    position: relative;
}
.our_process h5::after {
    content: " ";
    position: absolute;
    width: 20px;
    height: 2px;
    color: red;
    top: 0;
    right: 0;
}
.our_process p {
    padding-top: 10px;
    text-align: center;
    font-size: 16px;
    color: var(--bs-dark);
}

.our_process .process_section {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    text-align: center;
}
.our_process .process_section .process_name {
    position: relative;
}
.our_process .process_section .process_name img {
    width: 50px;
}
.our_process .process_section .process_name::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(1, 120, 124);
    z-index: -1;
}
.our_process .process_section .process_name p {
    margin-top: 30px;
    font-size: 16px;
}

@media (max-width: 1098px) {
    .our_process .process_section {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
        text-align: center;
    }
}
@media (max-width: 904px) {
    .our_process .process_section {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        text-align: center;
    }
}
@media (max-width: 630px) {
    .our_process .process_section {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: center;
    }
    .our_process .process_section .process_name img {
        width: 40px;
    }
    .our_process .process_section .process_name::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        text-align: center;
        align-items: center;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: wheat;
        z-index: -1;
    }
}
@media (max-width: 459px) {
    .our_process {
        /* margin-top: 50px; */
        padding: 50px 50px;
    }
    .our_process .process_section {
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    .our_process .process_section .process_name p {
        margin-top: 30px;
        font-size: 15px;
    }
}

.campaign {
    position: relative;
    width: 100%;
    height: 100vh; /* Ensure there's space */
    overflow: hidden;
}

.campaign .back_video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire area */
    z-index: -1;
    filter: brightness(70%);
}

.campaign .campaign_msg {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: white;
    padding: 20px;
}
.campaign .campaign_msg h2 {
    font-size: 62px;
    color: var(--bs-matrix);
    font-weight: 700;
}
.campaign .campaign_msg p {
    font-size: 35px;
    color: white;
    text-align: justify;
}
.campaign .campaign_msg .more_info {
    color: var(--bs-white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--bs-matrix);
    text-decoration: none;
}
.campaign .campaign_msg .more_info:hover {
    background-color: var(--bs-warning);
    color: white;
    border: none;
    background-color: #198754;
}


@media (max-width: 866px) {

.campaign .campaign_msg {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: white;
    padding: 20px;
}

.campaign .campaign_msg h2 {
    font-size: 32px;
    color: var(--bs-matrix);
    font-weight: 700;
}
.campaign .campaign_msg p {
    font-size: 15px;
    color: white;
    text-align: justify;
}
}

.programming_language {
    padding: 50px 100px;
    background-color: white;
}

.programming_language h5 {
    padding-top: 20px;
    text-align: center;
    color: var(--bs-red);
}
.programming_language_name {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}
.programming_language_name img {
    width: 160px;
    object-fit: cover;
    padding: 35px;
}

@media (max-width: 1258px) {
    .programming_language_name {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        text-align: center;
    }
}
@media (max-width: 1158px) {
    .programming_language_name {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 962px) {
    .programming_language_name {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        text-align: center;
    }
}
@media (max-width: 814px) {
    .programming_language_name {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        text-align: center;
    }
}
@media (max-width: 632px) {
    .programming_language {
        padding: 0 60px;
        background-color: snow;
    }

    .programming_language_name {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        text-align: center;
    }
}
@media (max-width: 568px) {
    .programming_language {
        padding: 0 100px;
        background-color: snow;
    }

    .programming_language_name {
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: center;
    }
}
@media (max-width: 568px) {
    .programming_language {
        padding: 0 70px;
        background-color: snow;
    }

    .programming_language_name {
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
}
@media (max-width: 434px) {
    .programming_language {
        padding: 0 10px;
        background-color: snow;
    }

    .programming_language_name {
        padding-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        text-align: center;
        align-items: center;
    }
}
/* counter */

.counter_project {
    position: relative;
    z-index: -1;
    padding: 200px 0;
    width: 100%;

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.counter_project .counter_section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    text-align: center;
    align-items: center;
    place-items: center;
}

.counter_project .counter_section .counter_name {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 20px;
    position: relative;
}
.counter_project .counter_section .counter_name::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    left: 50%;
    top: 60%;
    z-index: -1;
    transform: translate(-50%, -50%);
}
/* .counter_project .counter_section .counter_name:nth-child(2):after {
	content: "";
	position: absolute;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-image: linear-gradient(40deg, #49ff43 0%, #ec0000 100%);
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}
.counter_project .counter_section .counter_name:nth-child(3):after {
	content: "";
	position: absolute;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-image: linear-gradient(40deg, #49ff43 0%, #ec0000 100%);
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}
.counter_project .counter_section .counter_name:nth-child(4):after {
	content: "";
	position: absolute;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-image: linear-gradient(40deg, #fbff00 0%, #00b5ec 100%);
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}
.counter_project .counter_section .counter_name:nth-child(5):after {
	content: "";
	position: absolute;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-image: linear-gradient(40deg, #a704c7 0%, #9dec00 100%);
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
} */
/* .counter_project .counter_section .counter_name:nth-child(1) {
	box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
}
.counter_section [class*="col-"]:nth-child(2) .counter_name::after {
	background-image: linear-gradient(40deg, #0db8ff 0% #76ff32 100%);
}
.counter_project .counter_section .counter_name:nth-child(3) {
	box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
}
.counter_project .counter_section .counter_name:nth-child(4) {
	box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
}
.counter_project .counter_section .counter_name:nth-child(5) {
	box-shadow: inset 0px 20px 40px 0px rgba(255, 238, 112, 0.3);
} */

.counter_project .counter_section .counter_name h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--bs-matrix);
    letter-spacing: 2px;
    margin: 0 !important;
}
.counter_project .counter_section .counter_name p {
    font-size: 17px;
    font-weight: 500;
    color: white;

    margin: 0 !important;
}

@media (max-width: 867px) {
    .counter_project {
        padding: 100px 20px;
    }
    .counter_project .counter_section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 20px;
        justify-items: center;
        text-align: center;
        align-items: center;
        place-items: center;
    }

    .counter_project .counter_section .counter_name {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        padding: 20px;
        position: relative;
    }
    .counter_project .counter_section .counter_name::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 5px solid #ffffff;
        left: 50%;
        top: 60%;
        z-index: -1;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 702px) {
    .counter_project {
        padding: 100px 20px;
    }
    .counter_project .counter_section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 20px;
        justify-items: center;
        text-align: center;
        align-items: center;
        place-items: center;
    }

    .counter_project .counter_section .counter_name {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        padding: 20px;
        position: relative;
    }
    .counter_project .counter_section .counter_name::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 5px solid #ffffff;
        left: 50%;
        top: 50%;
        z-index: -1;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 537px) {
    .counter_project {
        padding: 100px 20px;
    }
    .counter_project .counter_section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 20px;
        justify-items: center;
        text-align: center;
        align-items: center;
        place-items: center;
    }

    .counter_project .counter_section .counter_name {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        padding: 20px;
        position: relative;
    }
    .counter_project .counter_section .counter_name::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 5px solid #ffffff;
        left: 50%;
        top: 60%;
        z-index: -1;
        transform: translate(-50%, -50%);
    }
}

/* project view */

.project {
    padding: 50px 100px;
}

.project h5 {
    padding-top: 20px;
    text-align: center;
    color: var(--bs-red);
}

.project_item {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.project_name {
    width: 100%;
    height: 500px;
    background-color: wheat;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 0.6px solid gray;
    border-radius: 10px;
    overflow: hidden;
}
.project_item .project_name .scroll_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: all 6s ease-in-out;
}
.project_item .project_name .scroll_img:hover {
    object-position: bottom center;
}

@media (max-width: 1306px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
         width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 1222px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
        width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 1102px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
         width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 990px) {
    .project {
    padding: 50px 50px;
}
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
        width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 924px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
         width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 816px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
         width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 710px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
         width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 630px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
         width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}
@media (max-width: 526px) {
    .project_item {
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .project_name {
        width: 100%;
        height: 300px;
        background-color: wheat;

        border: 0.6px solid gray;
        border-radius: 10px;
        overflow: hidden;
    }
}

/* team */
.team {
    color: var(--bs-dark);
    padding: 50px 30px;
}
.team h5 {
    text-align: center;
    font-size: 30px;
    color: var(--bs-red);
}
.team p {
    text-align: center;
    font-size: 20px;
    opacity: 0.7;
}

.team .team_member {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    justify-items: center;
    padding-top: 20px;
}
.team .team_member .member_profile {
    text-align: center;
}
.team .team_member .member_profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: rgb(104, 104, 104);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

/* Disable grayscale on hover */
.team .team_member .member_profile img:hover {
    -webkit-filter: grayscale(1);
    filter: none;
}

.team .team_member .member_profile h6 {
    text-align: center;
    font-size: 20px;
    padding-top: 10px;
    margin: 0 !important;
    letter-spacing: 2px;
    opacity: 0.7;
}
.team .team_member .member_profile p {
    text-align: center;
    font-size: 15px;
    opacity: 0.7;
}

@media (max-width: 867px) {
    .team .team_member {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
        justify-items: center;
        padding-top: 20px;
    }
}
@media (max-width: 702px) {
    .team .team_member {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        justify-items: center;
        padding-top: 20px;
    }
}
@media (max-width: 537px) {
    .team .team_member {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        justify-items: center;
        padding-top: 20px;
    }
}

.blog_introduce {
    text-align: center;
    padding: 50px 0;
    background-color: aliceblue;
}

.blog_introduce .title {
    font-size: 25px;
    text-align: center;
    padding: 10px 0;
}
.blog_introduce .sub_title {
    font-size: 18px;
    text-align: center;
    width: 80%;
    margin: auto;
}
.blog {
    padding: 30px 100px;
    align-items: center;
    justify-items: center;
}

.blog_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}
.blog_content {
    width: 520px;
    height: 400px;
    border: 1px solid #dadada;
    padding: 10px;
    border-radius: 10px;
}

.blog_section .blog_content img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
    background-position: center;
}
.blog_section .blog_content .blog_tagtime {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
}
.blog_section .blog_content .blog_tagtime .tag {
    font-size: 16px;
}
.blog_section .blog_content .blog_tagtime .tag span {
    font-size: 16px;
    color: #037ccc;
}
.blog_section .blog_content .blog_tagtime .date {
    font-size: 16px;
    color: gray;
}
.blog_section .blog_content .blog_title {
    font-size: 25px;
    color: var(--bs-matrix);
    font-weight: 500;
}
.blog_section .blog_content .blog_title:hover {
    color: dodgerblue;
}

@media (max-width: 1190px) {
}

@media (max-width: 1190px) {
    .blog_content {
        width: 420px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }

    .blog_section .blog_content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}
@media (max-width: 992px) {
    .blog_content {
        width: 350px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }
    .blog_section .blog_content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}
@media (max-width: 848px) {
    .blog_content {
        width: 320px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }
    .blog_section .blog_content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}
@media (max-width: 848px) {
    .blog_content {
        width: 320px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }
    .blog_section .blog_content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}
@media (max-width: 790px) {
    .blog_content {
        width: 320px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }
    .blog_section .blog_content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}
@media (max-width: 790px) {
    .blog_content {
        width: 260px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }
    .blog_section .blog_content img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}
@media (max-width: 709px) {
    .blog {
        padding: 30px 50px;
        align-items: center;
        justify-items: center;
    }
    .blog_section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        align-items: center;
        justify-items: center;
    }
    .blog_content {
        width: 420px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }

    .blog_section .blog_content img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}

@media (max-width: 509px) {
    .blog {
        padding: 30px 30px;
        align-items: center;
        justify-items: center;
    }
    .blog_section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        align-items: center;
        justify-items: center;
    }
    .blog_content {
        width: 320px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }

    .blog_section .blog_content img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
}

@media (max-width: 393px) {
    .blog {
        padding: 30px 20px;
        align-items: center;
        justify-items: center;
    }
    .blog_section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        align-items: center;
        justify-items: center;
    }
    .blog_content {
        width: 320px;
        border: 1px solid #dadada;
        padding: 10px;
        border-radius: 10px;
    }

    .blog_section .blog_content img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 10px;
        background-position: center;
    }
    .blog_section .blog_content .blog_title {
        font-size: 20px;
        color: var(--bs-matrix);
        font-weight: 500;
    }
}

/* blog details */
.blog_details {
    padding: 30px 100px;
    align-items: center;
    justify-items: center;
}

.blog_details .title {
    font-size: 25px;
    text-align: center;
    padding: 10px 0;
}

.blog_details .sub_title {
    font-size: 18px;
    text-align: center;
    width: 80%;
    margin: auto;
    padding-bottom: 30px;
}

/* MAIN CONTENT */
.blog_details .details_content {
    padding: 50px 100px;
}

.blog_details .details_content img {
    width: 100%;
    height: auto; /* FIXED */
    object-fit: cover;
    border-radius: 10px;
}

.tagtime {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.tagtime .tag span {
    color: #037ccc;
}

.details_title {
    font-size: 30px;
    color: var(--bs-matrix);
}

.write_para {
    text-align: justify;
}

/* ----------- RESPONSIVE ----------- */

@media (max-width: 1083px) {
    .blog_details {
        padding: 30px 50px;
    }

    .blog_details .details_content {
        padding: 40px 50px;
    }

    .details_title {
        font-size: 28px;
    }
}

@media (max-width: 677px) {
    .blog_details {
        padding: 20px;
    }

    .blog_details .details_content {
        padding: 30px 20px;
    }

    .details_title {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .blog_details {
        padding: 15px;
    }

    .blog_details .details_content {
        padding: 20px 10px;
    }

    .details_title {
        font-size: 22px;
    }
}




/* client */

.client {
    padding: 50px 30px;
    background: #f8f8f8;
}

.client h5 {
    text-align: center;
    padding: 10px 0;
    color: var(--bs-red);
    font-size: 25px;
}
.client p {
    text-align: center;
    font-size: 20px;
}

.client .client_agent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    justify-items: center;
    padding-top: 20px;
}

.client .client_agent img {
    width: 150px;
}

@media (max-width: 939px) {
    .client .client_agent {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        justify-items: center;
        padding-top: 20px;
    }
}
@media (max-width: 867px) {
    .client .client_agent {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        justify-items: center;
        padding-top: 20px;
    }
}
@media (max-width: 727px) {
    .client .client_agent {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        justify-items: center;
        padding-top: 20px;
    }
}
@media (max-width: 537px) {
    .client .client_agent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        justify-items: center;
        padding-top: 20px;
    }
}

.contact {
    padding: 50px 100px;
    background-color: aliceblue;
}
.contact h6 {
    font-size: 18px;
    text-align: center;
    padding-bottom: 10px;
}
.contact h5 {
    font-size: 25px;
    text-align: center;
}
.contact p {
    font-size: 14px;
    text-align: center;
}

.contact_details {
    padding: 50px 200px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.form_shadow {
    border: 1px solid #dadada !important;
    border-radius: 7px !important;
}
.form_shadow:focus {
    outline: none !important;
    border-color: #ff50b0 !important;
    box-shadow: 0 0 10px red !important;
}

.sub_btn {
    width: 100%;
    display: block;
    padding: 5px 15px;
    border: 2px solid #dadada;
    border-radius: 8px;
    color: var(--bs-white);
    background-color: var(--bs-matrix);
    margin-top: 15px;
}
.sub_btn:focus {
    outline: none !important;

    border-color: #ff50b0 !important;
    box-shadow: 0 0 10px red !important;
}

@media (max-width: 678px) {
    .contact {
        padding: 50px 50px;
    }
}
@media (max-width: 522px) {
    .contact {
        padding: 50px 50px;
    }
    .contact h2 {
        text-align: center;
        color: var(--bs-matrix);
        font-size: 22px !important;
        font-weight: 700;
    }
}

/* testamonial */
.testimonial_section {
    padding: 0px 100px;
}
h1 {
    padding: 2vh 0 3vh 0;
    color: #ff0606;
    line-height: 1.3;
    font-size: 30px;

    padding-bottom: 30px;
}
.section-eight {
    padding: 40px 0 0px 0;
    margin-top: 30px;
    position: relative;
}
.op-eight-section {
    position: relative;
}
.sec-eight-text-area {
    text-align: center;
    padding: 50px 0 50px;
}

.sec-eight-text-area img {
   
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;

}
.sec-eight-text-area h1 {
    padding: 2vh 0 3vh 0;
    color: #434c57;
    line-height: 1.3;
    font-size: 30px;
    padding-bottom: 30px;
}
.sec-eight-text-area p {
    padding: 2vh 0;
    font-size: 14px;
    line-height: 1.6;
    color: #434c57;
}
.section-eight .container-pe-quote {
    position: absolute;
    height: 100%;
    top: 0px;
    z-index: 1;
}
.section-eight .container-pe-quote.left {
    left: 0px;
}
.section-eight .container-pe-quote.right {
    right: 0px;
}
.section-eight .container-pe-quote .pp-quote {
    cursor: pointer;
    position: absolute;
    border-radius: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-transform-origin: 50% 1px;
    -moz-transform-origin: 50% 1px;
    -ms-transform-origin: 50% 1px;
    -o-transform-origin: 50% 1px;
    transform-origin: 50% 1px;
    opacity: 0;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}
.container-pe-quote .pp-quote img {
    overflow: hidden;
    border-radius: 100%;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
.section-eight .container-pe-quote .pp-quote:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: calc(100% + 5px);
    width: calc(100% + 5px);
    border-radius: 100%;
    background-color: #7fb3e4;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    -o-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.container-pe-quote .pp-quote:hover:after,
.container-pe-quote .pp-quote.active:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.section-eight .container-pe-quote .li-quote-1 {
    height: 104px;
    width: 104px;
    left: 15px;
    top: 95px;
    animation-duration: 10s;
    -webkit-animation-duration: 10s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-2 {
    height: 63px;
    width: 63px;
    left: 120px;
    top: 270px;
    animation-duration: 12s;
    -webkit-animation-duration: 12s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-3 {
    height: 64px;
    width: 64px;
    left: 68px;
    top: 380px;
    animation-duration: 6s;
    -webkit-animation-duration: 6s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-4 {
    height: 73px;
    width: 73px;
    right: -15px;
    top: 110px;
    animation-duration: 5s;
    -webkit-animation-duration: 5s;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-5 {
    height: 73px;
    width: 73px;
    right: 28px;
    top: 265px;
    animation-duration: 8s;
    -webkit-animation-duration: 8s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-6 {
    height: 45px;
    width: 45px;
    right: 108px;
    top: 170px;
    animation-duration: 7s;
    -webkit-animation-duration: 7s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-7 {
    height: 48px;
    width: 48px;
    right: 40px;
    top: 414px;
    animation-duration: 7s;
    -webkit-animation-duration: 7s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 1;
}
.section-eight .container-pe-quote .li-quote-8 {
    height: 63px;
    width: 63px;
    left: 20px;
    top: 250px;
    animation-duration: 5s;
    -webkit-animation-duration: 5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
}

@keyframes floating {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-10px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-10px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-10px) rotate(0deg);
        transform: rotate(0deg) translate(-10px) rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}
@-webkit-keyframes floating {
    0% {
        -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-10px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-10px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-10px) rotate(0deg);
        transform: rotate(0deg) translate(-10px) rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-10px) rotate(-360deg);
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

.section-eight .container-quote {
    position: relative;
    width: 100%;
    margin-top: 10px;
    height: 135px;
    -webkit-perspective: 10000px;
    -moz-perspective: 10000px;
    -ms-perspective: 10000px;
    perspective: 10000px;
}
.section-eight .container-quote .quote {
    max-width: 520px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    cursor: pointer;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
    -moz-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
    -o-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
    transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
}
.section-eight .container-quote .quote.hide-bottom {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
    -moz-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
    -ms-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
    -o-transform: translateX(-50%) translateY(100%) rotateX(-70deg);
    transform: translateX(-50%) translateY(100%) rotateX(-70deg);
}
.section-eight .container-quote .quote.hide-top {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
    -moz-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
    -ms-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
    -o-transform: translateX(-50%) translateY(-100%) rotateX(70deg);
    transform: translateX(-50%) translateY(-100%) rotateX(70deg);
}
.section-eight .container-quote .quote.show {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0%) rotateX(0deg);
    -moz-transform: translateX(-50%) translateY(0%) rotateX(0deg);
    -ms-transform: translateX(-50%) translateY(0%) rotateX(0deg);
    -o-transform: translateX(-50%) translateY(0%) rotateX(0deg);
    transform: translateX(-50%) translateY(0%) rotateX(0deg);
}

.section-eight .container-dp-name {
    position: relative;
    width: 100%;
    margin-top: 10px;
    height: 225px;
    -webkit-perspective: 10000px;
    -moz-perspective: 10000px;
    -ms-perspective: 10000px;
    perspective: 10000px;
    text-align: center;
}
.section-eight .container-dp-name .box-dpname {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
    -moz-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
    -o-transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
    transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
}
.section-eight .container-dp-name .box-dpname.hide-dp-bottom {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(100%) rotateX(-70deg);
    -moz-transform: translateX(0%) translateY(100%) rotateX(-70deg);
    -ms-transform: translateX(0%) translateY(100%) rotateX(-70deg);
    -o-transform: translateX(0%) translateY(100%) rotateX(-70deg);
    transform: translateX(0%) translateY(100%) rotateX(-70deg);
}
.section-eight .container-dp-name .box-dpname.hide-dp-top {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(-100%) rotateX(70deg);
    -moz-transform: translateX(0%) translateY(-100%) rotateX(70deg);
    -ms-transform: translateX(0%) translateY(-100%) rotateX(70deg);
    -o-transform: translateX(0%) translateY(-100%) rotateX(70deg);
    transform: translateX(0%) translateY(-100%) rotateX(70deg);
}
.section-eight .container-dp-name .box-dpname.look {
    opacity: 1;
    -webkit-transform: translateX(0%) translateY(0%) rotateX(0deg);
    -moz-transform: translateX(0%) translateY(0%) rotateX(0deg);
    -ms-transform: translateX(0%) translateY(0%) rotateX(0deg);
    -o-transform: translateX(0%) translateY(0%) rotateX(0deg);
    transform: translateX(0%) translateY(0%) rotateX(0deg);
}

@media screen and (max-width: 767px) {
    .testimonial_section {
    padding: 0px 50px;
}
    
    .sec-eight-text-area {
        padding: 10px 0 10px 0;
    }
    .section-eight .container-pe-quote {
        position: relative;
        height: 500px;
        top: 0px;
        z-index: 1;
        max-width: 300px;
        margin: -70px auto 0;
    }
    .section-eight {
        position: relative;
    }
    .section-eight .bottom-ani-cs {
        position: absolute;
        top: 150px;
        right: 16px;
    }
    .section-eight .container-pe-quote .li-quote-2 {
        left: 60px;
        top: 270px;
    }
    .section-eight .container-pe-quote .li-quote-6 {
        right: 100px;
        top: 179px;
    }
    .section-eight .container-pe-quote .li-quote-8 {
        height: 43px;
        width: 43px;
        left: 0px;
        top: 220px;
    }
    .section-eight .container-pe-quote .li-quote-3 {
        left: 0;
    }
    .section-eight .container-quote {
        height: 205px;
        overflow: hidden;
        overflow-y: auto;
    }
    .sec-eight-text-area {
        padding: 10px 0 100px 0;
    }
}

@media screen and (max-width: 480px) {
    .section-eight {
        position: relative;
    }
    .section-eight .bottom-ani-cs {
        position: absolute;
        top: 150px;
        right: 16px;
    }
    .section-eight .container-pe-quote .li-quote-2 {
        left: 60px;
        top: 270px;
    }
    .section-eight .container-pe-quote .li-quote-6 {
        right: 100px;
        top: 179px;
    }
    .section-eight .container-pe-quote .li-quote-8 {
        height: 43px;
        width: 43px;
        left: 0px;
        top: 220px;
    }
    .section-eight .container-pe-quote .li-quote-3 {
        left: 0;
    }
    .section-eight .container-quote {
        height: 205px;
        overflow: hidden;
        overflow-y: auto;
    }
    .sec-eight-text-area {
        padding: 10px 0 100px 0;
    }
}

/* Story Gallery */

.story_gallery {
    height: 250px;

    position: relative;
    width: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
    /* border: 1px solid #dadada;
	padding: 50px 0; */
}

.slide-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(250px * 18);
    animation: scroll 30s linear infinite;
}
.slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9));
    }
}
.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
}
.story_gallery .slide-track .slide img {
    width: 220px;
    height: 150px;
    border-radius: 10px;
    transition: transform 4s;
}
.story_gallery .slide-track .slide img:hover {
    transform: scale(1.5);
    z-index: 1;
}

.story_gallery::before,
.story_gallery::after {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    content: " ";
    height: 100%;
    position: absolute;
    width: 5%;
    z-index: 2;
}

.story_gallery::before {
    left: 0;
    top: 0;
}
.story_gallery::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

/* story gallery end */

/* subscribe */
.subscribe {
    padding: 80px 100px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(120deg, #20c997, #6610f2, #ff50b0);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: bg 10s ease infinite;
    overflow: hidden;
    /* background-image: linear-gradient(40deg, #a704c7 0%, #9dec00 100%); */
}
.subscribe .start_project a {
    color: white;
    padding: 8px 30px;
    background-color: var(--bs-matrix);
    font-weight: 500;
    font-size: 25px;
    border-radius: 100px;
    transition: 0.5s;
    text-decoration: none;
}
.subscribe .start_project a:hover {
    background-color: #198754;
    cursor: pointer;
}

.subscribe h5 {
    font-size: 20px;
    padding: 20px 0 10px;
    color: white;
}

.subscribe form input {
    width: 500px;
    height: 45px;
    border: 1px solid #dadada;
    outline: none;
    border-radius: 100px;
    padding: 20px;
}

.subscribe form button {
    width: 100px;
    border-radius: 100px;
    border: none;
    outline: none;
    background-color: var(--bs-matrix);
    color: white;
    padding: 9px;
    margin-left: -80px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.5s;
}

.subscribe form button:hover {
    background-color: #198754;
}

@media (max-width: 791px) {
    .subscribe {
        padding: 50px 20px;
    }

    .subscribe form input {
        width: 300px;
        height: 45px;
        border: 1px solid #dadada;
        outline: none;
        border-radius: 100px;
        padding: 20px;
    }

    .subscribe form button {
        width: 100px;
        border-radius: 100px;
        border: none;
        outline: none;
        background-color: var(--bs-matrix);
        color: white;
        padding: 9px;
        margin-left: -80px;
        font-size: 18px;
        cursor: pointer;
        transition: 0.5s;
    }
}

.wave-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 80%;
    transform: translateX(-50%);
}

.wave {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.25);
    width: 200%;
    height: 200%;
    border-radius: 50%;
    animation: wave 8s linear infinite alternate;
}
.wave:nth-child(2) {
    animation-delay: -10s;
}
.wave:nth-child(3) {
    animation-delay: -4s;
}
@keyframes bg {
    0%,
    100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100%;
    }
}
@keyframes wave {
    0% {
        transform: translateX(-23%);
    }
    100% {
        transform: translateX(23%);
    }
}
/* subscribe section end */
/* footer */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
}
.footer .footer_about img {
    left: 0;
    padding-bottom: 20px;
}

.footer .footer_about {
    width: 35%;
}
.footer .footer_about .footer_about_description {
    font-size: 14px;
    text-align: justify;
}
.footer .footer_about .footer_location {
    font-size: 15px;
}
.footer .footer_about .footer_phone {
    font-size: 15px;
}
.footer .footer_about .footer_email {
    font-size: 15px;
}
.anyquery {
    padding: 8px 30px;
    background-color: var(--bs-matrix);
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    border: none;
    font-weight: 700;
    border-radius: 7px;
    transition: 1s ease-in-out;
    outline: none;
}
.anyquery:hover {
    padding: 8px 30px;
    background-color: #198754;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    border: none;
    outline: none;
}

.anyquery.active.focus,
.anyquery.active:focus,
.anyquery.focus,
.anyquery:active.focus,
.anyquery:active:focus,
.anyquery:focus {
    outline: none;
}

.querybtn {
    padding: 8px 30px;
    background-color: var(--bs-matrix);
    color: white;
    text-decoration: none;

    border: none;
    border-radius: 7px;

    outline: none;
}
.querybtn:focus {
    outline: none !important;
    box-shadow: none !important;
}
.querybtn:hover {
    padding: 8px 30px;
    background-color: #198754;
    color: white;
    text-decoration: none;

    border: none;
    outline: none;
}

.footer .footer_about .social_icon {
    display: flex;
    gap: 30px;
}

.footer .footer_about .social_icon a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--bs-white);
    background-color: var(--bs-matrix);
    text-align: center;
    transition: 0.5s;
    padding: 8px;
    transform: translate(0, 0px);
    box-shadow: 7px 5px 7px 5px rgba(0.5, 0.5, 0.5, 0.5);
}
.footer .footer_about .social_icon a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}

.usefull_link h5 {
    font-size: 18px;
    padding: 15px 0;
    font-weight: 600;
}

.usefull_link .link li {
    padding: 6px 0;
}
.usefull_link .link li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
}
.usefull_link .link li a:hover {
    color: #007941;
}
.important_link h5 {
    font-size: 18px;
    padding: 15px 0;
    font-weight: 600;
}

.important_link .link li {
    padding: 6px 0;
}
.important_link .link li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
}
.important_link .link li a:hover {
    color: #007941;
}
.quick_link h5 {
    font-size: 18px;
    padding: 15px 0;
    font-weight: 600;
}

.quick_link .link li {
    padding: 6px 0;
}
.quick_link .link li a {
    font-size: 16px;
    color: #000000;
    text-decoration: none;
}
.quick_link .link li a:hover {
    color: #007941;
}
@media (max-width: 992px) {
    .footer {
        display: flex;
        justify-content: space-between;
        padding: 50px 20px;
    }
}
@media (max-width: 709px) {
    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer .footer_about {
        width: 70%;
        align-items: center;
    }
}
@media (max-width: 709px) {
    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 50px 50px;
        align-items: center;
        justify-items: center;
    }
    .footer .footer_about {
        width: 250px;
        align-items: center;
    }
}
@media (max-width: 515px) {
    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 50px 50px;
        align-items: center;
        justify-items: center;
    }
    .footer .footer_about {
        width: 200px;
        align-items: center;
    }
}
@media (max-width: 465px) {
    .footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 50px 30px;
        align-items: center;
        justify-items: center;
    }
    .footer .footer_about {
        width: 185px;
        justify-items: left;
        text-align: start;
    }
}

.footer_copyright {
    background-color: #000000;
    margin: 0;
}
.footer_copyright h6 {
    color: var(--bs-white);
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    margin-bottom: 0;
}
.footer_copyright h6 span {
    color: var(--bs-hover);
}

/* Project Page CSS start*/

.work_activities {
    padding: 10px;
}
.work_activities h5 {
    padding: 10px 50px;
    text-align: center;
    font-size: 22px;
}
.work_portfolio {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
}

.work_portfolio .work_image {
    width: 210px;
    height: 150px;

    overflow: hidden;
    margin: 5px;
}
.work_portfolio .work_image img {
    width: 100%;
    height: 150px;
    transition: transform 2s, filter 1.5s ease-in-out;
    transform-origin: center center;
    object-fit: cover;
    filter: brightness(100%);
}
.work_portfolio .work_image img:hover {
    filter: brightness(100%);
    transform: scale(1.3);
    cursor: pointer;
}

@media (max-width: 1326px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 200px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 1286px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 190px;
        height: 140px;

        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 1224px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 220px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 1170px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 200px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 1070px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 240px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 1024px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 230px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 984px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 300px;
        height: 200px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 952px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 280px;
        height: 180px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 180px;
    }
}
@media (max-width: 892px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 265px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 848px) {
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 250px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 804px) {
    .work_activities {
        padding: 0 30px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 340px;
        height: 220px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 220px;
    }
}
@media (max-width: 744px) {
    .work_activities {
        padding: 0 20px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 320px;
        height: 220px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 220px;
    }
}
@media (max-width: 694px) {
    .work_activities {
        padding: 0 30px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 300px;
        height: 220px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 220px;
    }
}
@media (max-width: 664px) {
    .work_activities {
        padding: 0 30px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 280px;
        height: 200px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 624px) {
    .work_activities {
        padding: 0 10px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 270px;
        height: 180px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 180px;
    }
}
@media (max-width: 584px) {
    .work_activities {
        padding: 0 20px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 250px;
        height: 180px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 180px;
    }
}
@media (max-width: 554px) {
    .work_activities {
        padding: 0 20px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 240px;
        height: 180px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 180px;
    }
}
@media (max-width: 534px) {
    .work_activities {
        padding: 0 10px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 220px;
        height: 150px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 150px;
    }
}
@media (max-width: 484px) {
    .work_activities {
        padding: 0 30px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 400px;
        height: 220px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 220px;
    }
}
@media (max-width: 452px) {
    .work_activities {
        padding: 0 30px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 355px;
        height: 220px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 220px;
    }
}
@media (max-width: 410px) {
    .work_activities {
        padding: 0 30px;
    }
    .work_portfolio {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
    .work_portfolio .work_image {
        width: 320px;
        height: 200px;
        overflow: hidden;
        margin: 5px;
    }
    .work_portfolio .work_image img {
        width: 100%;
        height: 200px;
    }
}

/* Project Page */
.project_about {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px 50px 50px;
    background-color: aliceblue;
}
.project_about .project_about_text {
    text-align: center;
}
.project_about .project_about_text h4 {
    font-size: 40px;
    color: var(--bs-matrix);
    text-align: center;
    font-weight: 700px;
    position: relative;
}
.project_about .project_about_text h4 span {
    color: #198754;
}

.project_about .project_about_text h6 {
    font-size: 25px;
}
.project_about .project_about_text p {
    font-size: 16px;
}

/* Project Page CSS end*/

/* about story */

.about_story {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px;
    background-color: aliceblue;
}
.about_story .about_story_details {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.about_story .about_story_details h4 {
    font-size: 40px;
    color: black;
}
.about_story .about_story_details h4 span {
    color: #037ccc;
    font-weight: bolder;
}
.about_story .about_story_details p {
    font-size: 18px;
    text-align: justify;
}
.about_story .about_story_details p span {
    font-size: 18px;
    color: var(--bs-indigo);
}
.about_story .about_story_image {
    width: 50%;
    margin: auto;
    padding: 0 0 0 100px;
}
.about_story .about_story_image img {
    width: 500px;
    height: 330px;
    object-fit: contain;
}

.about_mission {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px;
    background-color: cornsilk;
}
.about_mission .about_mission_details {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.about_mission .about_mission_details h4 {
    font-size: 40px;
    color: black;
}
.about_mission .about_mission_details h4 span {
    color: #ff0606;
    font-weight: bolder;
}
.about_mission .about_mission_details p {
    font-size: 18px;
    text-align: justify;
}

.about_mission .about_mission_image {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.about_mission .about_mission_image img {
    width: 500px;
    height: 430px;
    object-fit: contain;
}

.about_service {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px;
}
.about_service .about_service_details {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.about_service .about_service_details h4 {
    font-size: 40px;
    color: black;
}
.about_service .about_service_details h4 span {
    color: #6610f2;
    font-weight: bolder;
}
.about_service .about_service_details p {
    font-size: 18px;
    text-align: justify;
}

.about_service .about_service_image {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.about_service .about_service_image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

@media (max-width: 1124px) {
    .about_mission .about_mission_image img {
        width: 400px;
        height: 380px;
    }
    .about_service .about_service_image img {
        width: 100%;
        height: 400px;
    }
}
@media (max-width: 1038px) {
    .about_story .about_story_image {
        width: 50%;
        margin: auto;
        padding: 0 0 0 30px;
    }
    .about_story .about_story_image img {
        width: 500px;
        height: 300px;
    }
    .about_mission .about_mission_image img {
        width: 400px;
        height: 320px;
    }

    .about_service .about_service_details h4 {
        font-size: 30px;
        color: black;
    }

    .about_service .about_service_details p {
        font-size: 16px;
        text-align: justify;
    }
    .about_service .about_service_image img {
        width: 100%;
        height: 350px;
    }
}
@media (max-width: 770px) {
    .about_story {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
        background-color: aliceblue;
    }
    .about_story .about_story_details {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }

    .about_story .about_story_image {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_story .about_story_image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .about_mission {
        display: flex;
        flex-direction: column-reverse;
        padding: 20px 20px;
        background-color: #20c997;
    }
    .about_mission .about_mission_details {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_mission .about_mission_image {
        width: 100%;
        margin: auto;
        padding: 0 20px;
        display: block;
        text-align: center;
        justify-content: center;
    }
    .about_mission .about_mission_image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    .about_service {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
    }
    .about_service .about_service_details {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_service .about_service_image {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_service .about_service_image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
}
@media (max-width: 544px) {
    .about_story {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
        background-color: aliceblue;
    }
    .about_story .about_story_details {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }

    .about_story .about_story_image {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_story .about_story_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about_mission {
        display: flex;
        flex-direction: column-reverse;
        padding: 20px 20px;
        background-color: #20c997;
    }
    .about_mission .about_mission_details {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_mission .about_mission_image {
        width: 100%;
        margin: auto;
        padding: 0 20px;
        display: block;
        text-align: center;
        justify-content: center;
    }
    .about_mission .about_mission_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about_service {
        display: flex;
        flex-direction: column;
        padding: 20px 20px;
    }
    .about_service .about_service_details {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_service .about_service_image {
        width: 100%;
        margin: auto;
        padding: 0 20px;
    }
    .about_service .about_service_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ecommerce business */
.ecommerce_introduce {
    text-align: center;
    padding: 50px 0;
    background-color: aliceblue;
}

.ecommerce_introduce .title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    color: var(--bs-red);
    padding: 10px 0;
}
.ecommerce_introduce .pro_title {
    font-size: 25px;
    text-align: center;
    padding: 10px 0;
    color: #0d6efd;
}
.ecommerce_introduce .sub_title {
    font-size: 18px;
    text-align: center;
    padding: 0 100px;
}

.ecommerce_promo_video .promo_video {
    width: 100%;
    height: 600px;
    z-index: -1;
    object-fit: cover;

    filter: brightness(99%);
}

.business_slogan {
    text-align: left;
    padding: 30px 100px 50px 100px;
    background-color: aliceblue;
}
.business_slogan h2 {
    font-size: 55px;
    color: var(--bs-matrix);
    font-weight: 600;
    font-family: "Poppins";
    text-align: left;
}
.business_slogan p {
    font-size: 22px;
    text-align: left;
}
.business_btn {
    font-size: 30px;
    padding: 8px 30px;
    background-color: var(--bs-matrix);
    color: white;
    border-radius: 10px;
    border: none;
    font-weight: 500;
}
.business_btn:hover {
    background-color: #007941;
    color: white;
    transition: 1s ease;
}

.ecommerce_topic {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px;
    background-color: rgb(240, 255, 255);
}
.ecommerce_topic .ecommerce_topic_details {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.ecommerce_topic .ecommerce_topic_details h4 {
    font-size: 40px;
    text-align: center;
    color: #20c997;
}
.ecommerce_topic .ecommerce_topic_details h5 {
    font-size: 28px;
    text-align: center;
    color: #1377bd;
}

.ecommerce_topic .ecommerce_topic_details p {
    font-size: 18px;
    text-align: justify;
}
.ecommerce_topic .ecommerce_topic_details p span {
    font-size: 18px;
    color: var(--bs-indigo);
}
.ecommerce_topic .ecommerce_topic_image {
    width: 50%;
    margin: auto;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ecommerce_topic .ecommerce_topic_image img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}

.ecommerce_topic_second {
    display: flex;
    justify-content: space-between;
    padding: 50px 50px;
    background-color: aliceblue;
}
.ecommerce_topic_second .ecommerce_topic_details_second {
    width: 50%;
    margin: auto;
    padding: 0 20px;
}
.ecommerce_topic_second .ecommerce_topic_details_second h4 {
    font-size: 40px;
    text-align: center;
    color: black;
}

.ecommerce_topic_second .ecommerce_topic_details_second p {
    font-size: 18px;
    text-align: justify;
}
.ecommerce_topic_second .ecommerce_topic_details_second p span {
    font-size: 18px;
    color: var(--bs-indigo);
}
.ecommerce_topic_second .ecommerce_topic_image_second {
    width: 50%;
    margin: auto;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ecommerce_topic_second .ecommerce_topic_image_second img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}

@media (max-width: 1060px) {
    .business_slogan h2 {
        font-size: 55px;
    }
}
@media (max-width: 991px) {
    .ecommerce_introduce .title {
        font-size: 35px;
        text-align: center;
        padding: 10px 0;
    }
    .ecommerce_introduce .pro_title {
        padding: 10px 20px;
    }
    .ecommerce_introduce .sub_title {
        font-size: 18px;
        text-align: center;
        padding: 0 20px;
    }

    .ecommerce_topic .ecommerce_topic_image img {
        width: 100%;
        height: 300px;
    }
    .ecommerce_topic .ecommerce_topic_details h4 {
        font-size: 30px;
        text-align: center;
        color: #d63384;
    }
    .ecommerce_topic_second .ecommerce_topic_image_second img {
        width: 100%;
        height: 300px;
    }

    .ecommerce_topic_second .ecommerce_topic_details_second h4 {
        font-size: 30px;
        text-align: center;
        color: black;
    }
}

@media (max-width: 816px) {
    .ecommerce_promo_video .promo_video {
        width: 100%;
        height: 500px;
        z-index: -1;
        object-fit: cover;

        filter: brightness(99%);
    }
    .business_slogan {
        text-align: center;
        padding: 30px 50px 50px 50px;
        background-color: aliceblue;
    }
    .ecommerce_topic {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 50px 50px;
        background-color: aliceblue;
    }
    .ecommerce_topic_second {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        padding: 50px 50px;
        background-color: aliceblue;
    }
    .ecommerce_topic .ecommerce_topic_details {
        width: 100%;
        margin: auto;
        padding: 0 5px;
    }
    .ecommerce_topic .ecommerce_topic_image {
        width: 100%;
        margin: auto;
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .ecommerce_topic_second .ecommerce_topic_details_second {
        width: 100%;
        margin: auto;
        padding: 0 5px;
    }
    .ecommerce_topic_second .ecommerce_topic_image_second {
        width: 100%;
        margin: auto;
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .ecommerce_topic .ecommerce_topic_image img {
        width: 100%;
        height: 330px;
        object-fit: contain;
    }
    .ecommerce_topic_second .ecommerce_topic_image_second img {
        width: 100%;
        height: 330px;
        object-fit: contain;
    }
}

@media (max-width: 763px) {
    .ecommerce_promo_video .promo_video {
        width: 100%;
        height: 400px;
        z-index: -1;
        object-fit: cover;

        filter: brightness(99%);
    }
    .business_slogan h2 {
        font-size: 45px;
    }
    .business_slogan {
        text-align: center;
        padding: 30px 50px 50px 50px;
        background-color: aliceblue;
    }
}
@media (max-width: 563px) {
    .ecommerce_introduce .pro_title {
        font-size: 20px;
        text-align: center;
        padding: 10px 0;
        color: var(--bs-matrix);
    }
    .ecommerce_introduce .sub_title {
        font-size: 16px;
        text-align: center;
        padding: 1px;
    }
    .ecommerce_promo_video .promo_video {
        width: 100%;
        height: 300px;
        z-index: -1;
        object-fit: cover;

        filter: brightness(99%);
    }
    .business_slogan h2 {
        font-size: 35px;
    }
    .business_slogan {
        text-align: center;
        padding: 30px 50px 50px 50px;
        background-color: aliceblue;
    }
}
@media (max-width: 486px) {
    .ecommerce_introduce .title {
        font-size: 30px;
        text-align: center;
        padding: 10px 0;
    }
    .ecommerce_introduce .pro_title {
        font-size: 20px;
        text-align: center;
        padding: 10px 0;
        color: var(--bs-matrix);
    }
    .ecommerce_introduce .sub_title {
        font-size: 16px;
        text-align: center;
        padding: 1px;
    }
    .ecommerce_promo_video .promo_video {
        width: 100%;
        height: 300px;
        z-index: -1;
        object-fit: cover;

        filter: brightness(99%);
    }
    .business_slogan h2 {
        font-size: 35px;
    }
    .business_slogan {
        text-align: center;
        padding: 30px 50px 50px 50px;
        background-color: aliceblue;
    }
    .business_btn {
        font-size: 20px;
        padding: 7px 10px;
        background-color: #198754;
        color: white;
        border-radius: 10px;
        border: none;
        font-weight: 400;
    }
    .ecommerce_topic .ecommerce_topic_image img {
        width: 100%;
        height: 250px;
        object-fit: contain;
    }
    .ecommerce_topic_second .ecommerce_topic_image_second img {
        width: 100%;
        height: 250px;
        object-fit: contain;
    }
}
/* end ecommerce business*/

/* Space Planet */

.spinner-box {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.solar-system {
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bs-matrix);
    border-radius: 50%;
}
.neptune-orbit {
    width: 360px;
    height: 360px;
    animation: spin 23s linear 0s infinite;
}
.uranus-orbit {
    width: 320px;
    height: 320px;
    animation: spin 22s linear 0s infinite;
}
.saturn-orbit {
    width: 280px;
    height: 280px;
    animation: spin 18s linear 0s infinite;
}
.jupitor-orbit {
    width: 240px;
    height: 240px;
    animation: spin 30s linear 0s infinite;
}
.mars-orbit {
    width: 200px;
    height: 200px;
    animation: spin 22s linear 0s infinite;
}
.earth-orbit {
    width: 160px;
    height: 160px;
    animation: spin 18s linear 0s infinite;
}
.venus-orbit {
    width: 120px;
    height: 120px;
    animation: spin 14s linear 0s infinite;
}
.mercury-orbit {
    width: 80px;
    height: 80px;
    animation: spin 8s linear 0s infinite;
}

.planet-neptune {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(69, 242, 251);
}
.planet-uranus {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(180, 62, 249);
}
.planet-saturn {
    position: absolute;
    top: -9px;
    width: 20px;
    height: 18px;
    border-radius: 50%;
    background-color: rgb(156, 123, 86);
}
.planet-jupitor {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(252, 203, 57);
}
.planet-mars {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(255, 111, 0);
}
.planet-earth {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(5, 157, 48);
}
.planet-venus {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(255, 143, 99);
}
.planet-mercury {
    position: absolute;
    top: -8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgb(182, 156, 122);
}

.sun {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ff7a06;
    box-shadow: rgb(255, 179, 1) 0px 10px 36px 0px,
        rgb(232, 121, 3) 0px 0px 0px 1px;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}

.our_planet {
    display: flex;
    justify-content: space-between;
    padding: 50px 70px;
    background-color: rgb(31, 31, 31);
}

.our_planet .our_earth {
    width: 60%;
    padding: 50px 0 50px 50px;
}
.our_planet .our_earth h2 {
    text-align: start;
    font-size: 50px;
    font-weight: 700;
    color: white;
    padding: 20px 0;
}
.our_planet .our_earth p {
    text-align: start;
    font-size: 20px;
    padding-bottom: 20px;
    color: white;
    text-align: justify;
}
.our_planet .our_earth .more_idea {
    padding: 8px 20px;
    color: white;
    font-size: 20px;
    background-color: var(--bs-matrix);
    border-radius: 5px;
    text-decoration: none;
}
.our_planet .our_earth .more_idea:hover {
    color: white;

    background-color: #198754;

    text-decoration: none;
}
.our_planet .our_space {
    width: 40%;
    display: flex;
    align-items: center;       /* Vertical alignment */
    justify-content: center;   /* Horizontal alignment */
    padding-left: 0;           /* Center করার জন্য padding বাদ দিলাম */
    margin: 0 auto;            /* Container-কে centered করতে */
    text-align: center;        /* Text centered */
    flex-direction: column;    /* Optional: যদি content vertical হোক */
}


@media (max-width: 1276px) {
    .our_planet .our_earth h2 {
        font-size: 40px;
    }
}

@media (max-width: 1168px) {
    .our_planet .our_space {
        padding-left: 20px;
    }
}
@media (max-width: 1069px) {
    .our_planet {
        padding: 50px 20px 50px 10px;
    }
    .our_planet .our_earth {
        width: 50%;

        padding: 50px 0 50px 20px;
    }
    .our_planet .our_earth h2 {
        font-size: 30px;
    }
    .our_planet .our_earth p {
        font-size: 15px;
    }
    .our_planet .our_space {
        width: 50%;

        padding-left: 20px;
    }
}
@media (max-width: 875px) {
    .our_planet {
        padding: 50px 20 50px 10px;
    }
    .our_planet .our_earth {
        width: 50%;

        padding: 50px 0 50px 20px;
    }
    .our_planet .our_earth h2 {
        font-size: 30px;
    }
    .our_planet .our_earth p {
        font-size: 15px;
    }
    .our_planet .our_space {
        width: 50%;

        padding-left: 20px;
    }
    .solar-system {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 820px) {
    .our_planet {
        display: flex;
        flex-direction: column;
        padding: 50px 30px;
        background-color: rgb(31, 31, 31);
    }

    .our_planet .our_earth {
        width: 100%;
        padding: 0px 10px;
    }
    .our_planet .our_earth h2 {
        text-align: start;
        font-size: 40px;
        font-weight: 700;
        color: white;
        padding: 20px 0;
    }
    .our_planet .our_earth p {
        text-align: start;
        font-size: 20px;
        padding-bottom: 20px;
        color: white;
        text-align: justify;
    }
    .our_planet .our_earth .more_idea {
        padding: 10px 20px;
        color: white;
        font-size: 20px;
        background-color: var(--bs-matrix);
        border-radius: 5px;
    }
    .our_planet .our_space {
        padding: 5px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-items: center;
        padding-left: 150px;
    }
    .solar-system {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: auto;
    }
}

@media (max-width: 698px) {
    .our_planet {
        display: flex;
        flex-direction: column;
        padding: 50px 30px;
        background-color: rgb(31, 31, 31);
    }

    .our_planet .our_earth {
        width: 100%;
        padding: 0px 10px;
    }
    .our_planet .our_earth h2 {
        text-align: start;
        font-size: 40px;
        font-weight: 700;
        color: white;
        padding: 20px 0;
    }
    .our_planet .our_earth p {
        text-align: start;
        font-size: 20px;
        padding-bottom: 20px;
        color: white;
        text-align: justify;
    }
    .our_planet .our_earth .more_idea {
        padding: 10px 20px;
        color: white;
        font-size: 20px;
        background-color: var(--bs-matrix);
        border-radius: 5px;
    }
    .our_planet .our_space {
        padding: 5px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-items: center;
        padding-left: 100px;
    }
    .solar-system {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: auto;
    }
}

@media (max-width: 574px) {
    .our_planet {
        display: flex;
        flex-direction: column;
        padding: 50px 30px;
        background-color: rgb(31, 31, 31);
    }

    .our_planet .our_earth {
        width: 100%;
        padding: 0px 10px;
    }
    .our_planet .our_earth h2 {
        text-align: start;
        font-size: 40px;
        font-weight: 700;
        color: white;
        padding: 20px 0;
    }
    .our_planet .our_earth p {
        text-align: start;
        font-size: 20px;
        padding-bottom: 20px;
        color: white;
        text-align: justify;
    }
    .our_planet .our_earth .more_idea {
        padding: 10px 20px;
        color: white;
        font-size: 20px;
        background-color: var(--bs-matrix);
        border-radius: 5px;
    }
    .our_planet .our_space {
        padding: 5px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-items: center;
        padding-left: 50px;
    }
    .solar-system {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: auto;
    }
}

@media (max-width: 504px) {
    .our_planet {
        display: flex;
        flex-direction: column;
        padding: 50px 30px;
        background-color: rgb(31, 31, 31);
    }

    .our_planet .our_earth {
        width: 100%;
        padding: 0px 10px;
    }
    .our_planet .our_earth h2 {
        text-align: start;
        font-size: 30px;
        font-weight: 700;
        color: white;
        padding: 20px 0;
    }
    .our_planet .our_earth p {
        text-align: start;
        font-size: 17px;
        padding-bottom: 20px;
        color: white;
        text-align: justify;
    }
    .our_planet .our_earth .more_idea {
        padding: 10px 20px;
        color: white;
        font-size: 20px;
        background-color: var(--bs-matrix);
        border-radius: 5px;
    }
    .our_planet .our_space {
        padding: 5px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-items: center;
        padding-left: 30px;
    }
    .solar-system {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: auto;
    }
}

@media (max-width: 504px) {
    .our_planet {
        display: flex;
        flex-direction: column;
        padding: 50px 30px;
        background-color: rgb(31, 31, 31);
    }

    .our_planet .our_earth {
        width: 100%;
        padding: 0px 10px;
    }
    .our_planet .our_earth h2 {
        text-align: start;
        font-size: 30px;
        font-weight: 700;
        color: white;
        padding: 20px 0;
    }
    .our_planet .our_earth p {
        text-align: start;
        font-size: 17px;
        padding-bottom: 20px;
        color: white;
        text-align: justify;
    }
    .our_planet .our_earth .more_idea {
        padding: 10px 20px;
        color: white;
        font-size: 20px;
        background-color: var(--bs-matrix);
        border-radius: 5px;
    }
    .our_planet .our_space {
        padding: 5px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: center;
        text-align: center;
        padding-left: 0px;
    }
    .solar-system {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: auto;
    }
}

@media (max-width: 430px) {
    .our_planet {
        display: flex;
        flex-direction: column;
        padding: 50px 0px;
        background-color: rgb(31, 31, 31);
    }

    .our_planet .our_earth {
        width: 100%;
        padding: 0px 20px;
    }
    .our_planet .our_earth h2 {
        text-align: start;
        font-size: 30px;
        font-weight: 700;
        color: white;
        padding: 20px 0;
    }
    .our_planet .our_earth p {
        text-align: start;
        font-size: 17px;
        padding-bottom: 20px;
        color: white;
        text-align: justify;
    }
    .our_planet .our_earth .more_idea {
        padding: 5px 15px;
        color: white;
        font-size: 15px;
        background-color: var(--bs-matrix);
        border-radius: 5px;
    }
    .our_planet .our_space {
        padding: 5px 0px;
        width: 100%;
        margin: auto;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .solar-system {
        width: 380px;
        height: 380px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.shopping {
    max-width: 2560px;
    padding: 50px 100px;
}


.shopping h5 {
    text-align: center;
    color: crimson;
    padding-bottom: 15px;
}

.shopping .shopping_section {
    display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 21px;
}



.shopping .shopping_section .shopping_content img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.shopping .shopping_section .shopping_content h5 {
    text-align: start;
    padding: 20px 0 0 0;
    color: #007941;
    font-weight: 500;
}

.shopping .shopping_section .shopping_content p {
    text-align: justify;
    margin: 0;
    line-height: 1.5;
    min-height: 80px; /* সব প্যারার লাইন সমান */
}

/* Responsive adjustments */
@media (max-width: 1920px) {
    .shopping .shopping_section {
    display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 21px;
}
}
@media (max-width: 980px) {
    .shopping .shopping_section {
    display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 21px;
}
}

@media (max-width: 980px) {
    .shopping {
   
    padding: 50px 50px;
}
    .shopping .shopping_section {
    display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 21px;
}
}
@media (max-width: 760px) {
 
    .shopping .shopping_section {
    display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 21px;
}
}
@media (max-width: 450px) {
 
    .shopping .shopping_section {
    display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 21px;
}
}


/* hire us code */
.prospectus {
    background-color: whitesmoke;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.prospectus img {
    width: 100%;
}

.prospectus h2 {
    padding-top: 10px;
    text-align: center;
    color: var(--bs-matrix);
    font-size: 50px;
    font-weight: 700;
}
.prospectus h5 {
    padding: 10px 100px 0 100px;
    text-align: center;
    color: rgb(108, 108, 108);
    text-align: justify;
    font-size: 22px;
    font-weight: 400;
}
.prospectus h5 span {
    color: #6610f2;
}

.prospectus p {
    padding: 0 100px;
    color: gray;
    text-align: justify;
}

.contact h2 {
    text-align: center;
    color: var(--bs-matrix);
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 678px) {
    .prospectus h2 {
        padding: 0 50px;
        font-size: 35px;
    }
    .prospectus h5 {
        padding: 10px 50px 0 50px;
    }

    .prospectus p {
        padding: 0 50px;
    }
}

/* pages */

.page_details {
    padding: 50px 100px;
    background-color: whitesmoke;
}
.content_details {
    padding: 50px 80px;
    background-color: white;
}

.page_title {
    text-align: center;
    color: var(--bs-matrix);
}

@media (max-width: 840px) {
    .page_details {
        padding: 50px 50px;
    }
    .content_details {
        padding: 50px 30px;
    }
}
@media (max-width: 478px) {
    .page_details {
        padding: 50px 30px;
    }
    .content_details {
        padding: 50px 20px;
    }
}

.pricings{
    max-width: 2560px;
    padding: 50px 100px;
}

.pricing-plan {
    
    display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 21px;
    margin: auto;
    padding: 20px 0;
}

.pricing {
    
    padding: 25px 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    border-radius: 12px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 20px;
}

.pricing h6 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.pricing p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.pricing h3 {
    margin-bottom: 20px;
}

.pricing ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.pricing ul li {
    margin-bottom: 10px;
}

.pricing ul li i {
    color: #6E3494;
    margin-right: 8px;
}

.pricing .btn {
    background-color: #6E3494;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    transition: background-color 0.3s ease;
}

.pricing .btn:hover {
    background-color: #502466;
}

/* Responsive Adjustments */
@media (max-width: 1218px) {
    .pricing-plan {
        grid-template-columns: repeat(3, 1fr);
	    gap: 21px;
        padding: 15px 0;
    }
    .pricing {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .pricings{
    padding: 50px 50px;
    }
    .pricing-plan {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px 0;
    }
    .pricing {
        width: 100%;
        padding: 20px;
    }
}
@media (max-width: 980px) {
    
    .pricing-plan {
        grid-template-columns: repeat(1, 1fr);
        padding: 10px 0;
    }
    
}

