@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
   --primary-color: #00AFF0;
   --secondary-color: #E6F7FE;
   --bg-color: #051229;
}
body{
    font-size: 12px;
     font-family: "Inter", sans-serif;
}
html, body {
    overflow-x: hidden;
    border: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Jost", sans-serif;
}

.main_btn{
    background: var(--primary-color);
    box-shadow: inset 0px 16.25px 48.75px -32.5px rgba(255, 255, 255, 0.24);
      transition: all 0.3s ease;
}
.main_btn:hover {
    background: #008ec4;
    box-shadow: 0 8px 20px rgba(0, 175, 240, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.02);
}
header{
    background-color: #4A4A4A;
}
.home_banner{
    height: 400px;
}

.home_banner::after{
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    top: 0;
    width: 100%;
    background-size: cover;
    
    background-position: center center;
    z-index: 1;
}

.banner_content{
    z-index: 999;
}
.heading span{
    color: var(--primary-color);
}


 .heading{
   text-align: center;
 }

.about_img{
    width: 400px;
}
.lock_img{
    right: -18%;
    animation: animatelock 3s infinite;
}
.line{
    display: block;
    height: 1.5px;
    width: 60px;
}
.service_card{
    background-color: var(--secondary-color);
}
.service_icon_box{
    border: 1px solid var(--primary-color);
    background-color: #fff;
    border-radius: 5px;
    width: 50px;
    height: 50px;
}
.service_card:hover{
    background-color: var(--primary-color);
    color: #ffffff;
}
.what_we_do{
    background-color: var(--bg-color);
    height: 450px;
}
.what_we_do::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./asset/what-we-do-vector1.png);
    height: 100%;
    width: 400px;

}
.blue_text{
    color: var(--primary-color);
}
.connect_section{
    background-color: var(--primary-color);
    position: relative;
}
.connect_section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./asset/Ellipse.png);
    height: 60px;
    width: 60px;
    background-position: center;
    background-size: contain;
}
.connect_section::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(./asset/Ellipse2.png);
    height: 80px;
    width: 80px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.img_box{
    height: 400px;
}
.offer_section{
    background-color: var(--secondary-color);
}
.offer_card{
    height: 240px;
    position: relative;
    overflow: hidden;
}
.offer_card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(100%);
    transition: all ease 0.5s;
}
.offer_card:hover::before{
    transform: translateY(0%);
}
.offer_card:hover{
    color: #ffffff;
}
/* .swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: -8% !important;
  width: 30px !important;
  height: 30px !important;
  border: 1.4px solid black;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px; 
} */

/* .swiper-button-next {
  right: 10px !important; 
} */
.btn{
    bottom: 4px ;
}


/* Image + stars container */
.customer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;              /* image aur stars ke beech same gap */
    flex-shrink: 0;
}

/* Image responsive */
.customer-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

/* Stars */
.rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.small-star i {
    font-size: 14px;
}

/* Text area responsive */
.customer_card p {
    font-size: 14px;
    line-height: 1.5;
}

/* 📱 Mobile screens */
@media (max-width: 576px) {

    .customer-img {
        width: 44px;
        height: 44px;
    }

    .small-star i {
        font-size: 12px;
    }

    .customer_card p {
        font-size: 13px;
    }

    /* Mobile pe thoda spacing improve */
    .customer_card .d-flex {
        gap: 12px;
    }
}

/* 💻 Large screens */
@media (min-width: 992px) {
    .customer-img {
        width: 60px;
        height: 60px;
    }

    .small-star i {
        font-size: 15px;
    }
}



