@import url('https://fonts.googleapis.com/css2?family=Ubuntu&family=Comfortaa:wght@300..700&display=swap');



/* //////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////
//////////////////////////////////////////////////
////////////////////////////////////////////////////////// */


* {
    margin: 0%;
    padding: 0%;
    font-family: sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: white;
    line-height: 1.6;
}

section,
.row {
    overflow-x: hidden;
    margin: 0;
}

figure {
    padding: 0 !important;
}

#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #006583;
    width: 0%;
    z-index: 9999;
    transition: width 0.25s ease-out;
}

#scrollTopBtn {
    position: fixed;
    bottom: 5%;
    right: 5%;
    width: 40px;
    height: 40px;
    background: #ffffff;
    box-shadow: inset 2px 2px 5px gray;
    color: #000000;
    font-weight: 900;
    border: 2px solid whitesmoke;
    border-radius: 50px;
    z-index: 999;
}

#whts-icon {
    width: fit-content;
    margin-top: 32rem;
    margin-left: 1.6rem;
    position: fixed;
    display: block;
    z-index: 9999;
}

#whts-icon .bi-whatsapp {
    font-size: 40px;
    color: #18b500;
}


.alert {
    width: 50%;
    height: fit-content;
    position: fixed;
    z-index: 9999;
    bottom: 0;
    right: 0;
}

.alert-dismissible .btn-close {
    padding: 5px;
}

/* width */
::-webkit-scrollbar {
    width: 5px;

}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff;
    box-shadow: inset 2px 2px 5px gray;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #a5a5a5;
    border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #005d7e;
}

img {
    vertical-align: sub !important;
}

.btn-primary {
    background-color: #005d7e;
    color: white;
    border: none;
    border-radius: 0px;
    box-shadow: 3px 3px 5px #8f8f8f;
    transition: all 0.5s;
}


.btn-primary:hover {
    background-color: #003447;
    color: #ffffff;
    box-shadow: 0px 0px 0px gray;
}

.btn-info {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0px;
    box-shadow: 5px 5px 10px gray;
    transition: all 0.5s;
}


.btn-info:hover {
    background-color: #b0b0b0;
    color: #000000;
    box-shadow: 0px 0px 5px gray;
}



.text-teal {
    color: #003d50 !important;
}

.text-whitesmoke {
    color: #f4f4f4 !important;
}

.text-lightteal {
    color: #007B8A !important;
}


.text-black {
    color: #000000;
}

.text-brown {
    color: #5d5500 !important;
}

.bg-teal {
    background-image: linear-gradient(to top, #003d50 60%, #007B8A);
    color: whitesmoke;
}

.bg-teal-p {
    background-color: #003d50;
    color: whitesmoke;
}


.bg-whitesmoke {
    background-color: #f4f4f4;
    color: #003d50;
}



.shadow-black {
    box-shadow: 3px 3px 6px #505050;
}

.shadow-black:hover {
    box-shadow: 0px 0px 2px #505050;
}

.all-teal-border {
    border: 8px solid #003d50;
}

.left-teal-border {
    border: none;
    border-left: 5px solid #003d50;
}

.left-lightteal-border {
    border: none;
    border-left: 5px solid #007B8A;
}

.teal-border {
    border: none;
    border-bottom: 3px solid #003d50;
    padding-bottom: 5px;
}

.lightteal-border {
    border: none;
    border-bottom: 3px solid #007B8A;
    padding-bottom: 5px;
}

.whitesmoke-border {
    border: none;
    border-bottom: 3px solid #f4f4f4;
    padding-bottom: 5px;
}

.bg-transprant {
    background-color: #00000000;
}



#contact-form .form-control {
    border-radius: 0px;
}

#contact-form .form-control:focus {
    box-shadow: 0 0 0 .15rem #00948aa8;
}


.fs-7 {
    font-size: 14px !important;
}

.fs-8 {
    font-size: 11px !important;
}

.fs-xl {
    font-size: 100px;
}

.w-fit {
    width: fit-content !important;
}

.serif {
    font-family: serif;
}

