/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:focus {
    outline: 0;
}
/* ========================= Basic Styling start ===========================*/
body {
    font-family: "Rajdhani", serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}
/* fonts  */
.rajdhani-light {
    font-family: "Rajdhani", serif;
    font-weight: 300;
    font-style: normal;
}

.rajdhani-regular {
    font-family: "Rajdhani", serif;
    font-weight: 400;
    font-style: normal;
}

.rajdhani-medium {
    font-family: "Rajdhani", serif;
    font-weight: 500;
    font-style: normal;
}

.rajdhani-semibold {
    font-family: "Rajdhani", serif;
    font-weight: 600;
    font-style: normal;
}

.rajdhani-bold {
    font-family: "Rajdhani", serif;
    font-weight: 700;
    font-style: normal;
}

/* text color  */
.main-color{
    color:#0a2c58;
}
/* button style  */
.main-btn {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    border: 1px solid #ffffff;
    padding: 12px 26px;
    border-radius: 35px;
    text-transform: uppercase;
}
.main-btn:hover{
    background: linear-gradient(90deg,#0769a8,#00b5fa);
    border: none;
}
/* font size  */

.title-h1{
    font-size: 50px;
}
.title-h2{
    font-size: 42px;
}
.title-h3{
    font-size: 34px;
}
.title-h4{
    font-size: 24px;
}
.title-h5{
    font-size: 22px;
}
.title-h6{
    font-size: 20px;
}
.paragraph-big{
    font-size: 16px;
}
.paragraph{
    font-size: 16px;
}
/* fonts end  */
/* background color  */
.main-bg{
    background: #0a2c58;
}
.gradiet-main-text-bg{
    background-image: linear-gradient(to right,#00b5fa 0,#0769a8 100%)
}
/* background color  */
/* common  flip card   */
.flip-card{
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-right: 2px solid #0769a8;;
}
.flip-front, .flip-back{
    width: 100%;
    min-height: 300px;
    height: auto;

    backface-visibility: hidden;
    transform-style: preserve-3d ;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    position: relative;
}
.flip-front{
    transform: rotateY(0deg);
    background: #0a2c58;
}
.flip-back{
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    background:#0769a8;
}
.flip-front::after,
.flip-back::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
}
.flip-front .front-inner,
.flip-back .back-inner{
    width: 100%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    z-index: 2;
}
.flip-card:hover .flip-front{
    transform: rotateY(-180deg);
}
.flip-card:hover .flip-back{
    transform: rotateY(0deg);
}
/* common flip card end  */

/* ============================ basic styling end ======================== */
/* ---------------------- nav area start  -----------------------*/
.navbar-n {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-toggler {
    padding: 0px 10px;
    font-size: 20px;
    border-radius: 5px;
    border-color: #0a2c58;
    color: #0a2c58;
    border: 1px solid;
}
.navbar-n .logo img {
    height: 45px;
    transition: height 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    align-items: center;
}
/* dropdown-menu  */
.dropdown{
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown menu on hover for larger screens */
}
.dropdown-menu {
    margin-top: 0; /* Adjust position */
}
.d-menu{
    width: 300px;
}
.d-menu li {
    padding: 9px 15px;
}
.d-menu li a {
    color: #000 !important;
    white-space: normal !important;
}
.d-menu li a:hover {
    color: #0a2c58 !important;
}
.d-menu li a:active{
    background-color: #fff !important;
}
/* dropdown-menu */
.nav-menu a {
    font-family: 'Rajdhani';
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 1.0;
    will-change: opacity, color;
    transition: opacity 0.2s ease, color 0.2s ease;
    cursor: pointer;
    position: relative;
    /* will-change: opacity, color;
    transition: opacity 0.2s ease, color 0.2s ease; */

}

.nav-menu li a::after {
    content: "";
    position: absolute;
    background: #ffffff;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform  .5s ease-out;
}
.nav-menu li a.active::after {
    transform: scale(1);
    border-top: 0;
    margin: 0;
}
.nav-menu li a:hover::after {
    transform: scale(1);
}
.navbar-n.sticky {
    background-color: #ffffff;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.3);
}

.navbar-n.sticky .nav-menu a {
    color: #000000;
}
.navbar-n.sticky .nav-menu a.active::after{
    background: #0a2c58;
}
.navbar-n.sticky .nav-menu li a:hover::after {
    transform: scale(1);
    background: #0a2c58;
}
.navbar-n.sticky #logo-img {
    height: 45px; /* Smaller height for sticky state */
}
.navbar-n.sticky .get-btn{
    color: #000000 !important;
    border: 1px solid #000000;
}
.navbar-n.sticky .get-btn{
    color: #000000 !important;
    border: 1px solid #000000;
}
.navbar-n.sticky .get-btn:hover{
    color: #ffffff !important;
    border: 1px solid #0769a8;
}
.get-btn{
    width: 140px;
    text-align: center;
    padding: 5px;
    display: block;
}
.get-btn::after{
    background: transparent !important;
}
.get-btn:hover{
    border: 1px solid transparent;
}

/* Logo Image Styling */
#logo-img {
    height: 45px; /* Default height */
}
/* ----------------------- nav area end  -----------------------------*/