/* .swiper-button-prev {
  left: 92% !important; 
} */
.swiper-button-next::after,
.swiper-button-prev::after{
 font-size: 14px !important;
 color: #000 !important;
}
.glance_gallery_card{
    height: 430px;
}
.tab_box{
    background-color: var(--secondary-color);
    font-size: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimoinal_card{
    background-color: #F8FBFF;
    height: 300px;
    border: 1.2px solid var(--primary-color);
}


input::placeholder,
textarea::placeholder{
    font-size: 14px;
}
.contact_section{
     background-color: #F8FBFF;
     position: relative;
}
.contact_section::before{
     content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./asset/map1.png);
    width: 100%;
    height: 100%;
}
.colored_text{
    color: var(--bg-color);
}
.customer_card{
     background-color: #F8FBFF;
     height: 160px;
}
footer p{
    font-size: 12px;
}
.fa-linkedin{
    color: #0A66C2;
}
.fa-x-twitter{
    color: #1DA1F2;
}
.fa-instagram{
    color: #EC3397;
}
/* .solution_bannner{
   height: 500px;
   object-fit: cover;
   width: full;
} */
 .solution_bannner {
    position: relative;
    width: 100%;
    min-height: 65vh; /* height of banner - adjust as needed */
    background-size: auto;       /* makes the image cover entire div */
    background-position: center;  /* centers the image */
    background-repeat: no-repeat; /* avoids tiling */
    display: flex;                /* optional if you have content inside */
    align-items: center;          /* vertical align content */
    justify-content: center;      /* horizontal align content */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solution_bannner {
        min-height: 40vh; /* smaller height for mobile */
        background-position: top center; /* ensures important part is visible */
    }
}

.ai_card{
    position: relative;
    height: 200px;
    border-left: 1.4px solid grey;
    border-right: 1.4px solid grey;
}
.ai_card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./asset/strip.png);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.ai_img_card{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
}
.credit_section{
    background-color: var(--secondary-color);
    position: relative;
}
/* .credit_section::before{
      content: "";
    position: absolute;
    width: 100%;
    height: 0.8px;
    background-color: var(--primary-color);
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
} */
.risk_img_box{
    width: 46px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
}
.risk_img_box::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 60px;
    background-color: var(--primary-color);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.small_text{
    font-size: 12px;
  /* text-align: justify; */
}
.management_box{
    height: 250px;
    position: relative;
}