.text-justify {
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
.ubuntu {
    font-family: "Ubuntu", sans-serif;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, system-ui;
}

.sans {
    font-family: sans-serif;
}


.align-content-center {
    align-content: center !important;
}

.align-content-end {
    align-content: end !important;
}

.m-responsive-1 {
    margin-block: 5%;
}

.h-fit {
    height: fit-content;
}

.p-2-auto {
    padding: 6px !important;
}

.fadeInDown {
    font-family: 'Ubuntu', sans-serif;
    animation: fadeInDown 1s ease forwards;
}

.fadeInUp {
    animation: fadeInUp 1.2s ease forwards;
}

.zoomOut {
    animation: zoomOut 1.2s ease forwards;
}

.zoomIn {
    animation: zoomIn 1.2s ease forwards;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.pre-scrolling {
    background-color: #ffffff;
}

.scrolling {
    background-color: #f2f2f266;
    box-shadow: 0px 2px 5px #2d2d2d;
    backdrop-filter: blur(2px);
}

.not-scrolling {
    background-color: #ffffffe1;
    backdrop-filter: blur(5px);
}


.item-list {
    list-style-type: disclosure-closed;
}

/* ////////////////////////////////////////////////////////////////////
********************************************************************
////////////////////////////////////////////////////////////////// */



#navbar {
    border: none;
    outline: none;
    --bs-navbar-color: #003d50;
    --bs-navbar-hover-color: #550000;
}

#nav-dropdown {
    background-color: #003d50;
    color: #f4f4f4;
    width: 50vw;
    padding-left: 20px;
    padding-block: 2rem;
    align-content: center;
}

#nav-dropdown-2 {
    background-color: #003d50;
    color: #f4f4f4;
    width: 20vw;
    padding-left: 20px;
    padding-block: 2rem;
    align-content: center;
}

#nav-dropdown .dropdown-item,
#nav-dropdown-2 .dropdown-item {
    background-color: #00948a00;
    color: #f4f4f4;
}

#nav-dropdown .dropdown-item:hover,
#nav-dropdown-2 .dropdown-item:hover {
    background-color: #005d7e;
    color: #f4f4f4;
}

#nav-dropdown .dropdown-item .drop-arr,
#nav-dropdown-2 .dropdown-item .drop-arr {
    margin-left: 5px;
}

#nav-dropdown .dropdown-item:hover>.drop-arr,
#nav-dropdown-2 .dropdown-item:hover>.drop-arr {
    margin-left: 10px;
    transition: all .3s;
}

/* #navbar-dropdown:hover>.dropdown-menu {
    display: block;
}
 */

#navbarSupportedContent {
    background-color: #00000000;
    margin-left: 5%;
}

.nav-item {
    text-transform: uppercase;
    background-color: #00000000;
}

.navbar-nav {
    justify-content: space-around;
    width: 78%;
    box-shadow: 2px 3px 5px gray;
    border-radius: 20px;
    padding-block: .7%;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-link:hover {
    box-shadow: -1px 0px 2px #ededed;
}

.drop-text {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.nav-text {
    color: #007b8a;
    font-weight: 600;
    font-size: 15px;

}

.nav-active {
    color: #5d5500;
    border-radius: 15px;
    box-shadow: 2px 2px 2px gray, inset 2px 2px 2px gray;
    /* box-shadow: inset 0px 0px 5px gray; */

}

.bi-three-dots-vertical {
    font-weight: 700;
    font-size: 25px;
    color: #00739d;
}

.logo {
    height: 2.5rem;
    margin-left: 10%;
}


a {
    text-decoration: none;
}


/* Off canvas style */
.offcanvas {
    --bs-offcanvas-width: 300px;
}

.offcanvas-body {
    background-color: #005d7e;

}

.off-menu-link {
    color: #f3f3f3;
    font-weight: 500;
    font-size: large;
}

.offcanvas-header {
    background-color: #f4f4f4;
    color: #005d7e;
}

.btn-close {
    color: white;
    background-color: white;
}

.drop-btn {
    background-color: #005d7e;
    color: white;
}

.drop-btn:hover {
    background-color: #005d7e;
    color: white;
}

.off-can-bot {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
}

/* Off canvas style */





/* footer style */

.footer {
    color: #f8fdff;
    letter-spacing: 1px;
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 15px;
}

.footer-link {
    color: #b7b7b7;
    font-weight: 400;
    font-size: 12px;
}

#footer-contact a {
    color: #b7b7b7;
    font-size: 12px;
}

#footer-contact a .bi {
    padding: 5px;
    border: 1px solid gray;
}

#footer-icon {
    flex-wrap: wrap;
}

#footer-icon a {
    color: #f8fdff;
    font-size: 15px;
}

#footer-icon .bi {
    padding: 10px;
    box-shadow: 1px 1px 5px #717171;
    transition: all .5s;
}

#footer-icon .bi:hover {
    color: #d7e4ff;
    box-shadow: 0px 0px 2px #4c4c4c;
}


.foot-in {
    background-color: #222222;
    color: white;
    height: 50px;
    border-radius: 0;
}

.foot-in:focus {
    box-shadow: 0 0 0 1px #003d50;
}



/* home page style */


#top-slide-section-mobile-view {
    background: url('images/xvv.webp');
    background-size: cover;
    background-position: inherit;
    background-attachment: fixed;
    transition: all 0.1s ease-out;
}

#top-slide-section-mobile-view .row {
    background-color: #fff9f900;
    height: 100%;
}

#top-slide-section-mobile-view .top-col-I {
    border-radius: 30px;
    background-color: #00000000;
    height: fit-content;
    min-height: 30vh;

}