/* ============================ home page ============================= */
#home {
    /* background: url(../image/image-1.webp);
    background-position: center center;
    background-size: cover;
    position: relative; */
    width: 100%;
    height: 100vh;

}

.home-overlay{
    background-color: #0c3469db;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 2;
    backface-visibility: hidden;
}
.home-banner-text{
    width: 50%;
}
.home-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media(min-aspect-ratio:16/9){
    .home-video{
        width: 100%;
        height: auto;
    }

}
@media(max-aspect-ratio:16/9){
    .home-video{
        width:auto;
        height: 100%;
    }

}
/* ------------ our subsidiaries section ----------- */
.subsidiaries-slider .owl-stage{
    display: flex;
    align-items: center;
}
.subsi-item {
    width: 180px;
    padding: 25px;
}
/* ------------ our expertise section ----------- */

.expertise-icon{
    width: 50px;
}
/* ------------- why choose us area --------------- */
.choose-flip-card{
    border-bottom: 2px solid #0769a8;
}

/* -------------- solution offerings --------------- */
.solution-item{
    background: url();
    background-position: center center !important;
    background-size: cover !important;
    position: relative !important;
    height: 500px;
    min-height: 500px;
}
.solution-item:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 0;
}
.solution-text{
    width: 65%;
    z-index: 1;
}
/* --------------- our process area ------------------ */
.process-icon{
    width: 50px;
}
/* --------------- why choose us area ------------------ */
.choose-icon{
    width: 50px;
}
/* -------------- portfolio  --------------- */
.portfolio-item{
    /* height: 500px;
    min-height: 400px; */
    transition: 1s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}
.portfolio-hover{
    height: 0;
    width: 100%;
    background: rgb(10,44,88);
    background: linear-gradient(0deg, rgba(10,44,88,1) 0%, rgba(11,175,200,0) 97%);
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    transition: height 1s;
    display: flex;
    justify-content: center;
    align-items: end;
}
.portfolio-hover-content{
    padding: 50px;
}
.portfolio-item img{
    transform: scale(1.1);
    transition: transform 1s;
}
.portfolio-item:hover img{
    transform: scale(1.2);
}
.portfolio-item:hover .portfolio-hover{
    height:80%;
}

/* client and  partners */

.clients-wrap{
    height: 130px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
}
.client-slide{
    align-items: center;
}
.client-slide-item{
    max-width: 137px !important;
}
.client-slide-item img{
    width: 100%;
    height: auto;
    padding: 10px;
}
.client-slide .owl-item{
    display: flex;
    align-items: center;
    height: 110px;
}

/* book a consultancy banner area  */
.consultancy-banner-area{
    background: linear-gradient(90deg,#0769a8,#3f8730,#0a2c58);
    background-size: 300% 300%;
    animation: con-banner 15s linear infinite;
}
@keyframes con-banner{
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* footer */
footer{
    background:  #f4fcfe;
}
.footer_ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_ul li a{
    color: #0a2c58;
    text-decoration: none;
}
/* bottom footer */
.bottom-footer{
    background: linear-gradient(90deg,#0769a8,#0a2c58,#3f8730);
    background-size: 300% 300%;
    animation: con-banner 15s linear infinite;
}



.carousel-container {
    width: 100%;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    width: calc(100% * 4); /* Width = container width * number of images */
    animation: scroll 12s linear infinite;
  }

  .carousel-track img {
    object-fit: cover;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1600px); } /* Move to -width of all images */
  }

.p_1{
    padding: 1px;
}










/* ============== about us page =========================  */
.team-items{
    background: #ffffff;
}
.team-info{
    height: 120px;
    width: 100%;
    background: rgb(10,44,88);
    background: linear-gradient(0deg, rgb(3, 13, 27) 0%, rgba(11,175,200,0) 97%);
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    transition: height 0.5s;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 20px;
}
.team-items .team-info .team-position{
    height: 0;
    visibility: hidden;
    transition: height 0.5s linear;
}
.team-items:hover .team-info .team-position{
    height: 30px;
    visibility: visible;
}
.team-items:hover .team-info{
    height:80%;
    background: rgb(10,44,88);
    background: linear-gradient(0deg, rgba(10,44,88,1) 0%, rgba(11,175,200,0) 97%);
}

/* startup page  */
.startup-process{
    border-top: 2px solid #0769a8;
    border-bottom: 2px solid #0769a8;
}

/* ============== blog page =================== */
.blog-title{
    position: relative;
    transition: 0.5s text-decoration ease-in;
}
/* .blog-title:hover{
    text-decoration: underline;
} */
.blog-title::after{
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    background-color: #000000;
    top: 100%;
    right: 0;
    border-radius: 1px;
    transition: 0.5s width;
}
.blog-item:hover .blog-content .blog-title::after{
    width: 100%;
    right: unset;
    left: 0;
}

/*======= contact page ======= */
.contact-item {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}
.contact-item .icon{
    background: #08a4bf1a;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    padding: 10px;
    font-size: 26px;
}
.contact-maps{
    filter: grayscale(1);
    height: 100%;
    min-height: 600px;
}