.Custom{
    background-color: var(--bg-color);
    min-height: 600px;
    position: relative;
}
.Custom::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./asset/what-we-do-vector1.png);
    height: 100%;
    width: 400px;

}
.custom_img_card{
    height: 320px;
}
.custom_img_card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.custom_img_card:hover::before{
    background-color: rgba(0, 0, 0, 0.2);
}
.gradient_btn{
    background: linear-gradient(135deg, #00AFF0, #00749F);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insight_card{
    height: 220px;
}
.contact_bannner::before{
    background-image: url(./asset/contactbanner.png);
}
.blog_bannner::before{
    background-image: url(./asset/blog_banner.png);
}
.contact_img_box{
    width: 50px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.tab-link {
    background: #f5f5f5;
    padding: 8px;
    transition: 0.3s;
}

.tab-link.active {
    background: #0d6efd !important;
    color: #fff !important;
}

.tab-link:hover {
    background: #dcdcdc;
}

.tab-content-box img {
    object-fit: cover;
}

/* ======================
   Desktop / Large screen
   ====================== */
.card_img,
.card_img_two {
    height: 140px;
}

.card_img img,
.card_img_two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_card h6 {
    font-size: 15px;
    line-height: 1.3;
}

.blog_card p {
    font-size: 13px;
    line-height: 1.4;
}

.blog_card .main_btn {
    font-size: 12px;
    padding: 4px 12px;
}


/* ======================
   Small screen (Mobile)
   ====================== */
@media (max-width: 576px) {

    /* Image thodi chhoti */
    /* .card_img,
    .card_img_two {
        height: 100px;
    } */
    .card_img,
.card_img_two {
    height: 140px;
}

.card_img img,
.card_img_two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    

    /* Card padding kam */
    /* .blog_card {
        padding: 4px 0;
    } */

    .card_body {
        padding: 4px 6px !important;
    }

    /* Title small */
    .blog_card h6 {
        font-size: 13px;
        line-height: 1.2;
    }

    /* Description compact */
    .blog_card p {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    /* Button small & clean */
    .blog_card .main_btn {
        font-size: 11px;
        padding: 3px 8px;
        margin-top: 2px !important;
    }
}


.featured_blog{
    background-color: var(--secondary-color);
}
.blog-detail-img{
    height: 450px;
}
.blog_detail_section{
    background-color: var(--secondary-color);
}
.insight_card{
    position: relative;
    overflow: hidden;
}

.insight_card::before{
     content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(100%);
    transition: all ease 0.5s;
}
.insight_card:hover::before{
    transform: translateY(0%);
}
.insight_card:hover{
    color: #ffffff;
}
.insight_card:hover .gradient_btn{
    background: #fff !important;
    color: #000;
    border: 1.5px solid #000 !important;
}
.industry_card{
    background-color: var(--secondary-color);
    height: 100px;
    position: relative;
     overflow: hidden;
}
.industry_card::before{
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 6px 0 0 6px;
    transform: translateX(-100%);
   transition: all ease 0.5s;
}
.industry_card::after{
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 0px 6px 6px 0px;
     transform: translateX(100%);
       transition: all ease 0.5s;
}
.industry_card:hover::before{
     transform: translateX(0%);
}
.industry_card:hover::after{
     transform: translateX(0%);
}
.industry_card:hover{
   color: #fff;
}
.about_bannner::before{
    background-image: url(./asset/aboutbanner.png);
}
.company_card{
    background-color: var(--secondary-color);
    height: 230px;
}
.partnerships_section{
background-color: var(--bg-color);
    min-height: 500px;
}
.partnerships_section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(./asset/what-we-do-vector1.png);
    height: 100%;
    width: 400px;

}
.tilt_img img{
    top: -50%;
    opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.partnership_card.hovered .tilt_img img {
  opacity: 1;
}
.credit_box{
    min-height: 500px;
}

.credit_box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(./asset/Vector6.png);
    height: 100%;
    width: 10px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.credit_box_card{
    width: 550px;
}
.credit_box .col-lg-12:nth-of-type(odd) .credit_box_card{
    right: 0%;
}
.credit_box .col-lg-12:first-of-type .credit_box_card::before{
     content: "";
    position: absolute;
    top: 0;
    left: -14.5%;
    background-image: url(./asset/one.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.credit_box .col-lg-12:nth-of-type(2) .credit_box_card::before{
     content: "";
    position: absolute;
    top: 0;
    right: -12.5%;
    background-image: url(./asset/two.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.credit_box .col-lg-12:nth-of-type(3) .credit_box_card::before{
     content: "";
    position: absolute;
    top: 0;
    left: -14.5%;
    background-image: url(./asset/three.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.credit_box .col-lg-12:nth-of-type(4) .credit_box_card::before{
     content: "";
    position: absolute;
    top: 0;
    right: -12.5%;
    background-image: url(./asset/four.png);
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


.solution-tab{
    background-color: #E6F7FE;
    cursor: pointer;
}
.solution-tab:hover{
   background-color: #00aff0;
    color: #fff;
}
.solution-tab-active{
    background-color: #00aff0;
    color: #fff;
}
.solution-tab-active .arrowlarge{
    font-size:23px;
}
nav li a{
    font-size:12px !important;
}
.navbar-nav .nav-link.active{
    border-bottom:2px solid red;
}
@keyframes animatelock {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.09);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}
@media screen and (max-width: 768px) {
    .what_we_do{
        height: auto;
    }
    
    .glance_gallery_car{
        height: auto;
    }
    .glance_section{
        height: auto;
    }
    .lock_img{
        right: 0;
    }
    .credit_box_card{
      width: 100%;
}
.credit_box::before{
    left: 2%;
}
.credit_box .col-lg-12:first-of-type .credit_box_card::before,
.credit_box .col-lg-12:nth-of-type(2) .credit_box_card::before,
.credit_box .col-lg-12:nth-of-type(3) .credit_box_card::before,
.credit_box .col-lg-12:nth-of-type(4) .credit_box_card::before{
    left: -3%;
}
.credit_box .col-lg-12:nth-of-type(odd) .credit_box_card{
    left: 0%;
    right: unset;
    padding-left: 35px;
}
.credit_box .col-lg-12:nth-of-type(even) .credit_box_card{
    left: 0%;
    right: unset;
     padding-left: 35px;
}
p {
  margin-bottom: 0rem !important;
 
}


.about_img,
.what_we_do::before{
    width: 100%;
}
}

.heading {
    text-align: center !important;
}

@media screen and (max-width: 768px) {
    .heading {
        text-align: justify !important;
    }
}











/* ===== General Button Wrapper ===== */
.swiper-btns,
.btn,
.bott.al {
    width: 100%;
    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: center;
    gap: 20px;                 /* buttons ke beech gap */
    margin-top: 20px;          /* slider ke niche */
}

/* ===== Swiper Buttons ===== */
.swiper-btns .swiper-button-next,
.swiper-btns .swiper-button-prev,
.btn .swiper-button-next,
.btn .swiper-button-prev,
.bott.al .swiper-button-next,
.bott.al .swiper-button-prev {
    position: static !important; /* remove default absolute */
    width: 40px;
    height: 40px;
    background-color: #00aff0;  /* button color */
    color: #fff;                 /* arrow color */
    border-radius: 50%;          /* circular button */
    display: flex;
    align-items: center;
    justify-content: center;
  /* border: none;   */
    cursor: pointer;
    transform: none !important;  /* fix arrow direction */
}

/* Arrow icon size */
.swiper-btns .swiper-button-next::after,
.swiper-btns .swiper-button-prev::after,
.btn .swiper-button-next::after,
.btn .swiper-button-prev::after,
.bott.al .swiper-button-next::after,
.bott.al .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Hover effect */
.swiper-btns .swiper-button-next:hover,
.swiper-btns .swiper-button-prev:hover,
.btn .swiper-button-next:hover,
.btn .swiper-button-prev:hover,
.bott.al .swiper-button-next:hover,
.bott.al .swiper-button-prev:hover {
    background-color: #007bbf;
}

/* ===== Hide on Large Screens ===== */
@media (min-width: 992px) {
    .swiper-btns,
    .btn,
    .bott.al {
        display: none; /* hide on desktop */
    }
}

/* ===== Responsive for Small/Medium Screens ===== */
@media (max-width: 991px) {
    .swiper-btns,
    .btn,
    .bott.al {
        display: flex;  /* show on tablet & mobile */
        gap: 15px;
        margin-top: 25px;
    }

    .swiper-btns .swiper-button-next,
    .swiper-btns .swiper-button-prev,
    .btn .swiper-button-next,
    .btn .swiper-button-prev,
    .bott.al .swiper-button-next,
    .bott.al .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .swiper-btns .swiper-button-next::after,
    .swiper-btns .swiper-button-prev::after,
    .btn .swiper-button-next::after,
    .btn .swiper-button-prev::after,
    .bott.al .swiper-button-next::after,
    .bott.al .swiper-button-prev::after {
        font-size: 14px;
    }
}


/* Responsive iframe container */
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}





.customer_card {
    min-height: 150px;
    border-radius: 10px;
    background: #F8FBFF;;
}

.customer-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}



/* Tablet & below */
@media (max-width: 992px) {
    .customer_card {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .customer-img {
        width: 70px;
        height: 70px;
    }

    .customer_card {
        padding: 1rem;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card_img {
    height: 200px;
    overflow: hidden;
}

.card_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Responsive button font & padding */
.btn-responsive {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

/* Tablet */
@media (min-width: 768px) {
    .btn-responsive {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Desktop / 125% zoom / large screens */
@media (min-width: 1200px) {
    .btn-responsive {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}



.small-star i {
    font-size: 0.6rem; /* chhota star, akdam chhota */
  
}

@media (max-width: 576px) {
    .small-star i {
        font-size: 0.5rem; /* mobile me aur chhota */
    }
}