#top-slide-section-mobile-view #heading {
    font-weight: 500;
    color: #163f5f;
    font-family: "Ubuntu", system-ui;
    font-size: 32px;
    font-variant: small-caps;
    letter-spacing: 1px;
}

.mobile-top-text {
     background: linear-gradient(to left, #000645, #1D2671);
    background-clip: text;
    color: transparent;
    font-variant: small-caps;
}


#top-slide-section-mobile-view #top-button {
    position: absolute;
    top: 1%;
    left: 28%;
    width: 150px;
    font-size: 12px;
    background-color: #000000;
    color: white;
    border-radius: 20px;

}

#top-slide-section-mobile-view .in-row {
    position: absolute;
    bottom: 10%;
    left: 2.5%;
    background-color: #ffffff;
    width: 95%;
    padding: 2%;
    border-radius: 10px;

}




#top-slide-section {
    position: relative;
    left: 0%;
    text-align: left;
}

/*.top-slide-img {*/
/*    height: auto;*/
/*    width: 100%;*/
/*}*/

.carousel-indicators [data-bs-target] {
    background-color: #a5a5a5;
}

.top-slide-text {
    background-color: #ccd4d600;
    border-radius: 20px;
    position: absolute;
    margin: 8% 0% 10% 5%;
    width: 50%;

}

.top-slide-text h1,
.top-slide-text h2 {
    font-weight: 400;
}


.top-text {
    background: linear-gradient(to left, #000645, #1D2671);
    background-clip: text;
    color: transparent;
}

.top-slide-text #top-suptext {
    font-size: 20px;
}

.top-slide-text .top-subtext {
    font-size: 25px;
    font-weight: 400;
    color: #003D50;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

.button-box {
    position: absolute;
    bottom: 30%;
    left: 10%;
    z-index: 999;
}

.button-box .top-button {
    background-color: #003D50;
    color: white;
    width: 20vw;
    padding-block: 5%;
    border-radius: 0;
    transition: all .5s;
}

.button-box .top-button:hover {
    background-color: #002d3b;
    color: white;
    box-shadow: 5px 5px 10px gray;
    width: 20vw;
    padding-block: 5%;
    border-radius: 0;
}

.book-ani {
    height: 6vh;
    width: 100vw;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 600;
}



#ani-section {
    background-color: #c8c8c6;
    background: linear-gradient(to left, white, #A6A6A6);
}

#ani-row-div {
    background: url('images/15.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10%;
    color: #003734;
    z-index: 1;
}

#ani-col .card {
    background-color: whitesmoke;
    padding: 7% 5%;
    border: none;
}


#ani-col .card:hover {
    background-color: #ffffff;
}

#ani-row-div:hover #ani-col .card {
    transition: 1s;
    background: #fffff4;
    color: #003734;
}

.ani-img-sm {
    display: none;
}


#home-about-row {
    padding-block: 5%;
    padding-inline: 2%;
    background-color: #ffffff;

}

#home-about-row-col-1 {
    text-align: justify;
    position: sticky;

}

#home-about-row-col-1 .a {
    min-height: 80%;

}

#home-about-row-col-1 .b {
    height: 10%;

}

#home-about-row-col-1 .inner {
    content: "";
    height: 100%;
    background-color: #003d501a;
    width: 80%;
    position: absolute;
    z-index: -1;
    border-radius: 20px;
    /* clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%); */
}

#home-about-row-col figure {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

#home-about-row-col figure .a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002e4c72;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    transition: all .5s;
}


#home-about-row-col figure .b {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 20px;
    background-color: #01486f;
    transition: .8s all;
}

#home-about-row-col figure:hover .b {
    width: 100%;
}


#home-about-row-col figure .a p {
    color: #f9f9f9;
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: 2px;
    z-index: 111;
}

#home-about-row-col-1 p {
    font-weight: 500;
}


#home-about-row-col-2 img {
    height: 100%;
    width: auto;
    border-radius: 20px;
}



/*/////////////////////////*/
#home-service-section {
    background-color: white;
    padding: 2% 5% 8% 5%;
    width: 100%;
    height: auto;
    position: relative;
}

.ser-card-sec {
    display: flex;
}

#home-service-section #col-b {
    background-image: url('images/service.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0;
    height: 78vh;
    width: 70vw;
    max-width: 100vw;
    border: 10px solid #003d50;
    position: sticky !important;
    top: 20%;
    left: 0;
}

#home-service-section #col-s {
    margin: 6% 0px 6% -5%;
    width: 30vw;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

#home-service-section #col-s .inner-sec {
    margin: 0% 0px 40% 0%;
    background-image: linear-gradient(to top, #003d50 50%, #007B8A);
    border-radius: 20px;
    box-shadow: -2px 0px 5px #003d50;
    z-index: 1;
    padding-top: 3rem;
    position: sticky !important;
    top: 30%;
    left: 0;
}

#home-service-section #col-s .inner-sec img {
    height: auto;
    width: 85%;
    border-radius: 20px;
    border: 3px solid white;
}


#home-service-section #col-s .inner-sec #arrow-down {
    margin: 0% 0px -10px 0%;
    background-color: #003d50;
    color: white;
    border-radius: 50%;
    box-shadow: 0px 1px 1px gray;
}









#home-slide-row {
    height: 98vh;
    padding: 5%;
    background-color: #000000;
}

#last-row-home {
    padding: 5rem 2rem 5rem 2rem;
    background-image: linear-gradient(to bottom, #000000, #003d50);
    color: #f4f4f4;
}


#intro-row {
    background-color: #ffffff;
}

.xxx {
    position: relative;
    min-height: auto;
    max-height: 95vh;
    overflow: hidden;
}

.xxx .I {
    position: absolute;
    top: 20%;
    left: 5%;
    overflow: hidden;
    background-color: #ffffff70;
    color: white;
    backdrop-filter: blur(2px);
}


#intro-row .dark-card {
    background-image: linear-gradient(to right, #007B8A, #003d50, #003d50);
    color: whitesmoke;
    border: none;
}

#line-card {
    width: 10px;
    height: auto;
    background-color: #003d50;
}



#home-lst-row {
    padding-block: 5%;
    background-color: #f5f5f5;
    color: #003d50;
}

#home-lst-row img {
    border-radius: 0px;
    box-shadow: -10px -10px 5px #cbcbcb;
}

#lst-row-col {
    border: 0px solid white;
    background-color: #00000000;
    color: #e5e5e5;
    font-weight: 600;
}

#book-button {
    color: white;
    background-color: #005D7E;
    margin-bottom: 3rem;
    margin-top: 2rem;
    width: 20rem;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 5px 5px 0px #003D50;
    border-radius: 0;
    transition: all ease 1s;
}

#book-button:hover {
    color: white;
    background-color: #003D50;
    margin-bottom: 3rem;
    margin-top: 2rem;
    width: 20rem;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    box-shadow: 5px 5px 0px #005D7E;
}




#about-top-row {
    padding: 0%;
    /* background-color: #000000; */
    background-image: radial-gradient(black, black, #001c24);
    color: #ffffff;
}

#about-top-row #col-b {

    background-image: linear-gradient(to top, #003d50 50%, #007B8A);
    color: #ffffff;
    height: fit-content;
    vertical-align: middle;
    margin-top: 5%;
    padding-block: 2%;
    padding-inline: 20px;
    transform: translateX(-50px);
    border: none;
    border-right: 2px solid #f4f4f4;
}

.about-2-row {
    padding: 5%;
}


.about-2-row .col {
    align-content: end;
    overflow: hidden;
}

.about-2-row .col-md-6 img {
    transition: .5s;
}

.about-2-row .col-md-6 img:hover {
    transform: scale(1.05);
}

.about-2-row .list-group-item {
    background-color: #ffffff;
    color: white;
}


.about-lst-img-box {
    border: 8px solid #ffffff;
    overflow: hidden;
    border-radius: 10px;
}

.about-lst-img-box:hover #about-lst-img {
    transition: all .5s;
    transform: scale(1.05);
}


#services-row {
    background-color: #ffffff;
    padding: 5%;
    color: #003D50;
}


#app-service {
    background-color: #ffffff;
    box-shadow: 5px 1px 0px #003D50,
        0px 5px 0px #003D50,
        0px -2px 0px #003D50;
    border-radius: 20px;
    transition: all 0.5s;

}

#app-service:hover {
    background-color: #ffffff;
    box-shadow: rgba(115, 115, 115, 0.4) 5px 5px,
        rgba(70, 70, 70, 0.3) 10px 10px,
        rgba(63, 63, 63, 0.2) 15px 15px,
        rgba(0, 0, 0, 0.1) 20px 20px,
        rgba(24, 24, 24, 0.908) 5px 5px 10px;
    border-radius: 20px;
}




.service-page-card-col .card {
    background-color: whitesmoke;
    box-shadow: 2px 2px 5px #bbbbbb;
    border-radius: 10px;
    border: 2px solid white;
    transition: all 0.5s;
}

.service-page-card-col .card img {
    transition: all 0.5s;
}


.service-page-card-col .card:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 2px 2px 8px #bbbbbb;
    border-radius: 10px;
}

.service-page-card-col .card:hover img {
    transform: translateY(-5px);
}

#service-graphic-design {
    border: 5px solid #003D50;
    background-color: #ffffff;
    border-radius: 30px 0px 30px 0px;
    overflow: hidden;
}

#service-graphic-design .card {
    padding: 32px;
    border: none;
    box-shadow: 1px 1px 5px #a1a1a1;
    border-radius: 30px 0px 30px 0px;
}

#service-graphic-design .col-I {
    margin-bottom: -2px;
    overflow: hidden;
}

#service-graphic-design:hover .col-I-img {
    transition: all .5s;
    transform: scale(1.02);
}

#web-menti-row #col-2 {
    background-color: #8a9aa3;
    color: white;
    box-shadow: inset 2px 2px 8px #393939;
    padding: 3%;
}

#web-menti-row .col-md-1 {
    background-color: #8a9aa3;
    height: 5px;
    margin: auto 0% auto 0px;
}

.service-details-button,
.service-page-card-col .button {
    background-color: #f7f4f4;
    color: #003D50;
    border: 1px solid #ffffff;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 2px 2px 5px gray, inset 2px 2px 5px gray;
}

.service-details-button:hover .bi,
.service-page-card-col .button:hover .bi {
    transition: all .3s;
    margin-left: 5px;
}

#single-page-row {
    padding: 2%;
    background-color: #f4f4f4;
}

#single-page-row-app {
    padding: 2%;
    background-color: #ffffff;
}

.clip {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

#single-page-row-ecommerce {
    padding-block: 2%;
    background-color: #ffffff;
}

#app-dev-content-col-1 img {
    box-shadow: -10px -10px 0px #003D50;
}

#app-dev-content-col-2 {
    margin-top: 15%;
    margin-left: -10%;
    background-color: #f4f4f4;
    color: black;
    box-shadow: 10px 10px 0px #003D50;
}

#single-page-row-graphics {
    padding-block: 0%;
    background-color: #ffffff;
    color: #121212;
}

#ux-top {
    background: white;
    /* background: linear-gradient(to right, #2f80ed, #56ccf2); */
    color: #003d50;
    text-shadow: 2px 2px 5px #dedede;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ux-top-h {
    display: none;
}

#ux-top h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-family: 'Ubuntu', sans-serif;
    animation: fadeInDown 1s ease forwards;
}

#ux-top p {
    font-size: 1.2em;
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ux #line-card {
    height: 20rem;
}


.ux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 1rem;
    margin-top: 5rem;
    align-items: center;
}

.ux-grid .card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 2px 5px #e4e4e4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    align-items: center;
}

.ux-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.ux-grid .card img {
    max-width: 60px;
    margin-bottom: 10px;
}




#single-page-row-web-design {
    background-image: url('images/zb.jpg');
    background-position: center;
    background-size: cover;
    height: 88vh;
}


#single-page-row-web-design .col-I {
    background-color: #23232390;
    height: fit-content;
    border-radius: 20px;
}

#website-sec-2 {
    background: whitesmoke;
    position: relative;
}


#website-sec-2 .I .box {
    font-weight: 500;
}

#single-page-row-web-hosting {
    padding: 0%;
    background-image: linear-gradient(to bottom, black, #08282a);
    color: #c5c8c3;
}



#single-page-row-web-menti {
    height: 95vh;
    background: url('images/web-main.webp');
    background-position: center;
    background-size: cover;
    color: #0c0c0c;
}

#single-page-row-web-menti .col-I {
    height: fit-content;
    background-color: #000000a9;
    margin-right: 5%;
    border-radius: 30px;
    backdrop-filter: blur(5px);

}


#service-call-btn {
    background-color: #003d50;
    color: white;
    font-weight: 700;
    border-radius: 0px;
    animation: zoom 1s infinite;

}


@keyframes zoom {
    from {
        transform:
            rotate(-10deg);

    }

    50% {
        transform:
            rotate(10deg);
        background-color: #005d7e;

    }

    to {
        transform:
            rotate(-10deg);

    }
}


#portfolio-row {
    padding: 5% 10% 5% 10%;

}


#contact-row #form-col {
    background-color: #ffffff00;
}


#client-review-row {
    padding: 5%;
    overflow-x: hidden;
}

#review-inner-row {
    /*background-image: url("images/island.webp");*/
    /*background-size: cover;*/
    /*background-position: center;*/
    background-color: white;
    padding: 3%;
}

#client-review-row-2 .col {
    max-width: auto;
    min-width: 270px;
    margin-inline: 15px;
    margin-block: 25px;
    border-radius: 0px;
    background-color: #ffffff;
    color: #003d50;
    font-weight: 500;
    border: 6px solid #003d50;
}

#client-review-row-2 .col:hover {
    background-color: #f1fcff;
}

#client-review-row-2 .col .icon {
    font-size: 80px;
    transform: translateY(-15px);
    margin-bottom: -30px;
    opacity: 50%;
}


/* Working Area section css */



.timeline {
    position: relative;
    margin: 50px auto;
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: #003D50;
    top: 0;
    left: 50%;
    margin-left: -3px;
    animation: moveline 6s linear forwards;
    z-index: -1;

}

@keyframes moveline {
    0% {
        height: 0;
    }

    100% {
        height: 100%;
    }
}

.contain {
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 1s linear forwards;
    opacity: 0;
}

@keyframes movedown {
    0% {
        opacity: 1;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.contain:nth-child(1) {
    animation-delay: 0s;
}

.contain:nth-child(2) {
    animation-delay: 1s;
}

.contain:nth-child(3) {
    animation-delay: 2s;
}

.contain:nth-child(4) {
    animation-delay: 3s;
}

.contain:nth-child(5) {
    animation-delay: 4s;
}

.contain:nth-child(6) {
    animation-delay: 5s;
}

.text-box {
    background: #003D50;
    color: whitesmoke;
    position: relative;
    border-radius: 0px;
    box-shadow: 10px 10px 10px gray;
}

.left-container {
    left: 0%;
}

.right-container {
    left: 50%;
}

.contain img {
    top: 20px;
    position: absolute;
    width: 60px;
    border-radius: 50%;
    right: -25px;
    z-index: 1;
    background-color: white;

}

.right-container img {
    left: -25px;
}

.left-arrow {
    position: absolute;
    top: 34px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #003D50;
    right: -15px;
}

.right-arrow {
    position: absolute;
    top: 34px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #003D50;
    left: -15px;
}


/* ///////////////////////////////// ///////////////
////////////////////////////////////////////////
///////////////////////////////////////////////
**********************************************
********************************************/



/* FAQ Section  */

#faq-sec {
    background-color: white;
    padding-block: 10%;
}

.accordion-button {
    background-color: #e9e9e959;
    border-radius: 0px;
    padding-block: 20px;
    padding-inline: 2%;
    font-weight: 500;
    box-shadow: 2px 2px 3px gray;
    font-size: 17px;
    color: #000000;
}

.accordion-body {
    font-size: 16px;
    font-weight: 400;
}

/* FAQ Section  */


/* Insights Section  */

#insights-sec {
    background-image: linear-gradient(105deg, #000338, #2a0061);
    color: #f0f0f0;
}



/* Insights Section  */





#data-icon {
    font-size: 180px;
}



/* dataAna page style  */

#dataAna-row {
    background-color: #ffffff;
}

/* dataAna page style  */


/* counter sec  */
#achive-sec {
    padding: 5%;
    justify-content: space-around;
}

.client-col {
    background-color: #00373e00;
    border-radius: 100px;
    background-color: white;
    align-items: center;
    text-align: center;
    box-shadow: 2px 2px 5px gray;

}

.client-col img {
    height: 150px;
    width: 150px;
    transform: translateY(30px);
}

.client-col .box {
    padding-block: 2%;
    margin-left: 10%;
    max-width: 80%;
    background-color: #ffffff;
    transform: translateY(20px);
    text-align: center;
    border-radius: 0px;
    box-shadow: 5px 5px 10px gray;
}

/* counter sec  */


.col-md-5 {
    transform: scale(.8);
    opacity: 0.5;
}

.card {
    opacity: 0;
    transform: translateX(50px);
}

.faq-row {
    opacity: .0;
}

.support-col {
    transform: translate(50px);
}



.show {
    transition: all .8s;
    opacity: 1;
    transform: translate(0px);
    transform: scale(1);
}


.line {
    height: 5px;
    margin-top: 10%;
}


#privacy-row {
    padding: 6% 14%;
    background-color: whitesmoke;
}

#privacy-row p {
    font-size: 14px;
    text-align: justify;
}

#privacy-row ul li {
    font-size: 14px;
    margin-block: 10px;
    text-align: justify;
}


/* //// modal style  */


#modal-body {
    background: url('./images/Get-call.webp');
    background-position: center;
    background-size: cover;
    height: fit-content;
}

#enquery-form {
    background-color: #ffffff80;
    color: #003d50;
    padding-block: 50px;
    padding-inline: 20px;
    margin-block: 2%;
    backdrop-filter: blur(3px);
    border-radius: 10px;
}

#enquery-form .form-control {
    background-color: #ffffffaf;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 .10rem rgb(255, 255, 255);
    border: none;
}

#enquery-form .form-control:focus {
    background-color: #414141af;
    color: white;
    border-radius: 0px;
    box-shadow: 0 0 .10rem #31424c;
    border: none;
}




#blog-top-section {
    background-image: url('images/xc.webp');
    height: 50vh;
    background-position: center;
    background-size: cover;
    text-align: center;
}

#blog-top-section-col {
    align-content: center;
    width: fit-content;
    background-color: #00105274;
}

#blog-section {
    padding: 6%;
    background-color: #f5fcff;
}

.blog-search-form {
    border: none;
    border-left: 3px solid #003d50;
    padding-left: 10px;
}

#blog-section .form-select {
    background-color: #ffffff;
    color: #003D50;
    border-radius: 0;
    box-shadow: 5px 5px 5px gray;
}

#blog-section .form-select:focus {
    box-shadow: 5px 5px 5px gray;
}

#blog-section #search .search-refresh {
    box-shadow: 5px 5px 5px gray;
    margin-top: 3px;
}


.top-blog-sec-bs {
    margin: 3% 0% 8% 0%;
}


.top-blog-img {
    height: 32vh;
    width: auto;
    max-width: 392px;
    transition: .4s;
}

.lat-blog-link #link {
    font-size: 20px;
}


.lat-blog-link:hover #link {
    transform: translateY(-5px);
}


.top-blog-img:hover {
    transform: scale(.95);
}

.lat-blog-col {
    backdrop-filter: blur(5px);
    max-width: auto;
    min-width: 250px;
    margin-inline: 15px;
    margin-block: 25px;
    box-shadow: 5px 5px 5px #c1c1c1;
    border-radius: 0px;
}

.lat-blog-col:hover .lat-blog-img {
    transform: translateY(-2px);
}


.blog-title a,
.blogs-row .blogs-col a {
    background-color: #003d50;
    color: white;
    border-radius: 0;
    transition: all .5s;

}

.blog-title a:hover,
.blogs-row .blogs-col a:hover {
    background-color: #002935;
    color: #ffffff;
    border-radius: 0;
    box-shadow: 2px 2px 5px gray;

}

.blog-title:hover a i,
.blogs-row .blogs-col:hover a i {
    margin-left: 2px;

}


.blogs-row {
    background-color: #ffffff00;
    padding-block: 10px;
    margin-block: 10px;
}



.blogs-row:hover .blogs-img {
    transform: translateY(-3px);
    transition: all .3s;
}


#single-blog-section {
    background-color: #ffffffe1;
    padding-inline: 2%;
    padding-bottom: 10%;
}

#single-blog-top {
    height: 40vh;
}

#single-blog-col {
    background-color: #ffffff;
    padding: 5%;
}

.related-blog-col {
    margin-top: 5%;
}

#support-row {
    margin-bottom: -2.6%;
    margin-inline: 0%;
    overflow: hidden;
}


#support-col img {
    margin-top: 12%;
}


.mySwiper {
    align-items: center;
    justify-items: center;
}

.swiper-slide .col {
    background-color: #f7f7f7;
}

#project {
    background: url('images/project.png');
    background-position: center;
    background-size: cover;
    padding: 0;
}

#project #project-col picture {
    border: 8px solid #000000;

}

#project #project-col .col {
    background: #000000;
    padding: 5%;

}

#project #project-col .col .row {
    min-height: 80%;


}

#project #project-col .col .row .p-I {
    height: fit-content;


}

#project #project-col .col .in-sec {
    height: max-content;
    position: relative;
    left: 0;
    bottom: 0;
    margin-bottom: 5rem;

}


#cr-top {
    background-image: url('images/car-top-a.webp');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
}

#cr-top .in {
    background-color: #000000b7;
    color: #f9f9f9;
    width: 100%;
    height: 100%;
}

#open-positions .card {
    background-image: linear-gradient(to top, #003d50, #007B8A);
    color: white;
    border: none;
    outline: none;
}

#open-positions .card a {
    background: linear-gradient(to top, #003d50, #007B8A);
    color: white;
    font-weight: 500;
    transition: all .5s;
}

#open-positions .card a:hover {
    background: white;
    color: #003d50;
    font-weight: 500;
}

#apply .cr-in {
    border-radius: 0px;
}

#apply .cr-in:focus {
    border-radius: 0px;
    box-shadow: 0 0 0 1px #003d50;
}

/* //// Case study page */
#cs-top {
    background-image: url('images/cs-top.avif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

#cs-top .col {
    background-color: #ffffff46;
    border-radius: 10px;
    backdrop-filter: blur(3px);

}

#industry-card:hover {
    background-color: #eeeeee;
    transition: all 0.3s;
}


#industry-card .arrow {
    margin-left: 2px;
}

#industry-card:hover>.arrow {
    margin-left: 5px;
}

#sitemap-section {
    background-image: url('images/xxw.avif');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

#sitemap-section #sitemap-col a:hover {
    color: #35008b !important;
    transition: all .3s;
}


/* /////////////////////////////////////////////////
////////////////////////////////////////////
********************************************
//////////////////////////////////////////////
/////////////////////////////////////////// */


@media only screen and (max-width: 389px) {
    #top-slide-section-mobile-view #heading {
        font-size: 25px;
    }

    #home-about-row-col figure .a p {
        font-size: 1rem;
    }
}


@media only screen and (max-width: 550px) {
    #single-page-row-web-design {
        background-image: url('images/ice.webp');
        align-content: center;
    }

    #single-page-row-web-design .col-I {
        background-color: #0051569a;
    }

    .logo {
        height: 1.8rem;
    }
}


@media screen and (max-width: 768px) and (min-width: 150px) {
    .contain {
        width: 100%;
    }

    .right-container {
        left: 0%;
    }

    .timeline::after {
        width: 0%;
    }


    #top-slide-section {
        display: none;
    }


    .top-text {
        background: linear-gradient(to left, #FF512F, #DD2476);
        background-clip: text;
        color: transparent;
    }

    .top-slide-img {
        height: 90vh;
        width: fit-content;
        min-width: 100%;
    }

    #about-top-row #col-b {
        transform: translateX(0px);
        padding-inline: 15px;
    }

    #ani-row-div {
        background-attachment: fixed;
    }
}


@media only screen and (max-width: 767px) {
    #line-card {
        width: 10px;
        height: 50px;
        background-color: #003d50;
    }


    .about-2-row .col-md-6 img {
        margin-left: -20%;
    }

    #intro-row {
        padding-block: 8%;
        padding-inline: 0;
    }

    .m-responsive-1 {
        margin-block: 2%;
    }

    #home-about-row-col-1 {
        margin-bottom: 20%;
    }

    #single-page-row-web-menti .col-I {
        margin-right: 0%;
    }


    #top-slide-section-mobile-view .row {
        padding: 5% 0% 0% 0%;

    }


    #project #project-col .col {
        padding: 10% 5%;

    }

    #progress-bar {
        height: 2px;
    }

    #home-service-section {
        width: 98vw;
        padding: 2% 2%;
    }

    .ser-card-sec {
        display: block;
    }

    #home-service-section #col-b {
        background-image: url('images/service-sm.webp');
        width: 96vw;
    }

    #home-service-section #col-s {
        margin: 6% 0px 6% -5%;
        width: 96vw;
    }

    #home-service-section #col-s .inner-sec {
        width: 100%;
    }

    #home-service-section #col-s .inner-sec img {
        height: auto;
        width: 85%;
    }

    .line {
        height: 50px;
        width: 0px;
        margin-top: 0%;
    }

    .dxx {
        display: none;
    }

    #website-sec-2 .I {
        position: relative;
        width: 100%;
    }


    #web-menti-row .col-md-1 {
        background-color: #8a9aa3;
        height: 5px;
        margin: 5% 0%;
        box-shadow: 2px 2px 5px gray;
    }

    #cr-top .in {
        align-content: end;
    }

    .xxx .I {
        position: absolute;
        top: 0%;
        left: 0%;
        background-color: #e0e0e070;
        color: white;
        backdrop-filter: blur(2px);
    }

    .ux-top-h {
        display: block;
    }

    .p-2-auto {
        padding: 0 !important;
    }

}

@media only screen and (max-width: 860px) and (min-width: 768px) {

    .xxx .I {
        top: 10%;
    }


}

@media only screen and (min-width: 769px) {
    #top-slide-section-mobile-view {
        display: none;
    }
}


@media only screen and (max-width: 992px) {

    #navbarSupportedContent {
        display: none;
    }

    #book-button {
        margin-bottom: 10%;
        width: 10rem;
    }



    #ani-section {
        background: #ffffff;
    }

    #ani-row-div {
        background: white;
        padding: 5% 1% 5% 1%;
    }

    #ani-col .card {
        background-color: #ffffff00;
        padding: 12% 2% 5% 2%;
    }

    .ani-img-sm {
        display: block;
    }

    #home-service-section #col-s {
        padding: 0% 0px 0% 10%;

    }

    #privacy-row {
        padding: 6% 2%;
        background-color: whitesmoke;
    }

}

@media only screen and (min-width: 992px) {
    #menu-button {
        display: none;
    }
}


@media only screen and (max-width: 1076px) {

    .top-blog-sec-bs {
        display: none;
    }

    #single-page-row-web-design .col-I {
        margin-top: 10%;
    }


    .top-slide-text #top-suptext {
        font-size: 16px;
    }

    .top-slide-text .top-subtext {
        font-size: 18px;
    }


}

@media only screen and (min-width: 1077px) {

    .lat-blog-col {
        display: none;
    }

}


@media only screen and (max-width: 1140px) {


    .navbar-nav {
        width: 85%;
    }

    .nav-text {
        display: none;
    }
}

@media only screen and (max-width: 1290px) {

    .nav-link {
        font-size: 12px;
        font-weight: 700;
    }

    .nav-text,
    .footer,
    .footer a,
    .foot-contact {
        font-size: 12px;
    }

    #footer-icon .bi {
        font-size: 14px;
    }

    .lat-blog-link #link {
        font-size: 16px;
    }

}


@media only screen and (min-width: 1550px) {
    .top-slide-text #top-suptext {
        font-size: 38px;
    }

    .top-slide-text .top-subtext {
        font-size: 45px;
        font-weight: 400;
    }

    .logo {
        height: 2.8rem;
    }
  
}